:root {
            --primary: #D11D27;
            --secondary: #000000;
            --accent: #FFD700;
            --light: #FFFFFF;
            --dark: #1a1a1a;
            --gray: #333333;
            --card-bg: rgba(255, 255, 255, 0.1);
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .dark-mode {
            --primary: #D11D27;
            --secondary: #000000;
            --accent: #FFD700;
            --light: #1a1a1a;
            --dark: #FFFFFF;
            --gray: #b3b3b3;
            --card-bg: rgba(26, 26, 26, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: var(--secondary);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 10px;
        }

        .logo h1 {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            color: var(--light);
            font-size: 1.8rem;
        }

        .logo span {
            color: var(--primary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            font-family: 'Rajdhani', sans-serif;
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .nav-btns {
            display: flex;
            align-items: center;
        }

        .dark-mode-toggle {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: 20px;
            transition: var(--transition);
        }

        .dark-mode-toggle:hover {
            color: var(--accent);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://sportscafe.in/img/es3/articles/cricket-2023/Royal_Challengers_Bangalore_Featured_Image.scorimg.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            color: var(--light);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--light);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-family: 'Rajdhani', sans-serif;
            transition: var(--transition);
            border: 2px solid var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--light);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-outline:hover {
            background-color: var(--light);
            color: var(--secondary);
        }

        /* Countdown Section */
    
.match-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.team {
  text-align: center;
  color: #ffeb0f;
}

.team-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.score {
  font-size: 1.2rem;
  margin-top: 5px;
  color: gold;
}

.vs {
  font-size: 2rem;
  color: rgb(233, 223, 18);
  font-weight: bold;
  padding: 0 10px;
}

.section-divider {
 border: none;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #ffd700, #d4af37);
  margin: 50px 0;
}


        /* Sections Common Styles */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            color: var(--dark);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .dark-mode .section-title {
            color: var(--dark);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .player-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .player-img {
            height: 250px;
            overflow: hidden;
        }

        .player-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .player-card:hover .player-img img {
            transform: scale(1.1);
        }

        .player-info {
            padding: 20px;
            background-color: var(--light);
        }

        .player-info h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .player-info p {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .player-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 10px;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--gray);
        }

        /* Highlights Section */
        .highlights {
            background-color: var(--secondary);
        }

        .highlights .section-title {
            color: var(--light);
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .video-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }

        .video-card:hover {
            transform: scale(1.03);
        }

        .video-thumbnail {
            height: 200px;
            background-color: #000;
            position: relative;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .play-btn:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-info {
            padding: 15px;
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
        }

        .video-info h3 {
            color: var(--light);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .video-info p {
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: var(--shadow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 20px;
            color: var(--light);
            transform: translateY(100%);
            transition: var(--transition);
            opacity: 0;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?ixlib=rb-4.0.3') center/cover no-repeat;
            color: var(--light);
        }

        .stats .section-title {
            color: var(--light);
        }

        .points-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .points-table th {
            background-color: var(--primary);
            padding: 15px;
            text-align: left;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
        }

        .points-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .points-table tr:last-child td {
            border-bottom: none;
        }

        .points-table tr:hover {
            background-color: rgba(209, 29, 39, 0.1);
        }

        .team-cell {
            display: flex;
            align-items: center;
        }

        .team-cell img {
            width: 30px;
            height: 30px;
            margin-right: 10px;
            object-fit: contain;
        }

        /* Fan Zone Section */
        .fan-zone {
            background-color: var(--light);
        }

        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }

        .tab-btn {
            padding: 12px 30px;
            background-color: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active {
            border-bottom: 3px solid var(--primary);
            color: var(--primary);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .vote-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .vote-option {
            background-color: var(--light);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .vote-option:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .vote-option.selected {
            background-color: rgba(209, 29, 39, 0.1);
            border-color: var(--primary);
        }

        .vote-option img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--primary);
        }

        .vote-option h4 {
            font-family: 'Rajdhani', sans-serif;
            margin-bottom: 5px;
        }

        .vote-btn {
            display: block;
            margin: 0 auto;
            padding: 12px 40px;
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .vote-btn:hover {
            background-color: #b0151d;
            transform: scale(1.05);
        }

        .fan-art-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(209, 29, 39, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            margin: 20px auto 0;
        }

        .submit-btn:hover {
            background-color: #b0151d;
            transform: scale(1.05);
        }

        /* Contact Section */
        .contact {
            background-color: var(--secondary);
            color: var(--light);
        }

        .contact .section-title {
            color: var(--light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            padding: 20px;
        }

        .contact-info h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-detail i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-form {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            margin-bottom: 15px;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-about p {
            margin-bottom: 20px;
            color: var(--gray);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--card-bg);
            border-radius: 50%;
            color: var(--light);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-heading {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .timer {
                flex-wrap: wrap;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background-color: var(--secondary);
                width: 100%;
                height: calc(100vh - 80px);
                padding-top: 30px;
                transition: var(--transition);
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .points-table {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .timer-item {
                min-width: 80px;
                padding: 15px;
            }
            
            .timer-number {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .vote-options {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        
/* Basic Dropdown Styles */

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    padding: 10px 20px;
    position: relative;
}
.navbar .logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}
.navbar .nav-btns {
    display: flex;
    align-items: center;
}
.navbar .nav-btns button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    margin-left: 10px;
    cursor: pointer;
}

/* Nav Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
}

/* Dropdown */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    background: #222;
    top: 100%;
    left: 0;
    display: none;
    list-style: none;
    min-width: 150px;
    z-index: 100;
}
.dropdown-menu li a {
    padding: 10px;
    color: white;
    text-decoration: none;
}
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
    }

    .nav-menu.show {
        display: flex;
    }

    .hamburger {
        display: inline-block;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
        position: static;
    }

    .dropdown-menu {
        width: 100%;
    }
}

/* highlights section  */

