:root {
    --bg: #080b12;
    --card: rgba(255,255,255,0.065);
    --text: #f4f7fb;
    --muted: #a9b4c7;
    --accent: #4da3ff;
    --accent-2: #8b5cf6;
    --warning: #ffd166;
    --border: rgba(255,255,255,0.11);
    --shadow: 0 20px 60px rgba(0,0,0,0.36);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(77,163,255,0.18), transparent 35%),
        radial-gradient(circle at top right, rgba(139,92,246,0.18), transparent 30%),
        var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,11,18,0.84);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.navbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 28px rgba(77,163,255,0.36);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #dbeafe;
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid rgba(77,163,255,0.35);
    background: linear-gradient(135deg, rgba(77,163,255,0.14), rgba(139,92,246,0.14));
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-links a {
    display: inline-flex;
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--muted);
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: rgba(255,255,255,0.08);
}

.hero {
    min-height: 610px;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,11,18,0.96), rgba(8,11,18,0.70), rgba(8,11,18,0.96)),
        url("../images/banner.jpg") center/cover no-repeat;
    opacity: 0.94;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    padding: 90px 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

.hero h1,
.page-hero h1,
.game-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.95;
    letter-spacing: -2px;
}

.hero p,
.page-hero p,
.game-hero p {
    color: var(--muted);
    font-size: 19px;
    max-width: 780px;
}

.hero-actions, .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn, .filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.08);
    color: var(--text);
    font-weight: 700;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn.primary,
.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(77,163,255,0.24);
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.section { padding: 72px 0; }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -1px;
}

.section-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 700px;
}

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(77,163,255,0.38);
}

.card-image {
    height: 230px;
    background: rgba(255,255,255,0.05);
    overflow: hidden;
}

.card-image.tall { height: 300px; }

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body { padding: 22px; }
.card h3 { margin: 0 0 10px; font-size: 24px; }
.card p { color: var(--muted); margin: 0 0 16px; }

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}

.rating {
    color: var(--warning);
    font-weight: 800;
    margin: 10px 0;
}

.page-hero {
    padding: 78px 0 38px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 20% 0%, rgba(77,163,255,0.18), transparent 35%),
        radial-gradient(circle at 90% 10%, rgba(139,92,246,0.18), transparent 32%);
}

.spec-list, .pros-cons, .review-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
}

.spec-list li, .pros-cons li, .review-list li {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,0.045);
    color: var(--muted);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
}

.compare-table th, .compare-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.compare-table th { background: rgba(255,255,255,0.08); }

.game-hero {
    padding: 84px 0 60px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(90deg, rgba(8,11,18,0.96), rgba(8,11,18,0.70)),
        radial-gradient(circle at 80% 20%, rgba(77,163,255,0.22), transparent 35%);
}

.game-layout, .review-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 26px;
    align-items: start;
}

.review-article {
    padding: 30px;
}

.review-article h2 { font-size: 34px; margin: 10px 0 14px; }
.review-article h3 { font-size: 24px; margin: 28px 0 10px; }
.review-article p { color: var(--muted); }

.side-box {
    position: sticky;
    top: 96px;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(77,163,255,0.18), rgba(139,92,246,0.18));
    border: 1px solid var(--border);
}

.score {
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
}

.score-grid { display: grid; gap: 10px; margin-top: 16px; }

.score-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.login-page {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    padding: 70px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(77,163,255,0.22), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(139,92,246,0.24), transparent 34%);
}

.login-card {
    width: min(520px, 100%);
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255,255,255,0.075);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.login-card h1 { margin: 0 0 10px; font-size: 38px; }
.login-card p { color: var(--muted); }

.form-group {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.form-group label { color: var(--muted); }

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(0,0,0,0.22);
    color: var(--text);
    outline: none;
}

.login-message {
    display: none;
    margin-top: 18px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,92,122,0.42);
    background: rgba(255,92,122,0.12);
    color: #ffd6de;
}

.footer {
    padding: 42px 0;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.22);
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.notice {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.22);
    color: var(--muted);
}

