.hero-section {
            background: var(--gradient-dark);
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

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

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

        @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 h1 {
            margin-bottom: 32px;
            text-shadow: 0 0 40px rgba(6, 255, 165, 0.3);
        }

        .hero-section p {
            font-size: 19px;
            color: var(--text-secondary);
            max-width: 900px;
            line-height: 1.8;
        }

        .table-of-contents {
            background: var(--dark-card);
            padding: 60px 0;
            border-top: 2px solid var(--accent-teal);
            border-bottom: 2px solid var(--accent-teal);
        }

        .table-of-contents h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 42px;
        }

        .table-of-contents ul {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
            list-style: none;
            padding: 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .table-of-contents li {
            margin: 0;
        }

        .table-of-contents a {
            display: block;
            padding: 20px 24px;
            background: var(--dark-elevated);
            border-radius: 12px;
            border: 1px solid rgba(6, 255, 165, 0.15);
            transition: var(--transition);
            font-weight: 500;
            font-size: 16px;
        }

        .table-of-contents a:hover {
            background: rgba(6, 255, 165, 0.05);
            border-color: var(--accent-teal);
            transform: translateX(8px);
            box-shadow: var(--shadow-glow);
        }

        .getting-started article {
            margin-bottom: 60px;
        }

        .text-image-row {
            display: flex;
            flex-direction: column;
            gap: 24px;
            align-items: center;
            margin-top: 8px;
        }

        .text-image-row .content-image {
            width: 100%;
            max-width: 450px;
            margin: 0 auto;
        }

        .getting-started h3 {
            margin-bottom: 16px;
            position: relative;
            padding-left: 24px;
        }

        .getting-started h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 80%;
            background: var(--gradient-accent);
            border-radius: 3px;
        }

        .content-image {
            margin: 16px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 2px solid rgba(6, 255, 165, 0.2);
        }

        .content-image img {
            width: 100%;
            transition: var(--transition);
        }

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

        .content-image.portrait {
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .mobile-gaming {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
        }

        .mobile-gaming article {
            margin-bottom: 60px;
        }

        .mobile-gaming h2 {
            text-align: center;
            margin-bottom: 64px;
        }

        .game-library {
            background: var(--dark-bg);
        }

        .game-library h2 {
            text-align: center;
            margin-bottom: 64px;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 32px;
        }

        .game-showcase {
            background: var(--dark-card);
            padding: 40px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(6, 255, 165, 0.1);
            transition: var(--transition);
        }

        .game-showcase:hover {
            border-color: var(--accent-teal);
            box-shadow: var(--shadow-glow);
        }

        .game-showcase h4 {
            margin-bottom: 24px;
            color: var(--accent-cyan);
            font-size: 20px;
        }

        .banking-methods {
            background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark-bg) 100%);
        }

        .banking-methods h2 {
            text-align: center;
            margin-bottom: 64px;
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 48px 0;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .table-wrapper::-webkit-scrollbar {
            display: none;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--dark-elevated);
        }

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

        th {
            padding: 20px 16px;
            text-align: left;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: var(--text-primary);
            white-space: nowrap;
        }

        td {
            padding: 20px 16px;
            border-bottom: 1px solid rgba(6, 255, 165, 0.1);
            color: var(--text-secondary);
            font-size: 15px;
        }

        tbody tr {
            transition: var(--transition);
        }

        tbody tr:hover {
            background: rgba(6, 255, 165, 0.05);
        }

        .customer-support {
            background: var(--dark-bg);
        }

        .customer-support h2 {
            text-align: center;
            margin-bottom: 64px;
        }

        .customer-support article {
            margin-bottom: 60px;
        }

        .security-licensing {
            background: var(--dark-card);
        }

        .security-licensing h2 {
            text-align: center;
            margin-bottom: 64px;
        }

        .cards-grid-2 .container > div:not(h2) {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

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

        .faq h2 {
            text-align: center;
            margin-bottom: 64px;
        }

        .accordion-item {
            background: var(--dark-card);
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            border: 1px solid rgba(6, 255, 165, 0.1);
            overflow: hidden;
            transition: var(--transition);
        }

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

        .accordion-header {
            padding: 24px 28px;
            cursor: pointer;
            user-select: none;
            position: relative;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }

        .accordion-header::after {
            content: '+';
            position: absolute;
            right: 28px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            color: var(--accent-teal);
            transition: var(--transition);
            font-weight: 300;
        }

        .accordion-item.active .accordion-header::after {
            content: '−';
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        .cta-section {
            background: var(--gradient-main);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(6, 255, 165, 0.2) 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 {
            font-size: clamp(32px, 5vw, 48px);
            margin-bottom: 24px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-section .btn-primary {
            background: var(--dark-bg);
            color: var(--accent-teal);
            font-size: 18px;
            padding: 20px 48px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        .cta-section .btn-primary:hover {
            background: var(--dark-elevated);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        }

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

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

            .hero-section h1 {
                margin-bottom: 24px;
            }

            .hero-section p {
                font-size: 17px;
            }

            .table-of-contents {
                padding: 40px 0;
            }

            .table-of-contents ul {
                grid-template-columns: 1fr;
            }

            .getting-started article {
                margin-bottom: 40px;
            }

            .getting-started h3 {
                margin-bottom: 12px;
            }

            .text-image-row {
                flex-direction: column;
                gap: 20px;
                margin-top: 8px;
            }

            .text-image-row .content-image {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

            .content-image {
                margin: 12px 0;
            }

            .mobile-gaming article,
            .customer-support article {
                margin-bottom: 40px;
            }

            .games-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .game-showcase {
                padding: 24px;
            }

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

            th, td {
                padding: 12px 10px;
                font-size: 13px;
            }

            .cards-grid-2 .container > div:not(h2) {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .card {
                padding: 24px;
            }

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

            .cta-section p {
                font-size: 17px;
                margin-bottom: 32px;
            }

            .cta-section .btn-primary {
                font-size: 16px;
                padding: 16px 36px;
            }

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

        @media (min-width: 768px) and (max-width: 1023px) {
            .container {
                padding: 0 32px;
            }

            .table-of-contents ul {
                grid-template-columns: repeat(2, 1fr);
            }

            .cards-grid-2 .container > div:not(h2) {
                grid-template-columns: repeat(2, 1fr);
            }
        }