.hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 70px;
            background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 61, 113, 0.1) 0%, transparent 50%);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, transparent 25%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 50%, transparent 50%, transparent 75%, rgba(0, 212, 255, 0.05) 75%);
            background-size: 60px 60px;
            opacity: 0.3;
            pointer-events: none;
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
        }

        .hero-section h1 {
            margin-bottom: 32px;
            animation: slideInUp 0.8s ease;
        }

        .hero-section p {
            font-size: 1.25rem;
            max-width: 800px;
            margin-bottom: 48px;
            line-height: 1.8;
            animation: slideInUp 0.8s ease 0.2s both;
        }

        .hero-section .btn-primary {
            animation: slideInUp 0.8s ease 0.4s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .overview h2 {
            text-align: center;
            margin-bottom: 48px;
        }

        .login-process .container > p {
            margin: 0 0 64px 0;
            font-size: 1.125rem;
            text-align: left;
        }

        .bonuses .container > p {
            margin: 0 0 64px 0;
            font-size: 1.125rem;
            text-align: left;
        }

        .game-categories .container > p {
            margin: 0 0 48px 0;
            font-size: 1.125rem;
            text-align: left;
        }

        .strategies .container > p {
            margin: 0 0 48px 0;
            font-size: 1.125rem;
            text-align: left;
        }

        .payments .container > p {
            margin: 0 0 48px 0;
            font-size: 1.125rem;
            text-align: left;
        }

        .payments h3 {
            margin-top: 64px;
            margin-bottom: 24px;
        }

        .security .container > p {
            margin: 0 0 64px 0;
            font-size: 1.125rem;
            text-align: left;
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            color: #ffffff;
            margin-bottom: 24px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .cta-section p {
            color: #ffffff;
            font-size: 1.25rem;
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .cta-section .cta-button {
            background: var(--dark);
            color: var(--primary);
            box-shadow: 0 8px 32px rgba(10, 14, 39, 0.4);
        }

        .cta-section .cta-button:hover {
            background: var(--dark-alt);
            color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(10, 14, 39, 0.6);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.25rem;
            }

            section {
                padding: 60px 0;
            }

            .hero-section {
                min-height: auto;
                padding-top: 120px;
                padding-bottom: 60px;
            }

            .hero-section p {
                font-size: 1.0625rem;
            }

            .btn-primary, .cta-button {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .cards-grid-3 .row {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .tabs-nav {
                flex-direction: column;
            }

            .tab-button {
                width: 100%;
                text-align: center;
            }

            .timeline-item {
                padding-left: 32px;
            }

            .feature-item {
                padding: 24px;
            }

            table {
                font-size: 0.875rem;
            }

            thead th, tbody td {
                padding: 12px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .cards-grid-3 .row {
                grid-template-columns: repeat(2, 1fr);
            }
        }