@media (max-width: 930px) {
    .navbar-inner, .footer-inner, .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .grid-2, .grid-3, .grid-4, .game-layout, .review-layout {
        grid-template-columns: 1fr;
    }

    .hero { min-height: 540px; }
    .card-image, .card-image.tall { height: 230px; }
    .side-box { position: static; }
}

body.light-theme {
    --bg: #f4f7fb;
    --card: rgba(255,255,255,0.86);
    --text: #101827;
    --muted: #526174;
    --accent: #2563eb;
    --accent-2: #7c3aed;
    --warning: #b7791f;
    --border: rgba(15,23,42,0.13);
    --shadow: 0 18px 50px rgba(15,23,42,0.13);
}

body.light-theme .navbar {
    background: rgba(244,247,251,0.88);
}

body.light-theme .hero::before {
    background:
        linear-gradient(90deg, rgba(244,247,251,0.96), rgba(244,247,251,0.68), rgba(244,247,251,0.96)),
        url("../images/banner.jpg") center/cover no-repeat;
}

body.light-theme .game-hero {
    background:
        linear-gradient(90deg, rgba(244,247,251,0.96), rgba(244,247,251,0.72)),
        radial-gradient(circle at 80% 20%, rgba(37,99,235,0.14), transparent 35%);
}

.site-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.theme-toggle {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.08);
    color: var(--text);
    padding: 9px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: 0.25s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
}

.language-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.07);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.language-badge small {
    color: var(--muted);
    font-weight: 600;
    font-size: 11px;
}

body.light-theme .theme-toggle,
body.light-theme .language-badge,
body.light-theme .btn,
body.light-theme .filter-btn {
    background: rgba(255,255,255,0.72);
}


.news-list {
    display: grid;
    gap: 18px;
}

.news-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: center;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(77,163,255,0.38);
}

.news-thumb {
    display: block;
    height: 145px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.news-card:hover .news-thumb img {
    transform: scale(1.06);
}

.news-content h3 {
    margin: 8px 0 8px;
    font-size: 24px;
    line-height: 1.15;
}

.news-content p {
    margin: 0 0 12px;
    color: var(--muted);
}

.news-link {
    color: var(--accent);
    font-weight: 800;
}

@media (max-width: 760px) {
    .news-card {
        grid-template-columns: 1fr;
    }

    .news-thumb {
        height: 180px;
    }
}


.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.review-grid-consoles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(77,163,255,0.38);
}

.review-cover {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
}

.review-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.review-card:hover .review-cover img {
    transform: scale(1.06);
}

.review-score {
    position: absolute;
    right: 14px;
    top: 14px;
    min-width: 58px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #101827;
    background: var(--warning);
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(0,0,0,0.28);
}

.review-card-body {
    padding: 20px;
}

.review-card-body h3 {
    margin: 8px 0 8px;
    font-size: 24px;
    line-height: 1.15;
}

.review-card-body p {
    color: var(--muted);
    margin: 0 0 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.08);
}

@media (max-width: 930px) {
    .review-grid,
    .review-grid-consoles,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .review-cover {
        height: 220px;
    }
}


.logo-image-mark {
    overflow: hidden;
    background: rgba(255,255,255,0.06);
}

.logo-image-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-logo {
    width: min(300px, 82vw);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin: 0 0 24px;
    overflow: hidden;
}

.release-logo img {
    width: 100%;
    height: auto;
}


/* Console review upgrades */
.console-review .spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
}

.console-review .spec-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.console-review .spec-table tr:last-child td {
    border-bottom: none;
}

.console-review .spec-table td:first-child {
    width: 34%;
    color: var(--text);
    font-weight: 800;
    background: rgba(255,255,255,0.035);
}

.console-main-image,
.console-interface-image {
    height: 360px;
}

.console-controller-image {
    height: 300px;
    background: rgba(255,255,255,0.04);
}

.console-controller-image img,
.console-interface-image img,
.console-main-image img {
    object-fit: cover;
}

.table-scroll {
    overflow-x: auto;
    border-radius: var(--radius);
}

