/* ROOT ACCESS GAMES - STYLESHEET */

:root {
    /* Color Palette */
    --bg-primary: #070a0e;
    --bg-secondary: #0c121c;
    --bg-console: #0e1724;
    --bg-console-header: #152236;
    
    --border-color: #1e314d;
    --border-glow: #00f0ff33;
    
    --neon-green: #39ff14;
    --neon-green-dim: rgba(57, 255, 20, 0.4);
    --neon-cyan: #00f0ff;
    --neon-cyan-dim: rgba(0, 240, 255, 0.4);
    --neon-pink: #ff007f;
    --neon-pink-dim: rgba(255, 0, 127, 0.4);
    --neon-amber: #ffb000;
    --neon-amber-dim: rgba(255, 176, 0, 0.4);
    
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --text-comment: #6272a4;
    
    /* Typography */
    --font-mono: 'Fira Code', 'Courier New', monospace;
    --font-sans: 'Space Grotesk', 'Inter', sans-serif;
}

/* --- Base Setup & Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- CRT Screen Effects --- */
.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 9999;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9998;
}

@keyframes crt-flicker {
    0% { opacity: 0.985; }
    50% { opacity: 0.995; }
    100% { opacity: 0.985; }
}

body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: rgba(18, 16, 16, 0.03);
    opacity: 0;
    z-index: 9997;
    pointer-events: none;
    animation: crt-flicker 0.15s infinite;
}

/* --- Common Layout Elements --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

section {
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.section-header-block {
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title .title-num {
    color: var(--text-comment);
    margin-right: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Highlight Text */
.highlight {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-dim);
}

/* Monospace Utilities */
.token-comment { color: var(--text-comment); }
.token-prompt { color: var(--neon-pink); }
.token-cmd { color: var(--text-primary); }

/* --- Header & Navigation --- */
.studio-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 10, 14, 0.85);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-prompt {
    color: var(--neon-pink);
    margin-right: 0.5rem;
}

.logo-cmd {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green-dim);
}

.cursor-blink {
    color: var(--neon-green);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.studio-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, text-shadow 0.2s;
    text-transform: uppercase;
}

.nav-item .nav-num {
    color: var(--text-comment);
}

.nav-item:hover, .nav-item.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan-dim);
}

/* --- Console Window Component --- */
.console-box {
    background-color: var(--bg-console);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.console-header {
    background-color: var(--bg-console-header);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.console-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}

.console-header .dot.red { background-color: #ff5f56; }
.console-header .dot.yellow { background-color: #ffbd2e; }
.console-header .dot.green { background-color: #27c93f; }

.console-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: auto;
    margin-right: auto;
}

.console-body {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 7rem;
    background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.05) 0%, rgba(0, 0, 0, 0) 50%);
}

.hero-section .section-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-console {
    grid-column: 2;
    grid-row: 1;
}

.hero-text-content {
    grid-column: 1;
    grid-row: 1;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn-primary {
    background-color: var(--neon-green);
    color: #000;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 18px var(--neon-green-dim);
}

.btn-secondary {
    background-color: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 18px var(--neon-cyan-dim);
}

/* Neofetch display formatting */
.neofetch-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    align-items: center;
}

.neofetch-logo {
    color: var(--neon-green);
    font-size: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 0 5px var(--neon-green-dim);
}

.neofetch-details p {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.neofetch-details .label {
    color: var(--neon-cyan);
}

/* --- Games Section & Showcase --- */
.games-section {
    background: radial-gradient(circle at 10% 70%, rgba(57, 255, 20, 0.03) 0%, rgba(0, 0, 0, 0) 50%);
}

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

/* Game Info Card */
.game-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.card-status-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(255, 176, 0, 0.1);
    border: 1px solid var(--neon-amber-dim);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    align-self: flex-start;
}

.status-indicator {
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--neon-amber);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-amber);
}

