
        :root {
            --primary-color: #02f750;
            --secondary-color: #8b0000;
            --accent-color: #ff6b6b;
            --dark-color: #0a0a0a;
            --card-bg: #1a1a1a;
            --text-light: #cccccc;
            --text-bright: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-color);
            color: var(--text-bright);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }

        /* Header */
        .navbar {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            letter-spacing: 2px;
        }

        .nav-link {
            color: var(--text-bright) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-gold {
            background: var(--primary-color);
            color: var(--dark-color);
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background: #02f750;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(2, 190, 247, 0.3);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 76px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/hero.gif') center/cover;
            filter: brightness(0.4);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            z-index: 1;
        }

        .hero-title {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary-color), #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(2, 190, 247, 0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 3 800px;
           
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .btn-hero {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary-hero {
            background: var(--primary-color);
            color: var(--dark-color);
            border: 2px solid var(--primary-color);
        }

        .btn-primary-hero:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .btn-outline-hero {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline-hero:hover {
            background: var(--primary-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }

        /* About Section */
        .about-section {
            padding: 8rem 0;
            background: linear-gradient(180deg, var(--dark-color) 0%, #1a1a1a 100%);
        }

        .about-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid rgba(2, 190, 247, 0.3);
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
        }

        .about-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Games Section */
        .games-section {
            padding: 8rem 0;
            background: var(--dark-color);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .game-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(2, 190, 247, 0.2);
        }

        .game-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .game-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .play-btn {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--dark-color);
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.1);
        }

        .game-info {
            padding: 1.5rem;
        }

        .game-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .game-description {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Why Choose Us */
        .why-section {
            padding: 8rem 0;
            background: linear-gradient(180deg, #1a1a1a 0%, var(--dark-color) 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 15px;
            border: 1px solid rgba(2, 190, 247, 0.2);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(2, 190, 247, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-color);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* Latest Betting */
        .betting-section {
            padding: 8rem 0;
            background: var(--dark-color);
        }

        .betting-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .betting-tab {
            background: var(--card-bg);
            color: var(--text-bright);
            border: 1px solid rgba(2, 190, 247, 0.3);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .betting-tab.active,
        .betting-tab:hover {
            background: var(--primary-color);
            color: var(--dark-color);
            border-color: var(--primary-color);
        }

        .betting-content {
            display: none;
        }

        .betting-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .betting-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .betting-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .betting-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .betting-teams {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .betting-odds {
            display: flex;
            gap: 1rem;
        }

        .odds {
            background: rgba(2, 190, 247, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
        }

        .betting-time {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 8rem 0;
            background: linear-gradient(180deg, var(--dark-color) 0%, #1a1a1a 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            position: relative;
            border: 1px solid rgba(2, 190, 247, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.3;
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--text-light);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
        }

        .rating {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 0;
            background: var(--dark-color);
        }

        .contact-form {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid rgba(2, 190, 247, 0.3);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-bright);
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(2, 190, 247, 0.3);
            border-radius: 8px;
            color: var(--text-bright);
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(2, 190, 247, 0.2);
        }

        .form-control::placeholder {
            color: var(--text-light);
        }

        .btn-submit {
            background: var(--primary-color);
            color: var(--dark-color);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-submit:hover {
            background: #02f750;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(2, 190, 247, 0.3);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(2, 190, 247, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(2, 190, 247, 0.2);
            color: var(--text-light);
        }

        /* Modals */
        .modal-content {
            background: var(--card-bg);
            border: 1px solid rgba(2, 190, 247, 0.3);
            color: var(--text-bright);
        }

        .modal-header {
            border-bottom: 1px solid rgba(2, 190, 247, 0.3);
        }

        .modal-title {
            color: var(--primary-color);
        }

        .modal-body {
            color: var(--text-light);
        }

        .modal-footer {
            border-top: 1px solid rgba(2, 190, 247, 0.3);
        }

        .btn-close {
            filter: invert(1);
        }

        /* Success Messages */
        .success-message {
            display: none;
            background: rgba(40, 167, 69, 0.2);
            color: #28a745;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #28a745;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .about-stats {
                flex-direction: column;
                gap: 2rem;
            }
            
            .betting-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
    