/* ============================================
   Sprunki Pyramixed — Cloned from Escape Road City template
   Tailwind-like design system, dark mode default
   Font: Rajdhani, Primary: Cyan, Secondary: Purple
   ============================================ */

/* ── CSS Variables (matching original shadcn/Tailwind theme) ── */
/* Light theme (default :root) */
:root {
    --background: 187 25% 97%;
    --foreground: 200 5% 20%;
    --card: 0 0% 100%;
    --card-foreground: 200 5% 20%;
    --popover: 0 0% 100%;
    --popover-foreground: 200 5% 20%;
    --primary: 187 95% 42%;
    --primary-foreground: 0 0% 100%;
    --secondary: 262 83% 58%;
    --secondary-foreground: 0 0% 100%;
    --muted: 200 16% 85%;
    --muted-foreground: 200 5% 43.14%;
    --accent: 187 35% 88%;
    --accent-foreground: 187 95% 42%;
    --destructive: 0 84.24% 60.2%;
    --destructive-foreground: 0 0% 100%;
    --border: 200 5% 83.14%;
    --input: 200 5% 83.14%;
    --ring: 187 95% 42%;
    --radius: 0.5rem;
    --font-sans: 'Rajdhani', sans-serif;
    --font-serif: 'Merriweather', serif;
    --font-mono: 'Space Mono', monospace;
}

/* Dark theme overrides */
.dark {
    --background: 210 10% 12%;
    --foreground: 210 15% 88%;
    --card: 210 10% 20%;
    --card-foreground: 210 15% 88%;
    --popover: 210 10% 20%;
    --popover-foreground: 210 15% 88%;
    --primary: 187 95% 42%;
    --primary-foreground: 0 0% 100%;
    --secondary: 262 83% 58%;
    --secondary-foreground: 200 5% 89.8%;
    --muted: 200 5% 26.67%;
    --muted-foreground: 210 10% 55%;
    --accent: 210 10% 24%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.24% 60.2%;
    --destructive-foreground: 0 0% 100%;
    --border: 210 10% 24%;
    --input: 210 10% 24%;
    --ring: 187 95% 42%;
}

/* ── Utility: convert HSL vars to usable colors ── */
body {
    --color-bg: hsl(var(--background));
    --color-bg-card: hsl(var(--card));
    --color-primary: hsl(var(--primary));
    --color-primary-hover: hsl(187, 95%, 36%);
    --color-secondary: hsl(var(--secondary));
    --color-muted: hsl(var(--muted));
    --color-muted-fg: hsl(var(--muted-foreground));
    --color-border: hsl(var(--border));
    --color-text: hsl(var(--foreground));
    --color-text-dim: hsl(var(--muted-foreground));
    --color-destructive: hsl(var(--destructive));
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--color-primary-hover); }
ul, ol { list-style: none; }
kbd {
    display: inline-block; padding: 2px 6px; font-family: var(--font-mono); font-size: 0.8em;
    font-weight: 600; color: var(--color-text); background: var(--color-muted);
    border: 1px solid var(--color-border); border-radius: 4px;
    margin: 0 2px;
}

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.font-sans { font-family: var(--font-sans); }
.antialiased { -webkit-font-smoothing: antialiased; }
.min-h-screen { min-height: 100vh; }
.bg-background { background-color: var(--color-bg); }
.text-foreground { color: var(--color-text); }

/* ── HEADER ── */
.header {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
}
.header-inner {
    display: flex; align-items: center;
    padding: 8px 12px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 640px) { .header-inner { padding: 8px 16px; } }
@media (min-width: 1024px) { .header-inner { padding: 8px 24px; } }