.wide-compare {
    min-width: 820px;
}

.wide-compare td:first-child,
.wide-compare th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: rgba(15,21,34,0.96);
}

body.light-theme .wide-compare td:first-child,
body.light-theme .wide-compare th:first-child {
    background: rgba(244,247,251,0.96);
}

.wide-compare .active-console {
    background: linear-gradient(135deg, rgba(77,163,255,0.12), rgba(139,92,246,0.12));
    color: var(--text);
    font-weight: 900;
}

.console-side-box h3 {
    margin-top: 22px;
}

@media (max-width: 900px) {
    .console-main-image,
    .console-interface-image,
    .console-controller-image {
        height: 230px;
    }

    .console-review .spec-table td:first-child {
        width: 42%;
    }
}


/* ===== Console review redesign v2 ===== */
.console-hero-v2 {
    padding: 56px 0 22px;
}

.console-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 360px;
    gap: 24px;
    align-items: stretch;
}

.console-hero-copy {
    padding: 28px 4px 10px;
}

.console-hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 0.95;
    letter-spacing: -2px;
}

.console-hero-copy p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 850px;
}

.console-fact-card {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
        rgba(255,255,255,0.03);
    box-shadow: var(--shadow);
    padding: 22px;
    position: sticky;
    top: 96px;
    height: fit-content;
}

.console-fact-top {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.console-score {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    box-shadow: 0 14px 38px rgba(77,163,255,0.24);
}

.console-score-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--muted);
    margin-bottom: 6px;
}

.console-score-stars {
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--warning);
}

.console-mini-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;
}

.console-mini-list li {
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    font-weight: 700;
}

.console-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.console-meta-grid div {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.console-meta-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.console-review-shell {
    display: block;
}

.console-article-main {
    display: grid;
    gap: 22px;
}

.console-section-card {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
        rgba(255,255,255,0.02);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.console-section-content,
.console-section-head {
    padding: 22px 24px 0;
}

.console-section-card h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -0.8px;
}

.console-section-card p {
    color: var(--muted);
}

.console-image-hero {
    height: 410px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.console-image-hero img,
.console-media-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.console-section-card .console-section-content {
    padding-bottom: 24px;
}

.console-spec-wrap {
    padding: 18px 24px 24px;
}

.console-spec-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.console-spec-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.console-spec-table tr:last-child td {
    border-bottom: none;
}

.console-spec-table td:first-child {
    width: 34%;
    font-weight: 800;
    color: var(--text);
    background: rgba(255,255,255,0.04);
}

.console-media-block {
    margin: 18px 24px 24px;
    height: 290px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
}

.console-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.console-points {
    list-style: none;
    padding: 0 24px 24px;
    margin: 0;
    display: grid;
    gap: 12px;
}

.console-points li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
}

.console-points.positive li span:first-child {
    color: #4ade80;
    font-weight: 900;
}

.console-points.negative li span:first-child {
    color: #f87171;
    font-weight: 900;
}

.console-compare-scroll {
    overflow-x: auto;
    padding: 18px 24px 24px;
}

.console-compare-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.console-compare-table th,
.console-compare-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.console-compare-table th:first-child,
.console-compare-table td:first-child {
    text-align: left;
    font-weight: 800;
    position: sticky;
    left: 0;
    background: rgba(15,22,36,0.98);
    z-index: 1;
}

body.light-theme .console-compare-table th:first-child,
body.light-theme .console-compare-table td:first-child {
    background: rgba(248,250,252,0.98);
}

.console-compare-table thead th {
    color: var(--text);
    background: rgba(255,255,255,0.04);
}

.console-compare-table .active-col {
    background: linear-gradient(135deg, rgba(77,163,255,0.12), rgba(124,58,237,0.10));
    font-weight: 900;
}

@media (max-width: 980px) {
    .console-hero-grid,
    .console-split-grid {
        grid-template-columns: 1fr;
    }

    .console-fact-card {
        position: static;
    }

    .console-image-hero {
        height: 280px;
    }

    .console-media-block {
        height: 220px;
    }

    .console-spec-table td:first-child {
        width: 42%;
    }
}


/* ===== Console pages aligned to visual mockup ===== */
.mock-console-page {
    padding: 12px 0 40px;
}

.console-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    margin: 6px 0 18px;
}

.console-breadcrumbs a {
    color: var(--muted);
}

.mock-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.25fr 300px;
    gap: 18px;
    align-items: start;
}

.mock-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.mock-title-row h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.95;
    letter-spacing: -1.6px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    font-size: 13px;
    font-weight: 800;
}

.tag-chip.accent {
    background: linear-gradient(135deg, rgba(77,163,255,0.18), rgba(124,58,237,0.18));
    color: #dbeafe;
}

.mock-summary {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
    max-width: 620px;
    margin-bottom: 18px;
}

.mock-rating-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 620px;
}

.mock-score-card,
.mock-feature-card,
.mock-side-info,
.mock-panel {
    border-radius: 18px;
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.02);
    box-shadow: var(--shadow);
}

.mock-score-card,
.mock-feature-card {
    padding: 18px;
}

.mock-score-card .label {
    color: var(--text);
    font-weight: 800;
    margin-bottom: 12px;
}

.score-line {
    display: flex;
    align-items: end;
    gap: 6px;
    margin-bottom: 10px;
}

.score-big {
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    color: #8b5cf6;
}

.score-small {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.stars {
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 8px;
}

.muted-text {
    color: var(--muted);
    font-size: 14px;
}

.mock-feature-card ul,
.bundle-list,
.point-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mock-feature-card li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    color: var(--muted);
}

.mini-icon {
    color: var(--accent);
    font-size: 12px;
    line-height: 1.8;
}

.mock-main-image,
.mock-panel,
.mock-side-info {
    overflow: hidden;
}

.mock-main-image {
    height: 375px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    box-shadow: var(--shadow);
}

.mock-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mock-side-info {
    padding: 18px;
}

.mock-side-info h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.fact-list {
    display: grid;
    gap: 10px;
}

.fact-list div {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fact-list div:last-child {
    border-bottom: none;
}

.fact-list span {
    color: var(--muted);
    font-size: 14px;
}

.fact-list strong {
    text-align: right;
}

.side-action-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.side-action {
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    font-weight: 800;
}

.side-action.primary {
    background: linear-gradient(135deg, var(--accent), #7c3aed);
    color: #fff;
    border-color: transparent;
}

.mock-tab-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 14px;
    margin-top: 10px;
    border-bottom: 1px solid var(--border);
}

.mock-tab-bar a {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--text);
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    font-weight: 700;
}

.mock-tab-bar a.active,
.mock-tab-bar a:hover {
    border-color: rgba(124,58,237,0.48);
    box-shadow: inset 0 -2px 0 rgba(124,58,237,0.8);
}

.mock-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 18px;
    padding-top: 16px;
}

.mock-panel {
    padding: 18px;
}

.mock-panel h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.mock-panel p {
    color: var(--muted);
    margin: 0 0 14px;
}

.interface-feature {
    grid-column: 1 / 2;
    grid-row: span 2;
}

.interface-large-shot {
    height: 270px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.interface-large-shot img,
.small-media img,
.controller-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.panel-caption {
    font-weight: 800;
    margin-bottom: 10px;
}

.small-media {
    height: 156px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
}

.specs-panel {
    grid-column: 1 / 2;
}

.mock-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.mock-specs-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mock-specs-table td:first-child {
    width: 45%;
    color: var(--muted);
}

.controller-panel,
.bundle-panel {
    grid-column: span 1;
}

.controller-media {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    margin-bottom: 12px;
}

.bundle-list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    padding: 8px 0;
}

.bundle-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #8b5cf6;
    margin-top: 8px;
    box-shadow: 0 0 0 4px rgba(139,92,246,0.16);
}

.proscons-panel,
.games-panel,
.compare-panel {
    grid-column: 1 / -1;
}

.proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.point-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    padding: 9px 0;
}

.point-list.positive li span:first-child {
    color: #4ade80;
    font-weight: 900;
}

.point-list.negative li span:first-child {
    color: #f87171;
    font-weight: 900;
}

.game-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.game-chip {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    font-weight: 700;
}

.mock-compare-wrap {
    overflow-x: auto;
}

.mock-compare-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.mock-compare-table th,
.mock-compare-table td {
    padding: 12px 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.mock-compare-table th:first-child,
.mock-compare-table td:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    background: rgba(10,16,28,0.98);
    z-index: 1;
    font-weight: 800;
}

body.light-theme .mock-compare-table th:first-child,
body.light-theme .mock-compare-table td:first-child {
    background: rgba(248,250,252,0.98);
}

.highlight-col {
    outline: 1px solid rgba(139,92,246,0.55);
    background: linear-gradient(135deg, rgba(77,163,255,0.08), rgba(139,92,246,0.08));
    font-weight: 900;
}

@media (max-width: 1180px) {
    .mock-hero-grid {
        grid-template-columns: 1fr;
    }

    .mock-main-image {
        order: 2;
    }

    .mock-side-info {
        order: 3;
    }

    .mock-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .interface-feature,
    .proscons-panel,
    .games-panel,
    .compare-panel {
        grid-column: 1 / -1;
    }

    .specs-panel {
        grid-column: 1 / 2;
    }
}

@media (max-width: 760px) {
    .mock-rating-panels,
    .mock-content-grid,
    .proscons-grid {
        grid-template-columns: 1fr;
    }

    .mock-main-image {
        height: 240px;
    }

    .interface-large-shot,
    .small-media,
    .controller-media {
        height: 200px;
    }

    .fact-list div {
        grid-template-columns: 1fr;
    }

    .fact-list strong {
        text-align: left;
    }
}


/* ===== Mockup refinement pass ===== */
.mock-console-page .container {
    width: min(1320px, calc(100% - 28px));
}

.mock-console-page {
    padding-top: 6px;
}

.mock-hero-grid {
    gap: 20px;
}

.mock-main-image,
.mock-side-info,
.mock-score-card,
.mock-feature-card,
.mock-panel {
    border-radius: 16px;
    border-color: rgba(255,255,255,0.09);
    box-shadow: 0 22px 50px rgba(0,0,0,0.24);
}

.mock-main-image {
    height: 330px;
}

.mock-summary {
    max-width: 560px;
    margin-bottom: 16px;
}

.mock-score-card,
.mock-feature-card {
    min-height: 136px;
}

.mock-tab-bar {
    gap: 8px;
    padding-top: 18px;
    padding-bottom: 12px;
}

.mock-tab-bar a {
    padding: 10px 12px;
    background: transparent;
    border-color: transparent;
    position: relative;
}

.mock-tab-bar a.active {
    background: rgba(124,58,237,0.10);
}

.mock-tab-bar a.active::after,
.mock-tab-bar a:hover::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -9px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}

.mock-content-grid {
    gap: 14px;
}

.mock-panel {
    padding: 16px;
}

.interface-large-shot {
    height: 190px;
}

.small-media {
    height: 110px;
}

.controller-media {
    height: 180px;
}

.mock-specs-table td {
    padding: 7px 0;
    font-size: 14px;
}

.fact-list div {
    padding: 5px 0;
}

.side-action {
    border-radius: 10px;
}

.game-chip {
    padding: 9px 12px;
    font-size: 14px;
}

@media (max-width: 760px) {
    .mock-main-image {
        height: 220px;
    }
    .interface-large-shot,
    .small-media,
    .controller-media {
        height: 180px;
    }
}


/* Interface info cards instead of unreadable mini screenshots */
.info-card-panel {
    min-height: 180px;
}

.info-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(77,163,255,0.18), rgba(139,92,246,0.18));
    border: 1px solid rgba(139,92,246,0.35);
    color: #dbeafe;
    font-size: 22px;
    font-weight: 900;
}

.info-card-panel h2 {
    margin-bottom: 8px;
}

.info-card-panel p {
    margin: 0;
    line-height: 1.6;
}
