.hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 100%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

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

        .hero-section p {
            font-size: 1.125rem;
            max-width: 800px;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .hero-section .cta-button {
            font-size: 1.25rem;
            padding: 20px 48px;
            border-radius: 14px;
            box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 217, 255, 0.2);
        }
        
        .hero-section .cta-button:hover {
            box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5), 0 0 30px rgba(0, 217, 255, 0.4);
        }

        .table-of-contents {
            background: var(--dark-lighter);
            padding: 60px 0;
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

        .toc-toggle {
            cursor: pointer;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0;
            padding: 16px 24px;
            background: var(--dark-card);
            border-radius: 12px;
            border: 2px solid rgba(0, 217, 255, 0.2);
            transition: all 0.3s ease;
        }

        .toc-toggle::after {
            display: none;
        }

        .toc-toggle:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(0, 217, 255, 0.05);
            box-shadow: 0 4px 12px rgba(0, 217, 255, 0.2);
        }

        .toc-toggle:active {
            transform: scale(0.98);
        }

        .toc-arrow {
            font-size: 0.8em;
            transition: transform 0.3s ease;
            margin-left: 12px;
            color: var(--primary);
        }

        .toc-toggle.active .toc-arrow {
            transform: rotate(180deg);
        }

        .toc-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
            list-style: none;
            padding: 0;
            margin-top: 32px;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .toc-list li {
            background: var(--dark-card);
            border-radius: 12px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.3s ease;
        }

        .toc-list li:hover {
            border-color: var(--primary);
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }

        .toc-list a {
            display: block;
            padding: 20px 24px;
            color: var(--text-secondary);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .toc-list li:hover a {
            color: var(--primary);
        }

        .registration {
            padding: 100px 0;
        }

        .timeline-item {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 32px;
            border-left: 4px solid var(--primary);
            position: relative;
            transition: all 0.4s ease;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -12px;
            top: 40px;
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
        }

        .timeline-item:hover {
            transform: translateX(12px);
            box-shadow: var(--shadow-lg);
        }

        .content-image {
            margin: 40px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .content-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

        .content-image:hover img {
            transform: scale(1.05);
        }

        .content-image figcaption {
            background: var(--dark-card);
            padding: 16px 24px;
            font-size: 0.9375rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .bonuses {
            background: var(--gradient-dark);
            padding: 100px 0;
        }

        .bonus-card {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 32px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .bonus-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 107, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .bonus-card:hover::after {
            opacity: 1;
        }

        .bonus-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .bonus-terms {
            background: linear-gradient(135deg, rgba(255, 229, 0, 0.1) 0%, rgba(255, 138, 0, 0.1) 100%);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--accent);
            margin-top: 40px;
        }

        .bonus-terms h3 {
            color: var(--accent);
        }

        .games {
            padding: 100px 0;
            background: var(--dark);
        }

        .games .card {
            margin-bottom: 32px;
        }

        .games .card:last-child {
            margin-bottom: 0;
        }

        .game-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 48px;
            margin: 40px 0;
            align-items: stretch;
        }

        .game-showcase .content-image {
            margin: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .game-showcase .content-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .advantages {
            background: var(--dark-lighter);
            padding: 100px 0;
        }

        .feature-item {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 32px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gradient-primary);
            transition: height 0.4s ease;
        }

        .feature-item:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .feature-item:hover::before {
            height: 100%;
        }

        .banking {
            padding: 100px 0;
            background: var(--dark);
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--dark-card);
            border-radius: 20px;
            overflow: hidden;
        }

        thead {
            background: var(--gradient-primary);
        }

        thead th {
            padding: 20px 24px;
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            text-align: left;
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        tbody tr {
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            transition: all 0.3s ease;
        }

        tbody tr:hover {
            background: rgba(0, 217, 255, 0.05);
        }

        tbody td {
            padding: 20px 24px;
            color: var(--text-secondary);
            font-size: 0.9375rem;
        }

        .banking-process {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 32px;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }

        .security {
            background: var(--gradient-dark);
            padding: 100px 0;
        }

        .highlight-box {
            background: var(--dark-card);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 32px;
            border: 1px solid rgba(0, 217, 255, 0.1);
            position: relative;
            transition: all 0.4s ease;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 20px 20px 0 0;
        }

        .highlight-box:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .faq {
            padding: 100px 0;
            background: var(--dark);
        }

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

        .accordion-item:hover {
            border-color: var(--primary);
        }

        .accordion-header {
            padding: 24px 32px;
            cursor: pointer;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-header::after {
            content: '+';
            font-size: 2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-header {
            color: var(--primary);
        }

        .accordion-item.active .accordion-header::after {
            transform: rotate(45deg);
        }

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

        .accordion-item.active .accordion-body {
            max-height: 1000px;
        }

        .accordion-body p {
            padding: 0 32px 24px;
            margin: 0;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 100px 0;
            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) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

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

        .cta-section h2 {
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .cta-section h2::after {
            background: var(--dark);
            left: 50%;
            transform: translateX(-50%);
        }

        .cta-section p {
            color: var(--dark);
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .cta-section .btn-primary {
            background: var(--dark);
            color: var(--primary);
            font-size: 1.25rem;
            padding: 20px 48px;
        }

        .cta-section .btn-primary:hover {
            background: var(--dark-lighter);
            box-shadow: 0 12px 40px rgba(10, 14, 39, 0.4);
        }

        @media (max-width: 991px) {
            .section-spacing {
                padding: 80px 0;
            }

            .hero-section {
                padding: 120px 0 80px;
            }

            .game-showcase {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 32px;
            }
        }

        @media (max-width: 767px) {
            .section-spacing {
                padding: 60px 0;
            }

            .hero-section {
                padding: 200px 0 60px;
                min-height: auto;
            }

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

            .hero-section .cta-button {
                width: 100%;
                text-align: center;
            }

            .toc-list {
                grid-template-columns: 1fr;
            }

            .timeline-item, .bonus-card, .feature-item, .banking-process, .highlight-box {
                padding: 24px;
            }

            .game-showcase {
                grid-template-columns: 1fr;
            }

            .game-showcase .content-image img {
                height: 250px;
            }

            .table-wrapper {
                margin: 24px -20px;
                border-radius: 0;
            }

            table {
                font-size: 0.875rem;
            }

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

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

            .btn {
                padding: 14px 28px;
                font-size: 0.9375rem;
            }

            .cta-section {
                padding: 60px 0;
            }
        }

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

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.25rem;
            }

            p {
                font-size: 0.9375rem;
            }
        }