.hero-section {
            position: relative;
            padding: 8rem 0 6rem;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

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

        .hero-section h1 {
            margin-bottom: 1.5rem;
        }

        .hero-section p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }

        .hero-section .cta-button {
        }

        .contents {
            padding: 3rem 0;
            background: rgba(255, 255, 255, 0.02);
        }

        .accordion-item {
            background: var(--dark-alt);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .accordion-header {
            width: 100%;
            padding: 1.5rem;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: rgba(0, 212, 255, 0.05);
        }

        .accordion-header .icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

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

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 1.5rem 0.3rem 1.5rem !important;
        }

        .accordion-body ul {
            padding: 0 1.5rem 1.5rem;
            list-style: none;
        }

        .accordion-body li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        }

        .accordion-body li:last-child {
            border-bottom: none;
        }

        .registration, .mobile, .games, .advantages, .payments, .security, .faq {
            padding: 5rem 0;
            position: relative;
        }

        .registration h2, .mobile h2, .games h2, .advantages h2, .payments h2, .security h2, .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .timeline-item {
            background: var(--dark-alt);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

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

        .timeline-content ul, .timeline-content ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .timeline-content li {
            margin: 0.5rem 0;
        }

        .feature-block {
            background: var(--dark-alt);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.4s ease;
        }

        .feature-block:hover {
            transform: scale(1.02);
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }

        .tabs-nav {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .tab-link {
            padding: 12px 30px;
            background: var(--dark-alt);
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            color: var(--light);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .tab-link:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--primary);
        }

        .tab-link.active {
            background: var(--gradient-1);
            border-color: var(--primary);
            color: var(--dark);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .cards-grid-2 .container > article {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .text-block {
            margin: 2rem 0;
        }

        .text-block ul, .text-block ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .highlight-list {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .highlight-item {
            background: var(--dark-alt);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
        }

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

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 0, 128, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

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

        .cta-section h2 {
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 767px) {
            .hero-section {
                padding: 5rem 0 4rem;
                text-align: center;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

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

            .registration, .mobile, .games, .advantages, .payments, .security, .faq {
                padding: 3rem 0;
            }

            h2 {
                font-size: 1.75rem;
            }

            .timeline-item, .feature-block {
                padding: 1.5rem;
            }

            .card {
                padding: 1.5rem;
            }

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

            .tab-link {
                width: 100%;
            }

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

            table {
                font-size: 0.875rem;
            }

            th, td {
                padding: 0.75rem 0.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-section {
                padding: 6rem 0 5rem;
            }

            .timeline-item, .feature-block {
                padding: 2rem;
            }
        }