.header-logo { flex-shrink: 0; }
.header-logo-link {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.25rem; font-weight: 700; color: #fff;
}
.header-logo-link:hover { color: #fff; opacity: 0.9; }
.header-logo-img { height: 32px; width: auto; object-fit: contain; }
.header-logo-text { display: none; }
@media (min-width: 640px) { .header-logo-text { display: inline; } }

.header-nav-center { flex: 1; display: flex; justify-content: center; }
.header-nav { display: none; gap: 8px; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.header-nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85);
    transition: all 0.2s; white-space: nowrap;
}
.header-nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.header-nav-link.active { background: rgba(255,255,255,0.25); color: #fff; font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.header-icon-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 8px; border-radius: 50%;
    background: none; border: none; color: #fff; cursor: pointer;
    transition: background 0.2s;
}
.header-icon-btn:hover { background: rgba(255,255,255,0.1); }

.header-lang-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 6px;
    background: rgba(0,0,0,0.15); border: none; color: #fff;
    font-family: var(--font-sans); font-size: 0.85rem; cursor: pointer;
    transition: background 0.2s;
}
.header-lang-btn:hover { background: rgba(0,0,0,0.25); }
.lang-label { display: none; }
@media (min-width: 768px) { .lang-label { display: inline; } }

.header-hamburger {
    display: flex; align-items: center; justify-content: center;
    padding: 8px; border-radius: 8px;
    background: none; border: none; color: #fff; cursor: pointer;
    transition: background 0.2s;
}
.header-hamburger:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 1024px) { .header-hamburger { display: none; } }

/* Mobile nav */
.mobile-nav {
    display: none; flex-direction: column;
    background: hsl(187, 80%, 32%); padding: 8px 16px; gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
    display: block; padding: 10px 12px; border-radius: 6px;
    font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85);
    transition: background 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(255,255,255,0.2); color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    background: var(--color-muted); border-bottom: 1px solid var(--color-border);
    padding: 8px 0; display: none;
}
@media (min-width: 768px) { .breadcrumb-bar { display: block; } }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--color-muted-fg); overflow: hidden; }
.breadcrumb-link { color: var(--color-muted-fg); flex-shrink: 0; white-space: nowrap; }
.breadcrumb-link:hover { color: var(--color-primary); }
.breadcrumb-chevron { flex-shrink: 0; }
.breadcrumb-current { font-weight: 700; color: var(--color-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── HERO SECTION ── */
.hero-section { margin-bottom: 40px; }
.hero-flex { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 1024px) { .hero-flex { flex-direction: row; } }
.hero-main { width: 100%; }
@media (min-width: 1024px) { .hero-main { width: 75%; } }

/* ── GAME CARD ── */
.game-card {
    display: flex; flex-direction: column;
    border: 1px solid var(--color-primary); border-radius: 12px;
    margin-bottom: 24px;
}
.game-preview {
    width: 100%; height: 500px;
    position: relative; overflow: hidden;
    border-radius: 12px 12px 0 0;
}
@media (min-width: 768px) { .game-preview { height: 600px; } }

.game-preview-overlay {
    position: absolute; inset: 0; z-index: 20;
    display: flex; align-items: center; justify-content: center;
    background: hsla(210, 10%, 12%, 0.9);
    backdrop-filter: blur(12px);
}

.preview-content {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; padding: 0 16px; text-align: center;
}
@media (min-width: 768px) { .preview-content { gap: 32px; } }

.preview-image-wrap { display: flex; justify-content: center; cursor: pointer; }
.preview-image-inner {
    position: relative; display: inline-block;
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(5, 180, 211, 0.7);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    width: 160px; height: 160px;
}
@media (min-width: 768px) { .preview-image-inner { width: 280px; height: 280px; } }
.preview-image-inner:hover .game-logo-placeholder { transform: scale(1.1); }
.preview-image-inner:hover .game-cover-img { transform: scale(1.05); }
.game-cover-img { transition: transform 0.3s; }

.game-logo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    font-family: var(--font-sans); font-size: 3rem; font-weight: 700; color: #fff;
    transition: transform 0.3s;
}
@media (min-width: 768px) { .game-logo-placeholder { font-size: 5rem; } }

.preview-image-glow {
    position: absolute; inset: 0; border-radius: 12px;
    background: hsla(187, 95%, 42%, 0.7);
    filter: blur(24px); z-index: -1;
    transition: background 0.3s;
}
.preview-image-glow-secondary {
    position: absolute; inset: 0; border-radius: 12px;
    background: hsla(262, 83%, 58%, 0.5);
    filter: blur(40px); z-index: -2;
    transform: translateY(8px) translateX(8px);
    transition: background 0.3s;
}

.preview-title {
    font-size: 1.5rem; font-weight: 700; color: var(--color-text);
    margin-bottom: 4px; line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .preview-title { font-size: 3rem; } }
.preview-tagline {
    font-size: 0.9rem; color: var(--color-muted-fg);
    margin-bottom: 16px;
}
@media (min-width: 768px) { .preview-tagline { font-size: 1.1rem; } }

/* Play Button */
.play-btn {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 9999px;
    font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700;
    color: #fff; background: none; border: none; cursor: pointer;
    transition: transform 0.3s;
}
@media (min-width: 768px) { .play-btn { padding: 10px 24px; font-size: 1.25rem; gap: 12px; } }
.play-btn:hover { transform: scale(1.05); }
.play-btn-bg {
    position: absolute; inset: 0; border-radius: 9999px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    box-shadow: 0 4px 12px rgba(5, 180, 211, 0.3);
    transition: opacity 0.3s;
}
.play-btn:hover .play-btn-bg { opacity: 0.9; }
.play-btn-icon {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.2); backdrop-filter: blur(4px);
    transition: background 0.2s;
}
@media (min-width: 768px) { .play-btn-icon { width: 48px; height: 48px; } }
.play-btn:hover .play-btn-icon { background: rgba(0,0,0,0.35); }
.play-btn-text { position: relative; }

