    :root {
        --primary: #fff;
        --primary-dark: #00cc6a;
        --secondary: #fff;
        --dark: #0a0a0a;
        --dark-light: #1a1a1a;
        --gray: #333333;
        --light-gray: #666666;
        --white: #ffffff;
        --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes slideLeft {
        0% {
            transform: translateX(100%);
            opacity: 0;
        }

        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Header */
    header {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        color: var(--white);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    header.scrolled {
        background: rgba(10, 10, 10, 0.98);
        box-shadow: var(--shadow-dark);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .logo {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        align-items: center;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--white);
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        position: relative;
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

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

    .cta-header {
        background: var(--white);
        color: var(--dark);
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cta-header:hover {
        transform: translateY(-2px);
        background: #f0f0f0;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
        color: var(--white);
        padding: 120px 2rem 80px;
        text-align: center;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="g"><stop offset="0%" stop-color="%2300ff88" stop-opacity="0.1"/><stop offset="100%" stop-color="%2300ff88" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23g)"/><circle cx="800" cy="300" r="150" fill="url(%23g)"/><circle cx="400" cy="700" r="120" fill="url(%23g)"/></svg>');
        animation: float 6s ease-in-out infinite;
    }

    .hero-content {
        max-width: 900px;
        z-index: 2;
        position: relative;
    }

    .hero h1 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 1s ease-out;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        color: #cccccc;
        font-weight: 400;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin: 3rem 0;
        animation: fadeInUp 1s ease-out 0.4s both;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        display: block;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 2rem;
        animation: fadeInUp 1s ease-out 0.6s both;
    }

    .cta-primary {
        background: var(--white);
        color: var(--dark);
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }

    .cta-primary:hover {
        transform: translateY(-3px);
        background: #f0f0f0;
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    }

    .cta-secondary {
        background: transparent;
        color: var(--white);
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        border: 2px solid var(--primary);
        border-radius: 50px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .cta-secondary:hover {
        background: var(--white);
        color: var(--dark);
        transform: translateY(-3px);
    }

    /* Betting Companies Section */
    .betting-companies {
        background: #f8f9fa;
        padding: 60px 2rem;
        text-align: center;
    }

    .companies-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: var(--light-gray);
    }

    .companies-slider {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .companies-track {
        display: inline-flex;
        animation: scroll 30s linear infinite;
        gap: 4rem;
        align-items: center;
    }

    .company-logo {
        height: 60px;
        width: auto;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        filter: grayscale(100%);
    }

    .company-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Features Section */
    .features {
        padding: 100px 2rem;
        background: var(--white);
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--light-gray);
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-top: 4rem;
    }

    .feature-card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background: var(--gradient);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 1.5rem;
    }

    .feature-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .feature-description {
        color: var(--light-gray);
        line-height: 1.7;
    }

    /* Testimonials Slideshow */
    .testimonials {
        padding: 100px 2rem;
        background: var(--dark);
        color: var(--white);
    }

    .testimonials-slideshow {
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 4rem auto 0;
        overflow: hidden;
        border-radius: 20px;
    }

    .testimonial-slide {
        display: none;
        background: var(--dark-light);
        padding: 2rem;
        border-radius: 20px;
        border: 1px solid #333;
        position: relative;
        animation: slideLeft 0.5s ease-in-out;
        width: 100%;
    }

    .testimonial-slide.active {
        display: block;
    }

    .testimonial-slide::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 4rem;
        color: var(--primary);
        font-family: serif;
    }

    .testimonial-content {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-style: italic;
        text-align: center;
        max-width: 100%;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        background: var(--gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--dark);
        font-size: 1.5rem;
    }

    .author-info h4 {
        font-weight: 600;
        margin-bottom: 0.2rem;
    }

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

    .slideshow-controls {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .slide-btn {
        background: var(--white);
        color: var(--dark);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

    .slide-btn:hover {
        background: var(--primary);
        transform: scale(1.1);
    }

    .slide-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #666;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: var(--white);
        transform: scale(1.2);
    }

    /* Pricing */
    .pricing {
        padding: 100px 2rem;
        background: #f8f9fa;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: var(--shadow);
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card.featured {
        transform: scale(1.05);
        border: 2px solid var(--primary);
    }

    .pricing-card.featured::before {
        content: 'Most Popular';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gradient);
        color: var(--dark);
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 700;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
    }

    .plan-name {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .plan-price {
        font-size: 3rem;
        font-weight: 800;
        color: black;
        margin-bottom: 0.5rem;
    }

    .plan-period {
        color: var(--light-gray);
        margin-bottom: 2rem;
    }

    .plan-features {
        list-style: none;
        margin-bottom: 2rem;
    }

    .plan-features li {
        padding: 0.5rem 0;
        color: var(--light-gray);
    }

    .plan-features li i {
        color: var(--primary);
        margin-right: 0.5rem;
    }

    /* Live Stats */
    /* Live Stats */
    .live-stats {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: #0d0d0d;
        /* matte black */
        color: #ffffff;
        padding: 0.9rem 1.2rem;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        z-index: 9999;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s ease;
        border: 1px solid #ffffff1a;
        width: 260px;
        /* keeps it compact */
        font-family: 'Inter', sans-serif;
        backdrop-filter: blur(6px);
    }

    .live-stats.show {
        opacity: 1;
        transform: translateY(0);
    }

    .live-stats-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.6rem;
    }

    .live-stats-title {
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: #fff;
    }

    .live-indicator {
        width: 9px;
        height: 9px;
        background: #00ff80;
        border-radius: 50%;
        box-shadow: 0 0 10px #00ff80;
        animation: pulse 1.2s infinite;
    }

    .live-stats-body {
        font-size: 0.85rem;
        color: #bfbfbf;
        line-height: 1.5;
        border-top: 1px solid #1a1a1a;
        padding-top: 0.5rem;
    }

    /* Footer */
    footer {
        background: var(--dark);
        color: var(--white);
        padding: 60px 2rem 30px;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary);
    }

    .footer-section p,
    .footer-section li {
        color: #ccc;
        line-height: 1.7;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        padding: 0.3rem 0;
    }

    .footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
        color: var(--primary);
    }

    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 2rem;
        text-align: center;
        color: #999;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .nav-container {
            padding: 0 1rem;
        }

        .hamburger {
            display: flex;
        }

        nav ul {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 70px);
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 2rem 0;
            gap: 2rem;
            transition: left 0.3s ease;
        }

        nav ul.active {
            left: 0;
        }

        nav ul li {
            width: 100%;
            text-align: center;
        }

        nav ul li a {
            font-size: 1.2rem;
            padding: 1rem;
            display: block;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .section-title {
            font-size: 2rem;
        }

        .features-grid,
        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .companies-track {
            gap: 2rem;
        }

        .testimonials-slideshow {
            max-width: 100%;
            margin: 2rem auto 0;
        }

        .testimonial-slide {
            padding: 1.5rem;
        }

        .testimonial-content {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .live-stats {
            bottom: 15px;
            right: 15px;
            left: 15px;
            width: auto;
        }
    }