main {
            margin-top: 80px;
        }

        .hero-section {
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(93, 18, 210, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-50px, 50px) scale(1.1); }
        }

        .overview {
            background: var(--dark-surface);
        }

        .comparison-table {
            width: 100%;
            background: var(--light-surface);
            border-radius: 24px;
            overflow: hidden;
            margin: 2rem 0;
        }

        .comparison-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s;
        }

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

        .comparison-table tbody tr:hover {
            background: rgba(0, 229, 204, 0.05);
        }

        .comparison-table td {
            padding: 1.5rem 2rem;
            color: var(--text-secondary);
        }

        .comparison-table td:first-child {
            color: var(--text-primary);
            font-weight: 600;
        }

        .timeline-item {
            background: var(--light-surface);
            border-radius: 24px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--electric-teal);
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 2.5rem;
            width: 16px;
            height: 16px;
            background: var(--electric-teal);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--electric-teal);
        }

        .checklist {
            list-style: none;
            padding: 0;
        }

        .checklist li {
            padding-left: 2rem;
            position: relative;
            margin-bottom: 1rem;
        }

        .checklist li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--electric-teal);
            font-weight: 900;
            font-size: 1.3rem;
        }

        .feature-block {
            background: rgba(0, 229, 204, 0.05);
            border: 1px solid rgba(0, 229, 204, 0.2);
            border-radius: 16px;
            padding: 2rem;
            margin: 1.5rem 0;
        }

        .cards-grid-2,
        .cards-grid-3 {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        dl dt,
        dl dd {
            color: var(--text-primary);
        }

        dl dt {
            font-weight: 700;
            margin-top: 1rem;
            margin-bottom: 0.5rem;
        }

        dl dd {
            margin-bottom: 1rem;
            margin-left: 0;
        }

        .cards-grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        }

        .cards-grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .game-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .game-card:hover {
            transform: scale(1.05);
        }

        .game-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .game-card p {
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
        }

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

        .tab-button {
            background: var(--light-surface);
            color: var(--text-secondary);
            border: 2px solid transparent;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tab-button:hover,
        .tab-button.active {
            background: var(--gradient-primary);
            color: var(--text-primary);
            border-color: var(--electric-teal);
            box-shadow: var(--shadow-glow);
        }

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

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

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

        .accordion-item {
            background: var(--light-surface);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .accordion-header {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem 2rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }

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

        .accordion-header h3 {
            margin: 0;
            font-size: 1.3rem;
        }

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

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

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

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

        .highlight-list {
            list-style: none;
            padding: 0;
        }

        .highlight-list li {
            padding: 1rem;
            margin-bottom: 0.75rem;
            background: rgba(0, 229, 204, 0.05);
            border-left: 3px solid var(--electric-teal);
            border-radius: 8px;
        }

        .cta-section {
            background: var(--gradient-primary);
            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(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

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

        .cta-section h2,
        .cta-section p {
            position: relative;
            z-index: 1;
            color: var(--text-primary);
        }

        .cta-section .btn-primary {
            background: var(--midnight);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border-radius: 0;
            border: none;
        }

        .cta-section .btn-primary:hover {
            background: var(--dark-surface);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
        }

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

            h2 {
                font-size: 2rem;
            }

            section {
                padding: 60px 0;
            }

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

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

        @media (max-width: 767px) {
            .hero-section {
                padding-top: 120px;
            }

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

            .comparison-table tbody {
                display: table;
                width: 100%;
                min-width: 100%;
            }

            .comparison-table tr {
                display: table-row;
            }

            .comparison-table td {
                display: table-cell;
                padding: 1rem;
            }

            .comparison-table td:first-child {
                background: rgba(0, 229, 204, 0.1);
                font-weight: 700;
            }

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

            .tab-button {
                width: 100%;
            }

            .cards-grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }

            .game-library .game-card img {
                max-width: 80%;
                margin: 0 auto;
                display: block;
            }

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

        @media (max-width: 480px) {
            .cards-grid-3 {
                grid-template-columns: 1fr;
            }
        }