/* Game iframe */
.game-iframe-area {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1;
}
.game-iframe-area iframe {
    width: 100%; height: 100%; border: none;
    display: block;
}

/* ── GAME INFO BAR ── */
.game-info-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px; flex-wrap: wrap; gap: 12px;
    background: var(--color-bg-card);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.game-title { font-size: 1.25rem; font-weight: 700; color: var(--color-text); }
.game-info-right { display: flex; gap: 4px; }
.game-action-btn {
    display: flex; align-items: center; justify-content: center;
    padding: 8px; border-radius: 50%;
    background: none; border: none; color: var(--color-primary); cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.game-action-btn:hover { background: rgba(5, 180, 211, 0.1); box-shadow: 0 2px 6px rgba(0,0,0,0.2); }

/* ── SECTIONS ── */
.section-block { margin-top: 32px; margin-bottom: 32px; }
.section-heading {
    font-size: 1.25rem; font-weight: 700; color: var(--color-text);
    margin-bottom: 16px;
}

/* ── CAROUSEL ── */
.game-carousel { position: relative; }
.carousel-track {
    display: flex; flex-wrap: wrap; gap: 16px;
    padding: 4px 0 0;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-card {
    flex: 0 0 180px;
    border-radius: 12px; overflow: hidden;
    background: var(--color-bg-card);
    transition: all 0.3s ease;
    cursor: pointer;
}
@media (max-width: 768px) { .carousel-card { flex: 0 0 180px; } }
@media (max-width: 480px) { .carousel-card { flex: 0 0 150px; } }
.carousel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.carousel-card-link { display: block; text-decoration: none; color: inherit; }
.carousel-card-link:hover { color: inherit; }
.carousel-card-img-wrap {
    position: relative; width: 100%; padding-top: 70%; overflow: hidden;
    background: var(--color-bg-card);
    transition: transform 0.4s ease;
}
.carousel-card-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.carousel-card:hover .carousel-card-img-wrap { transform: scale(1.04); }
.carousel-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 16px 10px 8px;
    opacity: 0; transform: translateY(8px);
    transition: all 0.3s ease;
}
.carousel-card:hover .carousel-card-overlay {
    opacity: 1; transform: translateY(0);
}
.carousel-card-title-overlay {
    color: #fff; font-size: 0.85rem; font-weight: 600;
    display: block; text-align: center; text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.carousel-btns { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 8px; }
.carousel-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--color-bg-card); border: 1px solid var(--color-border);
    color: var(--color-text); font-size: 1rem; cursor: pointer; z-index: 5;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.carousel-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
@media (max-width: 640px) { .carousel-btns { display: none; } }

/* ── GUIDE ARTICLE ── */
.guide-article { margin-top: 32px; color: var(--color-text); }
.guide-title { font-size: 1.4rem; font-weight: 700; color: var(--color-text); line-height: 1.3; margin-bottom: 16px; }
@media (min-width: 768px) { .guide-title { font-size: 1.8rem; } }
.guide-divider { border: none; height: 1px; background: var(--color-border); margin: 24px 0; }
.guide-intro { font-size: 1rem; color: var(--color-muted-fg); line-height: 1.7; margin-bottom: 24px; }
/* Table of Contents */
.toc { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 10px; padding: 18px 22px; margin: 20px 0 28px; }
.toc h4 { font-size: 0.9rem; font-weight: 700; color: var(--color-text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.toc ul { display: flex; flex-direction: column; gap: 6px; padding: 0; }
.toc li { list-style: none; }
.toc a { font-size: 0.9rem; color: var(--color-primary); border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.toc a:hover { border-bottom-color: var(--color-primary); }
.guide-h2 { font-size: 1.25rem; font-weight: 700; color: var(--color-text); margin: 32px 0 12px; }
.guide-h3 { font-size: 1.1rem; font-weight: 700; color: var(--color-text); margin: 24px 0 10px; }
.guide-h4 { font-size: 1rem; font-weight: 700; color: var(--color-text); margin: 16px 0 8px; }
.guide-p { font-size: 0.95rem; color: var(--color-muted-fg); line-height: 1.7; margin-bottom: 16px; }
.guide-ol { padding-left: 24px; list-style: decimal; margin-bottom: 16px; }
.guide-ol li { margin-bottom: 10px; padding-left: 4px; line-height: 1.7; color: var(--color-muted-fg); }
.guide-ol li strong { color: var(--color-text); }
.guide-ul { padding-left: 24px; list-style: disc; margin-bottom: 16px; }
.guide-ul li { margin-bottom: 10px; line-height: 1.7; color: var(--color-muted-fg); }
.guide-ul li strong { color: var(--color-text); }
.guide-link { color: var(--color-primary); text-decoration: underline; }
.guide-link:hover { color: var(--color-primary-hover); }

/* ── TABLES ── */
.table-wrap { overflow-x: auto; margin: 20px 0; border-radius: 8px; border: 1px solid var(--color-border); }
.guide-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.guide-table thead { background: hsl(210, 10%, 16%); }
.guide-table th {
    padding: 12px 14px; text-align: left; font-weight: 700; color: var(--color-text);
    font-size: 0.85rem; text-transform: none; white-space: nowrap;
}
.guide-table td {
    padding: 12px 14px; border-top: 1px solid var(--color-border);
    color: var(--color-muted-fg); vertical-align: top;
}
.guide-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.guide-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }

/* ── COMMENTS ── */
.comments-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.comments-heading { font-size: 1.2rem; font-weight: 700; color: var(--color-text); margin-bottom: 16px; }
.comments-count { color: var(--color-muted-fg); font-weight: 400; }
.star-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.star { font-size: 1.8rem; color: #f1c40f; cursor: pointer; transition: transform 0.15s; user-select: none; padding: 4px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.star:hover { transform: scale(1.2); }
.star.inactive { color: var(--color-muted); }

/* Guide tabs — mobile touch targets */
.guide-tab { min-height: 44px; display: inline-flex; align-items: center; white-space: nowrap; }
@media (max-width: 480px) {
  .guide-tab { padding: 8px 12px; font-size: 0.82rem; }
}
.rating-value { font-weight: 700; font-size: 1.1rem; color: #f1c40f; margin-left: 8px; }
.comment-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.comment-input, .comment-textarea {
    width: 100%; padding: 10px 14px; font-family: var(--font-sans); font-size: 0.95rem;
    color: var(--color-text); background: var(--color-bg-card);
    border: 1px solid var(--color-border); border-radius: 8px;
    transition: border-color 0.2s; resize: vertical;
}
.comment-input:focus, .comment-textarea:focus { outline: none; border-color: var(--color-primary); }
.comment-input::placeholder, .comment-textarea::placeholder { color: var(--color-muted-fg); }
.comment-submit {
    align-self: flex-start; padding: 10px 24px;
    font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
    color: #fff; background: var(--color-primary); border: none;
    border-radius: 8px; cursor: pointer; transition: all 0.2s;
}
.comment-submit:hover { background: var(--color-primary-hover); }

/* ── SIDEBAR ── */
.sidebar { width: 100%; display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1024px) { .sidebar { width: 25%; } }
.sidebar-widget {
    background: var(--color-bg-card); border: 1px solid var(--color-border);
    border-radius: 10px; padding: 20px;
}
.sidebar-widget-title {
    font-size: 1rem; font-weight: 700; color: var(--color-text);
    margin-bottom: 12px;
}
.sidebar-game-list { display: flex; flex-direction: column; gap: 6px; }
.sidebar-game-item {
    display: flex; align-items: center; gap: 10px; padding: 8px;
    border-radius: 8px; transition: background 0.15s; text-decoration: none;
}
.sidebar-game-item:hover { background: rgba(255,255,255,0.04); }
.sidebar-game-thumb {
    width: 80px; height: 60px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; overflow: hidden;
    background: var(--color-bg-card);
}
.sidebar-game-info { display: flex; flex-direction: column; min-width: 0; }
.sidebar-game-name {
    font-size: 0.9rem; font-weight: 600; color: var(--color-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sidebar-game-players { font-size: 0.78rem; color: var(--color-muted-fg); }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
    padding: 5px 12px; font-size: 0.8rem; font-weight: 500;
    color: var(--color-muted-fg); background: hsl(210, 10%, 16%);
    border: 1px solid var(--color-border); border-radius: 9999px;
    transition: all 0.15s;
}
.sidebar-tag:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* ── FOOTER ── */
.footer {
    background: var(--color-primary);
    color: #fff;
    padding: 32px 0 0;
    margin-top: 48px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-col { min-width: 0; }
.footer-brand-row {
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.footer-logo-svg { height: 28px; width: auto; flex-shrink: 0; }
.footer-site-name { font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-about {
    font-size: 0.875rem; line-height: 1.6;
    color: rgba(255,255,255,0.8); margin-bottom: 0;
}
.footer-heading {
    font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: #fff; }
.footer-contact-row {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.8); margin-bottom: 12px; font-size: 0.9rem;
}
.footer-contact-row a { color: rgba(255,255,255,0.8); }
.footer-contact-row a:hover { color: #fff; }
.footer-mail-icon { flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social-link {
    color: rgba(255,255,255,0.7); transition: color 0.15s;
    display: flex; align-items: center; justify-content: center;
}
.footer-social-link:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 12px 0;
}
.footer-bottom-inner {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    text-align: center;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom-inner p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 0; }
.footer-bottom-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.footer-bottom-links a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
    .hero-main { width: 100%; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .sidebar { grid-template-columns: 1fr; }
    .game-preview { height: 500px; }
    .preview-title { font-size: 1.3rem; }
    .preview-tagline { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .game-preview { height: 400px; }
    .preview-image-inner { width: 120px; height: 120px; }
    .game-logo-placeholder { font-size: 2rem; }
}