.status-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--neon-amber);
    letter-spacing: 0.5px;
}

.game-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-primary);
}

.game-meta {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: 0.9rem;
}

.game-pitch {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.tech-spec-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 4px;
    font-family: var(--font-mono);
}

.spec-title {
    color: var(--text-comment);
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.4rem;
}

.spec-list {
    list-style: none;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-list li strong {
    color: var(--neon-green);
}

/* Animations */
.animate-pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* --- Wireframe Isometric Grid Visual Pane --- */
.game-visual-pane {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wireframe-container {
    width: 100%;
    max-width: 450px;
    background-color: var(--bg-console);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.wireframe-container::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.wireframe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-comment);
}

.wireframe-badge {
    color: var(--neon-cyan);
    font-weight: bold;
}

/* Isometric Projection Math */
.isometric-wrapper {
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.isometric-grid {
    display: grid;
    grid-template-columns: repeat(4, 50px);
    grid-template-rows: repeat(4, 50px);
    gap: 4px;
    transform: rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}

.isometric-grid:hover {
    transform: rotateX(55deg) rotateZ(-40deg);
}

.tile {
    width: 50px;
    height: 50px;
    border: 1px solid var(--neon-green-dim);
    background-color: rgba(12, 18, 28, 0.6);
    position: relative;
    transform-style: preserve-3d;
    transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
    cursor: crosshair;
}

.tile:hover {
    background-color: rgba(57, 255, 20, 0.15);
    border-color: var(--neon-green);
    transform: translateZ(2px);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* Tile Types styling */
.tile.crop-wheat {
    border-color: var(--neon-amber);
    background-color: rgba(255, 176, 0, 0.08);
}
.tile.crop-wheat:hover {
    background-color: rgba(255, 176, 0, 0.2);
}

.tile.crop-wheat::after {
    content: "🌾";
    font-size: 1.2rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg) rotateX(-60deg);
    pointer-events: none;
}

.tile.crop-carrot {
    border-color: var(--neon-pink);
    background-color: rgba(255, 0, 127, 0.08);
}
.tile.crop-carrot:hover {
    background-color: rgba(255, 0, 127, 0.2);
}

.tile.crop-carrot::after {
    content: "🥕";
    font-size: 1.2rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg) rotateX(-60deg);
    pointer-events: none;
}

/* 3D Wireframe cabin representation */
.tile.cabin-tile {
    border-color: var(--neon-cyan);
    background-color: rgba(0, 240, 255, 0.05);
}

.wireframe-building {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    left: 10px;
    transform: translateZ(15px);
    transform-style: preserve-3d;
}

/* Constructing a simple glowing 3D wireframe cube */
.wireframe-building::before, .wireframe-building::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan-dim);
}

.wireframe-building::before {
    /* Roof/Top Face */
    transform: translateZ(15px);
    background-color: rgba(0, 240, 255, 0.1);
}

.wireframe-building::after {
    /* Front Face */
    transform: rotateX(90deg) translateZ(15px);
    background-color: rgba(0, 240, 255, 0.05);
}

/* Rabbit jumping representation */
.tile.rabbit-tile {
    border-color: var(--neon-pink);
}

.wireframe-rabbit {
    font-size: 1.2rem;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg) rotateX(-60deg);
    animation: rabbit-jump 1.6s infinite ease-in-out;
    pointer-events: none;
}

@keyframes rabbit-jump {
    0%, 100% { transform: translate(-50%, -50%) rotateZ(45deg) rotateX(-60deg) translateZ(0); }
    50% { transform: translate(-50%, -50%) rotateZ(45deg) rotateX(-60deg) translateZ(18px); }
}

.wireframe-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
}

.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.legend-dot.color-wheat { background-color: var(--neon-amber); box-shadow: 0 0 5px var(--neon-amber); }
.legend-dot.color-carrot { background-color: var(--neon-pink); box-shadow: 0 0 5px var(--neon-pink); }
.legend-dot.color-cabin { background-color: var(--neon-cyan); box-shadow: 0 0 5px var(--neon-cyan); }
.legend-dot.color-rabbit { background-color: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.8); }

