        /* ==========================================
           1. RESET & CORE DESIGN SYSTEM
           ========================================== */
        :root {
            --color-01: #56B6C6;
            --color-02: #AE2448;
            --color-03: #3852B4;
            --color-04: #FFE52A;
            --color-05: #0ABAB5;
            --active-accent: #56B6C6;
            --bg-dark: #111111;
            --bg-light: #FFFFFF;
            --text-dark: #111111;
            --text-light: #FFFFFF;
            --border-color: #111111;
            --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #FFFFFF; /* Outer white frame for desktop */
            font-family: "Roboto", sans-serif;
            color: var(--text-dark);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Central Content Area */
        .site-shell {
            max-width: 1500px;
            margin: 0 auto;
            background-color: #FFFFFF;
            position: relative;
            box-shadow: 0 0 50px rgba(0,0,0,0.04);
            border-left: 1px solid #E5E5E5;
            border-right: 1px solid #E5E5E5;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button, input, textarea {
            font-family: inherit;
            outline: none;
        }

        img, video {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Utility Typography Classes */
        .roboto-900 { font-weight: 900; }
        .roboto-700 { font-weight: 700; }
        .roboto-500 { font-weight: 500; }
        .roboto-300 { font-weight: 300; }

        /* Page Tab Engine Rules */
        .page-view {
            display: none;
        }
        .page-view.active-page {
            display: block;
        }

        /* ==========================================
           2. HEADER & SEARCH SYSTEM
           ========================================== */
        header.site-header {
            padding: 25px 40px 0 40px;
            background: #FFFFFF;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
        }

        /* Prominent Brand Logo */
        .brand-logo {
            font-weight: 900;
            font-size: 2rem;
            letter-spacing: -0.04em;
            color: #ff2828;
            font-family: 'Times New Roman', Times, serif;
            text-decoration: underline;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            text-transform: uppercase;
        }

        .brand-logo span.dot {
            width: 12px;
            height: 12px;
            background-color: var(--active-accent);
            display: inline-block;
            transition: background-color 0.4s ease;
        }

        /* Search Box with Icon on Right Top Border */
        .search-box-wrapper {
            display: flex;
            align-items: center;
            border: 2px solid #111111;
            background: #FFFFFF;
            padding: 4px 6px 4px 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .search-box-wrapper:hover, .search-box-wrapper:focus-within {
            box-shadow: 4px 4px 0px #111111;
            transform: translateY(-2px);
        }

        .search-input-top {
            border: none;
            background: transparent;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            width: 180px;
            color: #111111;
        }

        .search-btn-icon {
            background: #111111;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .search-btn-icon:hover {
            background: var(--active-accent);
        }

        .search-btn-icon svg {
            width: 16px;
            height: 16px;
            stroke: #FFFFFF;
            stroke-width: 2.5;
            fill: none;
        }

        /* Mobile Hamburger Trigger Button */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            gap: 6px;
            width: 32px;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger-btn span {
            display: block;
            height: 3px;
            width: 100%;
            background: #111111;
            transition: all 0.3s ease;
        }

        /* 5-Column Navigation Bar */
        nav.main-nav {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            border: 2px solid #111111;
            background: #FFFFFF;
            margin-top: 10px;
        }

        .nav-item {
            padding: 18px 0;
            text-align: center;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border-right: 1px solid #111111;
            background: #FFFFFF;
            color: #111111;
            position: relative;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .nav-item:last-child {
            border-right: none;
        }

        .nav-item:hover {
            background: #F5F5F5;
            font-weight: 900;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 4px;
            background: #111111;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-item:hover::after, .nav-item.active::after {
            width: 100%;
        }

        .nav-item.active {
            border-bottom: 4px solid #111111;
            font-weight: 900;
        }

        /* ==========================================
           3. CINEMATIC HERO SLIDESHOW
           ========================================== */
        .hero-container {
            padding: 30px 40px;
        }

        .hero-card {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            max-height: 720px;
            background: #000000;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            border: 2px solid #111111;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transform: scale(1.05);
            transition: opacity 0.8s ease, transform 1.2s var(--transition-smooth);
            pointer-events: none;
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }

        .hero-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Hero Overlay */
        .hero-overlay {
            position: relative;
            z-index: 10;
            width: 100%;
            background: rgba(0, 0, 0, 0.82);
            backdrop-filter: blur(10px);
            padding: 35px 40px;
            border-top: 5px solid var(--active-accent);
            display: grid;
            grid-template-columns: 80px 1fr 240px;
            align-items: center;
            gap: 30px;
            transition: border-color 0.5s ease;
        }

        .hero-index {
            color: #FFFFFF;
            font-size: 1.1rem;
            font-weight: 900;
            opacity: 0.7;
            letter-spacing: 0.1em;
        }

        .hero-body-content {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hero-category {
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0.85;
        }

        .hero-title {
            color: #FFFFFF;
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        .hero-quote {
            font-size: 1.05rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--active-accent);
            transition: color 0.5s ease;
            margin-top: 4px;
        }

        .hero-actions-column {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 25px;
        }

        .hero-explore-btn {
            color: #FFFFFF;
            font-weight: 900;
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            display: flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .hero-explore-btn:hover {
            transform: translateX(6px);
        }

        .hero-controls {
            display: flex;
            gap: 12px;
        }

        .dot-control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot-control.active {
            background: var(--active-accent);
            transform: scale(1.3);
        }

        /* ==========================================
           4. EDITORIAL SECTIONS (01 - 10)
           ========================================== */
        section.editorial-block {
            padding: 90px 40px;
            border-bottom: 2px solid #111111;
        }

        .section-label {
            font-size: 0.85rem;
            font-weight: 900;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }

        .display-title-large {
            font-size: 4.2rem;
            font-weight: 900;
            line-height: 0.92;
            letter-spacing: -0.04em;
            text-transform: uppercase;
            margin-bottom: 30px;
        }

        /* SECTION 01 — THE HUB */
        .hub-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
            border-top: 2px solid #111111;
            padding-top: 40px;
        }

        .hub-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .hub-col-tag {
            font-size: 0.75rem;
            font-weight: 900;
            letter-spacing: 0.15em;
            color: #777;
        }

        .hub-col-title {
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        /* SECTION 02 — INDEX OF IMAGINARY WORLDS (DARK) */
        .bg-dark-section {
            background: var(--bg-dark);
            color: var(--text-light);
        }

        .horizontal-scroll-wrapper {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding-bottom: 30px;
            scrollbar-width: thin;
            scrollbar-color: #444 #111;
        }

        .game-index-card {
            min-width: 360px;
            background: #1A1A1A;
            border: 1px solid #333;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 480px;
            transition: transform 0.3s ease, border-color 0.3s ease;
            overflow: hidden;
        }

        .game-index-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-01);
        }

        .index-card-media {
            height: 200px;
            width: 100%;
        }

        .index-card-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .index-title {
            font-size: 1.8rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 12px;
        }

        .index-meta-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 0.85rem;
            color: #AAA;
        }

        .index-meta-list span {
            color: #FFF;
            font-weight: 700;
        }

        .index-rating {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--color-04);
            align-self: flex-end;
        }

        /* SECTION 03 — GAME DESIGN LAB (BLUE) */
        .bg-blue-section {
            background: var(--color-03);
            color: #FFFFFF;
        }

        .lab-quad-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .lab-block {
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 40px;
            background: rgba(0, 0, 0, 0.15);
            transition: border-color 0.3s ease;
        }

        .lab-block:hover {
            border-color: #FFFFFF;
        }

        .lab-block-title {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 15px;
            letter-spacing: 0.05em;
        }

        /* SECTION 04 — REVIEWS */
        .reviews-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .review-card-editorial {
            border: 2px solid #111111;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: #FAFAFA;
            overflow: hidden;
        }

        .review-media {
            height: 220px;
            border-bottom: 2px solid #111111;
        }

        .review-card-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .review-tag {
            font-size: 0.75rem;
            font-weight: 900;
            letter-spacing: 0.15em;
            color: var(--color-02);
            margin-bottom: 10px;
            display: block;
        }

        .review-score {
            font-size: 2.5rem;
            font-weight: 900;
            margin-top: 20px;
            border-top: 2px solid #111111;
            padding-top: 15px;
        }

        /* SECTION 05 — NEWS FROM THE FUTURE (RED) */
        .bg-red-section {
            background: var(--color-02);
            color: #FFFFFF;
        }

        .news-future-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .news-future-card {
            background: rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.25);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-future-card h3 {
            font-size: 1.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin: 15px 0;
        }

        /* SECTION 06 — GAME CULTURE (YELLOW) */
        .bg-yellow-section {
            background: var(--color-04);
            color: #111111;
        }

        .culture-collage {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 40px;
        }

        .culture-quote-box {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 0.95;
            text-transform: uppercase;
            border-left: 8px solid #111111;
            padding-left: 30px;
        }

        /* SECTION 07 — FUTURE OF PLAY (TURQUOISE) */
        .bg-turquoise-section {
            background: var(--color-05);
            color: #111111;
        }

        .future-concepts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .future-concept-card {
            background: rgba(255, 255, 255, 0.5);
            padding: 25px;
            border: 2px solid #111111;
            font-weight: 900;
            font-size: 1.1rem;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* SECTION 08 — MARQUEE */
        .marquee-container {
            background: #111111;
            color: #FFFFFF;
            padding: 30px 0;
            overflow: hidden;
            white-space: nowrap;
            border-bottom: 2px solid #111111;
        }

        .marquee-track {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }

        .marquee-text {
            font-size: 3.8rem;
            font-weight: 900;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        @keyframes marquee {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        /* SECTION 09 — EDITORIAL DESK */
        .editorial-desk-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }

        /* SECTION 10 — GAME CONCEPTS GRID */
        .concepts-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .concept-card {
            border: 2px solid #111111;
            padding: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 380px;
            background: #FFF;
            transition: background 0.3s ease;
            overflow: hidden;
        }

        .concept-media {
            height: 180px;
            border-bottom: 2px solid #111111;
        }

        .concept-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .concept-num {
            font-size: 2rem;
            font-weight: 900;
            color: #BBB;
        }

        /* ==========================================
           5. FULLSEARCH OVERLAY & RESULTS
           ========================================== */
        .search-overlay {
            position: fixed;
            inset: 0;
            background: rgba(17, 17, 17, 0.98);
            z-index: 1000;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            color: #FFF;
            overflow-y: auto;
        }

        .search-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .search-close-btn {
            align-self: flex-end;
            color: #FFF;
            font-size: 1.8rem;
            font-weight: 900;
            cursor: pointer;
            margin-bottom: 40px;
        }

        .search-input-overlay {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 4px solid #FFF;
            font-size: 3.5rem;
            font-weight: 900;
            color: #FFF;
            padding: 15px 0;
            outline: none;
            text-transform: uppercase;
        }

        .search-suggestions {
            margin-top: 30px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .search-tag {
            border: 1px solid #555;
            padding: 10px 20px;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-tag:hover {
            background: #FFF;
            color: #111;
        }

        .search-results-grid {
            margin-top: 50px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .search-result-card {
            background: #222;
            padding: 20px;
            border: 1px solid #444;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* ==========================================
           6. MOBILE HAMBURGER MENU DRAWER
           ========================================== */
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 380px;
            height: 100%;
            background: #111111;
            z-index: 950;
            padding: 50px 30px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            transition: right 0.4s var(--transition-smooth);
            color: #FFFFFF;
        }

        .mobile-drawer.active {
            right: 0;
        }

        .mobile-drawer-close {
            align-self: flex-end;
            font-size: 2.2rem;
            font-weight: 900;
            cursor: pointer;
            color: #FFF;
        }

        .mobile-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }

        .mobile-nav-item {
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            border-bottom: 1px solid #222;
            padding-bottom: 10px;
            transition: color 0.2s ease;
        }

        .mobile-nav-item:hover {
            color: var(--color-01);
        }

        .mobile-drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 940;
            display: none;
        }

        .mobile-drawer-backdrop.active {
            display: block;
        }

        /* ==========================================
           7. FOOTER & COPYRIGHT BAR
           ========================================== */
        footer.site-footer {
            background: #111111;
            color: #FFFFFF;
            padding: 80px 40px 60px 40px;
        }

        .footer-top-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-size: 2.2rem;
            font-weight: 900;
            line-height: 0.95;
            margin-bottom: 20px;
        }

        .footer-col-title {
            font-size: 0.85rem;
            font-weight: 900;
            letter-spacing: 0.15em;
            color: #777;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .footer-links li {
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .footer-links li:hover {
            color: var(--color-01);
        }

        .newsletter-panel {
            background: #1A1A1A;
            padding: 30px;
            border: 1px solid #333;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .newsletter-input {
            background: #000;
            border: 1px solid #444;
            padding: 14px;
            color: #FFF;
            font-family: inherit;
        }

        .newsletter-btn {
            background: var(--color-01);
            color: #111;
            font-weight: 900;
            padding: 14px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: none;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .newsletter-btn:hover {
            opacity: 0.9;
        }

        .copyright-bar {
            background: #FFFFFF;
            color: #111111;
            padding: 25px 40px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 2px solid #111111;
        }

        /* ==========================================
           8. DEDICATED PAGE VIEWS
           ========================================== */
        .page-header-banner {
            padding: 70px 40px;
            border-bottom: 2px solid #111;
            background: #FAFAFA;
        }

        .games-filter-bar {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .filter-btn {
            border: 2px solid #111;
            padding: 10px 20px;
            font-weight: 900;
            font-size: 0.8rem;
            cursor: pointer;
            background: #FFF;
            transition: all 0.2s ease;
        }

        .filter-btn.active, .filter-btn:hover {
            background: #111;
            color: #FFF;
        }

        .games-archive-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 60px 40px;
        }

        .game-archive-card {
            border: 2px solid #111;
            display: flex;
            flex-direction: column;
            background: #FFF;
        }

        .game-archive-media {
            height: 240px;
            border-bottom: 2px solid #111;
        }

        .game-card-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex-grow: 1;
        }

        .contact-form-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            padding: 80px 40px;
        }

        .transmission-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-weight: 900;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
        }

        .form-group input, .form-group textarea {
            padding: 15px;
            border: 2px solid #111;
            font-family: inherit;
            font-weight: 500;
            background: #FAFAFA;
        }

        .form-submit-btn {
            background: #111;
            color: #FFF;
            padding: 18px;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .form-submit-btn:hover {
            background: var(--color-01);
            color: #111;
        }

        .legal-document-content {
            padding: 60px 40px;
            max-width: 950px;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .legal-document-content h2 {
            font-size: 1.8rem;
            font-weight: 900;
            margin: 40px 0 15px 0;
            border-bottom: 2px solid #111;
            padding-bottom: 10px;
        }

        /* ==========================================
           9. RESPONSIVE MEDIA QUERIES
           ========================================== */
        @media (max-width: 1024px) {
            header.site-header { padding: 20px 20px 0 20px; }
            .hero-container { padding: 20px; }
            section.editorial-block { padding: 60px 20px; }
            
            nav.main-nav { display: none; } /* Hide horizontal desktop nav */
            .hamburger-btn { display: flex; } /* Show hamburger trigger */

            .hero-card { aspect-ratio: 4 / 5; max-height: 600px; }
            .hero-overlay {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 25px;
            }
            .hero-actions-column { align-items: flex-start; }
            .display-title-large { font-size: 3rem; }
            .hub-grid, .lab-quad-grid, .reviews-layout, .news-future-grid, .future-concepts-grid, .concepts-grid, .games-archive-grid, .contact-form-layout, .search-results-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-top-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 650px) {
            .hero-card { aspect-ratio: 1 / 1.1; }
            .display-title-large { font-size: 2.2rem; }
            .hub-grid, .lab-quad-grid, .reviews-layout, .news-future-grid, .future-concepts-grid, .concepts-grid, .games-archive-grid, .contact-form-layout, .culture-collage, .editorial-desk-grid, .search-results-grid {
                grid-template-columns: 1fr;
            }
            .footer-top-grid { grid-template-columns: 1fr; }
            .copyright-bar { flex-direction: column; gap: 10px; text-align: center; }
            .search-input-top { width: 110px; }
            .search-input-overlay { font-size: 2rem; }
        }
