section {
            padding: 6rem 0;
            position: relative;
        }

        .hero-section {
            background: var(--gradient-dark);
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -5%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 51, 102, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -5%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) translateY(0); opacity: 0.6; }
            50% { transform: scale(1.1) translateY(-20px); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-content p {
            font-size: 1.25rem;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .quick-nav {
            background: var(--dark-surface);
            padding: 5rem 0;
        }

        .nav-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .nav-card {
            background: var(--dark-card);
            padding: 2rem;
            border-radius: 16px;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            text-decoration: none;
            box-shadow: var(--shadow-sm);
        }

        .nav-card:hover {
            transform: translateY(-6px) scale(1.02);
            border-color: var(--secondary);
            box-shadow: var(--shadow-lg);
        }

        .nav-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
        }

        .nav-text {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .login-section {
            background: var(--dark);
        }

        .games-section {
            background: var(--dark-surface);
        }

        .games-grid, .scratch-games-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .game-card, .scratch-card {
            background: var(--dark-card);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
        }

        .game-card:hover, .scratch-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .game-card h4, .scratch-card h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .vip-section {
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .vip-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .vip-levels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            position: relative;
            z-index: 2;
        }

        .vip-level {
            background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 215, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
        }

        .vip-level::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 20px 20px 0 0;
        }

        .vip-level:hover {
            transform: translateY(-10px) scale(1.03);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
        }

        .vip-level h4 {
            color: var(--accent);
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .benefits-list li {
            padding-left: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .benefits-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .bonus-section {
            background: var(--dark);
        }

        .bonus-tabs {
            margin-top: 3rem;
        }

        .tab-content {
            background: var(--dark-card);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 217, 255, 0.15);
            box-shadow: var(--shadow-md);
        }

        .promotions-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .promotions-list li {
            padding: 1.5rem;
            margin-bottom: 1rem;
            background: rgba(255, 51, 102, 0.05);
            border-left: 4px solid var(--primary);
            border-radius: 8px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .security-section {
            background: var(--dark-surface);
        }

        .faq-section {
            background: var(--gradient-dark);
        }

        .accordion-item {
            background: var(--dark-card);
            border: 1px solid rgba(0, 217, 255, 0.1);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--secondary);
            box-shadow: var(--shadow-md);
        }

        .accordion-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            cursor: pointer;
            gap: 1.5rem;
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.25rem;
            color: var(--text-light);
        }

        .accordion-toggle {
            background: var(--gradient-primary);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            min-width: 44px;
            min-height: 44px;
        }

        .accordion-toggle .icon::before {
            content: '+';
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .accordion-toggle[aria-expanded="true"] {
            transform: rotate(45deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 2rem;
        }

        .accordion-body.active {
            max-height: 1000px;
            padding: 0 2rem 2rem;
        }

        .cta-section {
            background: var(--gradient-primary);
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px
            );
            animation: slide 20s linear infinite;
        }

        @keyframes slide {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-50px) translateY(-50px); }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: var(--text-light);
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
        }

        .cta-content h2::after {
            display: none;
        }

        .cta-content p {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
        }

        .cta-content .btn-primary {
            background: var(--text-light);
            color: var(--primary);
            font-size: 1.25rem;
            padding: 20px 50px;
        }

        .cta-content .btn-primary:hover {
            background: var(--accent);
            color: var(--dark);
        }

        @media (max-width: 767px) {
            section {
                padding: 4rem 0;
            }

            .hero-section {
                padding: 5rem 0 4rem;
            }

            .hero-section::before,
            .hero-section::after {
                width: 300px;
                height: 300px;
            }

            .nav-grid {
                grid-template-columns: 1fr;
            }

            .nav-card {
                padding: 1.5rem;
            }

            .games-grid, .scratch-games-list, .vip-levels {
                grid-template-columns: 1fr;
            }

            .tab-content {
                padding: 2rem 1.5rem;
            }

            .accordion-header {
                padding: 1.5rem;
            }

            .accordion-body.active {
                padding: 0 1.5rem 1.5rem;
            }

            .cta-section {
                padding: 4rem 0;
            }
        }