.legend-dot.pulsing {
    animation: legend-pulse 1s infinite alternate;
}

@keyframes legend-pulse {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

/* --- Manifesto / About Section --- */
.manifesto-section {
    background-color: rgba(12, 18, 28, 0.3);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.manifesto-card {
    background-color: var(--bg-console);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2.5rem 1.8rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.manifesto-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.05), inset 0 0 10px rgba(0, 240, 255, 0.02);
}

.card-icon {
    font-size: 2rem;
    line-height: 1;
}

.manifesto-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
}

.manifesto-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Cheat Codes Section --- */
.cheats-section {
    background: radial-gradient(circle at 90% 20%, rgba(0, 240, 255, 0.03) 0%, rgba(0, 0, 0, 0) 50%);
}

.cheats-console .console-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.console-comment {
    color: var(--text-comment);
    font-size: 0.85rem;
}

.cheat-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.cheat-item {
    background-color: rgba(7, 10, 14, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.cheat-item:hover, .cheat-item.active {
    background-color: rgba(57, 255, 20, 0.06);
    border-color: var(--neon-green);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.1);
}

.cheat-cmd {
    font-family: var(--font-mono);
    font-weight: bold;
    color: var(--neon-green);
    font-size: 0.9rem;
    text-shadow: 0 0 4px var(--neon-green-dim);
}

.cheat-effect {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.console-feedback-panel {
    background-color: rgba(7, 10, 14, 0.8);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--neon-cyan);
    padding: 1rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-height: 80px;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    transition: border-color 0.2s;
}

.console-feedback-panel.active {
    border-left-color: var(--neon-green);
}

.feedback-prompt {
    color: var(--neon-pink);
    white-space: nowrap;
}

.feedback-text {
    line-height: 1.5;
}

/* --- Connect Section --- */
.connect-section {
    background-color: rgba(12, 18, 28, 0.1);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.form-console {
    width: 100%;
}

.console-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-mono);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    transition: border-bottom-color 0.2s;
}

.form-row:focus-within {
    border-bottom-color: var(--neon-green);
}

.form-prompt {
    color: var(--neon-pink);
    font-size: 0.9rem;
    white-space: nowrap;
}

.form-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    width: 100%;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-row-actions {
    display: flex;
    justify-content: flex-end;
}

.form-btn {
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.5rem 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.form-btn:hover {
    background-color: var(--neon-green);
    color: #000;
    box-shadow: 0 0 10px var(--neon-green-dim);
}

.form-status-box {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    min-height: 24px;
}

.form-status-success {
    color: var(--neon-green);
    text-shadow: 0 0 4px var(--neon-green-dim);
}

.form-status-error {
    color: var(--neon-pink);
    text-shadow: 0 0 4px var(--neon-pink-dim);
}

.community-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-title {
    font-size: 1.8rem;
    font-weight: 500;
}

.community-pitch {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.social-card {
    background-color: var(--bg-console);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.2rem 1rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.05);
}

.social-icon {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--neon-cyan);
}

.social-card:hover .social-icon {
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green-dim);
}

.social-name {
    font-family: var(--font-mono);
    font-weight: bold;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.social-desc {
    color: var(--text-muted);
    font-size: 0.7rem;
    line-height: 1.3;
}

/* Accessibility hidden element helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Footer --- */
.studio-footer {
    border-top: 1px solid var(--border-color);
    background-color: #040609;
    padding: 2.5rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-system-info {
    color: var(--text-comment);
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 992px) {
    .hero-section .section-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-console {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-text-content {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .game-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .section-container {
        padding: 3.5rem 1.2rem;
    }
    
    .hero-heading {
        font-size: 2.4rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}
