        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 100px;
            padding-bottom: 20px;
            background: radial-gradient(circle at 50% 0%, rgba(123, 47, 255, 0.15), transparent 70%),
                        radial-gradient(circle at 0% 100%, rgba(0, 217, 255, 0.1), transparent 50%);
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(800px, 100vw);
            height: min(800px, 100vw);
            max-width: 100%;
            background: radial-gradient(circle, rgba(255, 46, 99, 0.1), transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
        }

        .hero-section .container {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hero-section h1 {
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 0.5rem;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

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

        .text-block {
            background: var(--gradient-dark);
        }

        .feature-table {
            width: 100%;
            margin: 3rem 0;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--dark-soft);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .table-responsive table {
            min-width: 100%;
        }

        .feature-table tr {
            border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        }

        .feature-table tr:last-child {
            border-bottom: none;
        }

        .feature-table td {
            padding: 1.5rem 2rem;
            color: var(--gray);
            font-size: 1.125rem;
        }

        .feature-table td:first-child {
            font-weight: 600;
            color: var(--primary);
            width: 40%;
        }

        .timeline {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
        }

        .timeline-container {
            margin: 3rem 0;
        }

        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: flex-start;
        }

        .timeline-number {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 700;
            box-shadow: var(--shadow-lg);
        }

        .timeline-content {
            flex: 1;
            background: var(--dark-soft);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 217, 255, 0.1);
        }

        .feature-icons {
            background: radial-gradient(circle at 100% 0%, rgba(255, 46, 99, 0.1), transparent 50%);
        }

        .feature-icons img {
            max-width: 100%;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            margin: 2rem auto;
            display: block;
        }

        .feature-block {
            background: var(--dark-soft);
            padding: 2.5rem;
            border-radius: 20px;
            margin: 2rem 0;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow-sm);
        }

        .tabs-container {
            background: var(--dark);
        }

        .tabs-nav {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .tab-link {
            padding: 16px 32px;
            background: var(--dark-soft);
            color: var(--gray);
            border: 2px solid transparent;
            border-radius: 50px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .tab-link:hover {
            border-color: var(--primary);
            color: var(--light);
        }

        .tab-link.active {
            background: var(--gradient-primary);
            color: var(--light);
            border-color: var(--primary);
            box-shadow: var(--shadow-glow);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

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

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

        .cards-grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .game-card {
            background: var(--dark-soft);
            border-radius: 20px;
            padding: 1.5rem;
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 217, 255, 0.1);
            text-align: center;
        }

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

        .game-card img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .game-card p {
            margin: 0;
            color: var(--light);
            font-size: 1.125rem;
        }

        .cards-grid-3 {
            background: linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .highlight-boxes {
            background: radial-gradient(circle at 0% 50%, rgba(0, 217, 255, 0.1), transparent 60%);
        }

        .highlight-box {
            background: var(--dark-soft);
            border-radius: 24px;
            padding: 3rem;
            margin: 2rem 0;
            border: 1px solid rgba(123, 47, 255, 0.2);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--gradient-accent);
        }

        .feature-list {
            background: var(--gradient-dark);
        }

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

        .feature-list-items li {
            padding: 1.5rem 2rem;
            margin-bottom: 1rem;
            background: var(--dark-soft);
            border-radius: 16px;
            border-left: 4px solid var(--secondary);
            color: var(--gray);
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }

        .feature-list-items li:hover {
            border-left-color: var(--primary);
            transform: translateX(8px);
            box-shadow: var(--shadow-sm);
        }

        .accordion {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
        }

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

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

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

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

        .accordion-toggle {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
            border-radius: 50%;
            background: var(--gradient-primary);
            border: none;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .accordion-toggle::before,
        .accordion-toggle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 16px;
            height: 2px;
            background: var(--light);
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .accordion-toggle::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .accordion-toggle[aria-expanded="true"]::after {
            transform: translate(-50%, -50%) rotate(0deg);
        }

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

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

        .cta-section {
            background: radial-gradient(circle at 50% 50%, rgba(123, 47, 255, 0.2), transparent 70%),
                        var(--gradient-dark);
            text-align: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(600px, 100vw);
            height: min(600px, 100vw);
            max-width: 100%;
            background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 70%);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

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

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

        .cta-section p {
            font-size: 1.375rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        @media (max-width: 991px) {
            .nav-list {
                gap: 2rem;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            header .container {
                flex-wrap: wrap;
                overflow-x: hidden;
                justify-content: space-between;
            }

            .logo {
                order: 1;
            }

            .main-nav {
                order: 2;
                flex: 0;
                width: auto;
                margin-left: auto;
            }

            .hamburger {
                display: flex;
            }

            .nav-list {
                display: flex !important;
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 0.25rem 1rem;
                gap: 0;
                transition: left 0.4s ease;
                z-index: 1002;
                overflow: hidden !important;
                overflow-y: hidden !important;
                overflow-x: hidden !important;
                visibility: hidden;
            }

            .nav-list.active {
                left: 0;
                visibility: visible;
            }

            .nav-list a {
                font-size: 0.9rem;
                padding: 0.35rem 1rem;
                width: 100%;
                display: block;
            }

            header .cta-button {
                order: 3;
                width: 100%;
                padding: 12px 24px;
                font-size: 0.9rem;
                text-align: center;
                margin-top: 1rem;
                flex-basis: 100%;
            }

            section {
                padding: 60px 0;
            }

            .hero-section {
                min-height: 90vh;
                padding-top: 120px;
            }

            .timeline-item {
                flex-direction: column;
                gap: 1rem;
            }

            .timeline-number {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

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

            .tab-link {
                width: 100%;
                text-align: center;
                min-height: 44px;
            }

            .cards-grid-4 {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }

            .feature-table {
                display: block;
            }

            .feature-table tbody {
                display: block;
            }

            .feature-table tr {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
                background: var(--dark-soft);
                border-radius: 12px;
                padding: 1rem;
                border-bottom: none;
            }

            .feature-table tr:last-child {
                margin-bottom: 0;
            }

            .feature-table td {
                display: block;
                width: 100%;
                padding: 0;
                font-size: 1rem;
            }

            .feature-table td:first-child {
                font-weight: 600;
                color: var(--primary);
                margin-bottom: 0.5rem;
                font-size: 0.875rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .feature-table td:last-child {
                color: var(--light);
                font-size: 1rem;
                padding-left: 0;
            }

            .table-responsive {
                overflow-x: visible;
            }

            .accordion-header h3 {
                font-size: 1.125rem;
            }

            .nav-list a {
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }