:root {
    --jv-bg: #030814;
    --jv-panel: #061426;
    --jv-panel-strong: #081b33;
    --jv-cyan: #00e5ff;
    --jv-blue: #4f8cff;
    --jv-magenta: #ff4fd8;
    --jv-purple: #8a4cff;
    --jv-yellow: #ffe14a;
    --jv-text: #f5f7ff;
    --jv-muted: #a8b4cc;
    --jv-line: rgba(0, 229, 255, .35);
    --jv-radius: 8px;
    --jv-font-arcade: "Quantico", sans-serif;
    --jv-font-pixel: "Quantico", sans-serif;
    --jv-font-body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    color: var(--jv-text);
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        var(--jv-bg) !important;
    background-size: 18px 18px !important;
    font-family: var(--jv-font-body);
}

/* ── Archive / Search ───────────────────────────────────── */

.jv-archive-shell {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 0 64px;
}

.jv-archive-header {
    padding: 24px 28px;
}

.jv-archive-title {
    margin: 0 0 8px;
    font-family: var(--jv-font-arcade);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    color: var(--jv-cyan);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.jv-archive-title span {
    color: var(--jv-yellow);
}

.jv-archive-desc {
    color: var(--jv-muted);
    font-size: .9rem;
    margin: 0;
}

.jv-archive-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 10px;
}

.jv-no-results {
    color: var(--jv-muted);
    padding: 32px;
    text-align: center;
}

.jv-pagination .nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 16px 0;
}

.jv-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--jv-line);
    border-radius: 4px;
    color: var(--jv-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: border-color .15s, color .15s;
}

.jv-pagination .page-numbers:hover,
.jv-pagination .page-numbers.current {
    border-color: var(--jv-cyan);
    color: var(--jv-cyan);
}

/* Garante fundo escuro em todos os posts e páginas internas */
.site-shell,
.hentry,
.post,
.page,
.single,
.wp-site-blocks,
#content,
#primary,
#main,
.entry-content,
.post-content {
    background: transparent !important;
    color: var(--jv-text);
}

/* ── Páginas internas ──────────────────────────────────── */

.jv-page-shell {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
    padding: 48px 0 80px;
}

.jv-page-wrap {
    max-width: 800px;
}

.jv-page-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--jv-line);
}

.jv-page-title {
    margin: 0;
    font-family: var(--jv-font-arcade);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--jv-cyan);
    text-shadow: 0 0 18px rgba(0, 229, 255, .35);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.jv-page-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--jv-text);
}

.jv-page-body h2 {
    font-family: var(--jv-font-arcade);
    font-size: 1.05rem;
    color: var(--jv-yellow);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 36px 0 10px;
}

.jv-page-body p {
    margin: 0 0 16px;
    color: var(--jv-muted);
}

.jv-page-body a {
    color: var(--jv-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 229, 255, .3);
    transition: border-color .15s;
}

.jv-page-body a:hover {
    border-color: var(--jv-cyan);
}

/* Sobre nós */
.jv-favorites-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.jv-favorites-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--jv-panel);
    border: 1px solid rgba(0, 229, 255, .15);
    border-radius: var(--jv-radius);
    color: var(--jv-text);
    font-size: .93rem;
}

.jv-favorites-list strong {
    color: #fff;
}

.jv-fav-tag {
    margin-left: auto;
    font-size: .7rem;
    font-family: var(--jv-font-arcade);
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--jv-magenta);
    background: rgba(255, 79, 216, .1);
    border: 1px solid rgba(255, 79, 216, .35);
    border-radius: 4px;
    padding: 2px 8px;
}

/* Contato */
.jv-contact-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.jv-field {
    display: grid;
    gap: 6px;
}

.jv-field label {
    font-size: .8rem;
    font-family: var(--jv-font-arcade);
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--jv-muted);
}

.jv-field input,
.jv-field textarea {
    background: var(--jv-panel);
    border: 1px solid var(--jv-line);
    border-radius: var(--jv-radius);
    color: var(--jv-text);
    font-family: var(--jv-font-body);
    font-size: .95rem;
    padding: 10px 14px;
    transition: border-color .15s;
    width: 100%;
}

.jv-field input:focus,
.jv-field textarea:focus {
    outline: none;
    border-color: var(--jv-cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, .12);
}

.jv-field textarea {
    resize: vertical;
}

/* Botão compartilhado */
.jv-btn {
    display: inline-block;
    padding: 11px 28px;
    background: var(--jv-cyan);
    color: #030814;
    font-family: var(--jv-font-arcade);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    text-decoration: none;
    border: none;
    border-radius: var(--jv-radius);
    cursor: pointer;
    transition: opacity .15s, box-shadow .15s;
}

.jv-btn:hover {
    opacity: .88;
    box-shadow: 0 0 16px rgba(0, 229, 255, .45);
}

/* Anuncie */
.jv-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0 32px;
}

.jv-adv-card {
    background: var(--jv-panel);
    border: 1px solid var(--jv-line);
    border-radius: var(--jv-radius);
    padding: 20px;
}

.jv-adv-card h3 {
    margin: 0 0 8px;
    font-family: var(--jv-font-arcade);
    font-size: .88rem;
    color: var(--jv-yellow);
    text-transform: uppercase;
}

.jv-adv-card p {
    font-size: .88rem;
    color: var(--jv-muted);
    margin: 0;
}

.jv-adv-cta {
    margin-top: 8px;
}

/* Legal (privacidade / termos) */
.jv-legal h2 {
    font-family: var(--jv-font-arcade);
    font-size: .95rem;
    color: var(--jv-yellow);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 32px 0 8px;
}

.jv-legal p {
    font-size: .93rem;
    color: var(--jv-muted);
    margin: 0 0 14px;
}

.site-header,
.site-shell {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
}

/* Footer ocupa largura total; conteúdo interno é controlado por .footer-main */
.footer-main,
.footer-bottom {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    display: grid;
    grid-template-columns: auto 1fr minmax(220px, 320px);
    align-items: center;
    gap: 28px;
    min-height: 96px;
    border-bottom: 1px solid rgba(138, 76, 255, .55);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    width: clamp(134px, 14vw, 204px);
    max-width: 204px;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: 100%;
    max-width: 204px;
    max-height: 82px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, .22)) drop-shadow(0 0 14px rgba(255, 213, 31, .18));
}

.primary-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a,
.section-heading a,
.widget-footer a {
    color: #fff;
    text-decoration: none;
    font-family: var(--jv-font-arcade);
    font-size: 1.0rem;
    font-weight: 800;
    letter-spacing: 0;
}

.search-form {
    display: flex;
    border: 1px solid rgba(79, 140, 255, .8);
    background: rgba(0, 0, 0, .28);
    border-radius: 4px;
    overflow: hidden;
}

.search-form label {
    flex: 1;
}

.search-form input[type="search"],
.newsletter-widget input {
    width: 100%;
    min-height: 48px;
    border: 0;
    color: var(--jv-text);
    background: rgba(0, 0, 0, .2);
    padding: 0 16px;
}

.search-form button,
.search-submit,
.newsletter-widget button,
.arcade-button {
    border: 1px solid var(--jv-cyan);
    color: var(--jv-cyan);
    background: linear-gradient(180deg, rgba(0, 229, 255, .12), rgba(0, 0, 0, .35));
    text-decoration: none;
    font-family: var(--jv-font-arcade);
    font-weight: 900;
    font-size: .75rem;
    min-height: 32px;
    padding: 0 14px;
    box-shadow: inset 0 0 14px rgba(0, 229, 255, .25), 0 0 18px rgba(0, 229, 255, .16);
    width: fit-content;
}

.site-shell {
    padding: 16px 0 0;
}

.hero-panel,
.panel-section,
.sidebar-widget {
    border: 1px solid var(--jv-line);
    border-radius: var(--jv-radius);
    background: linear-gradient(145deg, rgba(6, 20, 38, .96), rgba(3, 8, 20, .96));
    box-shadow: 0 0 0 1px rgba(138, 76, 255, .18), inset 0 0 32px rgba(0, 229, 255, .035);
}

/* ── Hero Slider ─────────────────────────────────────────── */

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--jv-radius);
    /* borda dupla: cyan no topo/esquerda, magenta na base/direita */
    border-top: 1px solid var(--jv-cyan);
    border-left: 1px solid var(--jv-cyan);
    border-bottom: 1px solid var(--jv-magenta);
    border-right: 1px solid var(--jv-magenta);
    box-shadow:
        0 0 18px rgba(0, 229, 255, .12),
        0 0 18px rgba(255, 79, 216, .08);
    min-height: 240px;
    aspect-ratio: 16 / 6;
}

/* Cada slide: grid imagem | texto */
.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 48% 1fr;
    background-color: #061426;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.hero-slide.is-active  { opacity: 1; pointer-events: auto; }
.hero-slide.is-leaving { opacity: 0; }

/* --- Coluna esquerda: imagem com gradiente direito --- */
.hero-slide-image {
    position: relative;
    overflow: hidden;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% center;
    display: block;
}

/* gradiente que "dissolve" a imagem para o fundo escuro */
.hero-slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 30%,
        rgba(6, 20, 38, .85) 70%,
        #061426 100%
    );
}

/* placeholder quando não há thumbnail */
.hero-slide-image--empty {
    background: linear-gradient(135deg, #0d2a50 0%, #061426 100%);
}

/* --- Coluna direita: texto --- */
.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 36px 32px 24px;
    gap: 0;
}

.hero-slide-title {
    margin: 10px 0 12px;
    font-family: var(--jv-font-arcade);
    font-size: clamp(1.2rem, 2.2vw, 2.1rem);
    line-height: 1.18;
    color: #fff;
}

.hero-copy p {
    color: var(--jv-muted);
    font-size: clamp(.8rem, 1vw, .98rem);
    line-height: 1.65;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Setas */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(3, 8, 20, .7);
    border: 1px solid rgba(0, 229, 255, .4);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s;
}

.hero-prev { left: 12px; }
.hero-next { right: 12px; }

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0, 229, 255, .15);
    border-color: var(--jv-cyan);
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 12px;
    right: 36px;
    z-index: 10;
    display: flex;
    gap: 7px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.hero-dot.is-active {
    background: var(--jv-cyan);
    transform: scale(1.4);
}

.crt-frame {
    padding: 18px;
    border: 1px solid rgba(0, 229, 255, .7);
    border-radius: 8px;
    background: #071422;
}

.crt-screen {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    color: var(--jv-yellow);
    background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 2px, transparent 2px 5px),
        radial-gradient(circle at 60% 35%, #6ebcff, #193c7a 44%, #061426 76%);
    box-shadow: inset 0 0 48px rgba(0, 0, 0, .7);
    font-family: var(--jv-font-arcade);
    font-size: clamp(2.4rem, 7vw, 6.4rem);
    font-weight: 900;
}

.kicker,
.card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--jv-magenta);
    color: #fff;
    background: rgba(138, 76, 255, .45);
    border-radius: 4px;
    font-family: var(--jv-font-arcade);
    font-size: 1.50rem;
    font-weight: 900;
}

span.kicker {
    font-size: .75rem;
    min-height: 22px;
    padding: 0 8px;
    width: fit-content;
}

.hero-copy h1,
.section-heading h2,
.sidebar-widget h3 {
    font-family: var(--jv-font-pixel);
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 720px;
    margin: 20px 0;
    font-family: var(--jv-font-arcade);
    font-size: clamp(2.1rem, 3vw, 3.45rem);
    line-height: 1.12;
}

.hero-copy p {
    max-width: 640px;
    color: var(--jv-text);
    font-size: 1.13rem;
    line-height: 1.65;
}

.arcade-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
    margin-top: 16px;
}

.main-column {
    display: grid;
    gap: 16px;
    align-content: start;
}

.sidebar {
    display: grid;
    align-content: start;
    gap: 16px;
}

.panel-section,
.sidebar-widget {
    padding: 16px 18px 12px;
}

.section-heading,
.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.section-heading h2,
.sidebar-widget h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--jv-cyan);
    text-transform: uppercase;
    font-size: 1.45rem;
    text-shadow: 0 0 14px rgba(0, 229, 255, .35);
}

/* Ícones de seção e widget */
.section-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, .55));
}

.section-icon--sm {
    width: 20px;
    height: 20px;
}

/* Ícone de moeda nos badges de preço */
.price-icon {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    opacity: .85;
    flex-shrink: 0;
}

/* Ícone na busca do header */
.search-icon {
    width: 18px;
    height: 18px;
    display: block;
    filter: drop-shadow(0 0 4px rgba(0, 229, 255, .4));
}

/* Ícone no botão de ação (ler matéria / ler especial) */
.btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(0, 229, 255, .5));
}

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

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

.news-card,
.review-card,
.special-grid article {
    min-width: 0;
    border: 1px solid rgba(138, 76, 255, .65);
    border-radius: 6px;
    background: rgba(2, 10, 24, .9);
    overflow: hidden;
}

.news-card a {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.news-card img,
.review-cover img,
.placeholder-art {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: linear-gradient(135deg, #143a76, #0ba6bf 48%, #5d2f9a);
}

/* Garante que WordPress não sobrescreva as dimensões das thumbs de notícia */
.news-card .wp-post-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-width: none;
}

.news-card .card-tag {
    margin: -34px 14px 10px;
    position: relative;
}

.news-card h3,
.review-card h3 {
    margin: 14px;
    font-family: var(--jv-font-arcade);
    font-size: 1.10rem;
    line-height: 1.25;
}

.news-card p {
    margin: 0 14px 18px;
    color: var(--jv-muted);
    line-height: 1.5;
}

.news-card .news-button {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    margin: 0 14px 18px;
    font-size: .7rem;
    font-family: var(--jv-font-arcade);
    font-weight: 900;
    color: var(--jv-cyan);
    text-decoration: none;
    border: 1px solid var(--jv-cyan);
    padding: 5px 10px;
    background: transparent;
    width: auto;
}

.news-card .news-button .btn-icon {
    width: 20%;
    height: auto;
    background: none;
    display: block;
}

.console-rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.console-tile {
    --console-color: var(--jv-cyan);
    display: block;
    min-width: 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--jv-font-arcade);
    font-weight: 900;
    text-align: center;
    transition: transform .16s ease, filter .16s ease;
}

.console-tile:hover {
    filter: brightness(1.12);
    transform: translateY(-3px);
}

.console-cartridge {
    position: relative;
    display: grid;
    grid-template-rows: 64px 1fr 22px;
    gap: 8px;
    min-height: 146px;
    padding: 10px 10px 8px;
    border: 1px solid color-mix(in srgb, var(--console-color) 88%, white 12%);
    border-radius: 5px 5px 8px 8px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.18), transparent 14%, transparent 86%, rgba(0,0,0,.45)),
        linear-gradient(180deg, color-mix(in srgb, var(--console-color) 72%, #1a1d25 28%), #262a31 56%, #15171d);
    box-shadow:
        inset 0 0 0 2px rgba(255,255,255,.08),
        inset 0 -22px 0 rgba(0,0,0,.28),
        0 0 18px color-mix(in srgb, var(--console-color) 48%, transparent);
}

.console-cartridge::before,
.console-cartridge::after {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 32px;
    width: 5px;
    border-radius: 3px;
    background: rgba(0, 0, 0, .28);
}

.console-cartridge::before {
    left: 7px;
}

.console-cartridge::after {
    right: 7px;
}

.console-image-frame {
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 4px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.14), transparent 38%),
        rgba(0,0,0,.45);
    overflow: hidden;
}

.console-image-frame img {
    display: block;
    width: 100%;
    height: 64px;
    object-fit: contain;
    padding: 5px;
}

.console-image-placeholder {
    width: 52px;
    height: 34px;
    border: 2px solid rgba(255,255,255,.78);
    border-radius: 6px;
    box-shadow: 0 0 12px color-mix(in srgb, var(--console-color) 70%, transparent);
}

.console-cartridge strong {
    align-self: center;
    display: block;
    min-width: 0;
    color: #fff;
    font-size: .92rem;
    line-height: 1.08;
    text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 0 10px color-mix(in srgb, var(--console-color) 72%, transparent);
    overflow-wrap: anywhere;
}

.console-slot {
    position: relative;
    justify-self: center;
    align-self: end;
    width: min(92px, 84%);
    height: 24px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.1), transparent 42%),
        linear-gradient(180deg, #252a31, #080b10);
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,.5),
        inset 0 -8px 12px rgba(0,0,0,.72),
        0 1px 0 rgba(255,255,255,.08);
    overflow: hidden;
}

.console-slot::before,
.console-slot::after {
    content: "";
    position: absolute;
    top: -7px;
    width: 10px;
    height: 42px;
    background: #ff3148;
    transform: rotate(35deg);
    box-shadow: 0 0 8px rgba(255, 49, 72, .55);
}

.console-slot::before {
    left: 35%;
}

.console-slot::after {
    left: 49%;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
}

/* Linha superior: imagem + nome */
.review-card-top {
    display: grid;
    grid-template-columns: minmax(90px, 38%) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-width: 0;
    margin-bottom: 10px;
}

/* Mantém compatibilidade com review-card.php (CPT) */
.review-card-main {
    display: grid;
    grid-template-columns: minmax(90px, 38%) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-width: 0;
    margin-bottom: 10px;
}

.review-cover {
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, .38);
    border-radius: 4px;
    background: #030917;
    aspect-ratio: 2 / 1;
    width: 100%;
}

.review-cover img,
.review-cover .placeholder-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-card .review-title,
.review-body h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.25;
    min-height: 6.5rem;
}

/* Dados em coluna: console, ano, gênero empilhados */
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 8px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    flex-grow: 1;
}

.review-meta div {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 5px;
    align-items: start;
    min-width: 0;
}

.review-meta dt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--jv-muted);
    font-size: .68rem;
    text-transform: uppercase;
    font-weight: 800;
    padding-top: 1px;
    white-space: nowrap;
}

.review-meta dt span {
    color: var(--jv-cyan);
    font-size: .82rem;
    line-height: 1;
}

.review-meta dd {
    margin: 0;
    min-width: 0;
    color: #fff;
    font-size: .72rem;
    text-align: left;
    word-break: break-word;
}

.review-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 8px;
    padding: 8px 2px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.review-score-row span {
    color: #8cff5a;
    font-family: var(--jv-font-pixel);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.review-score-row strong {
    color: #8cff5a;
    font-family: var(--jv-font-pixel);
    font-size: 1.55rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(140, 255, 90, .45);
}

.review-card-link {
    font-size: .72rem;
    color: var(--jv-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 229, 255, .3);
    white-space: nowrap;
    transition: border-color .15s;
}

.review-card-link:hover {
    border-color: var(--jv-cyan);
}

.special-grid .special-thumb {
    position: relative;
    display: flex;
    min-height: 170px;
    margin: 0;
    color: inherit;
    text-transform: none;
    font-weight: inherit;
    text-decoration: none;
    aspect-ratio: 16 / 6.25;
    background:
        linear-gradient(135deg, #143a76, #0ba6bf 48%, #5d2f9a);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    transition: filter .2s ease, transform .2s ease;
}

.special-grid .special-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(270deg, rgba(2, 8, 22, .97) 0%, rgba(2, 8, 22, .82) 43%, rgba(2, 8, 22, .08) 100%),
        linear-gradient(0deg, rgba(2, 8, 22, .45), rgba(2, 8, 22, .08));
}

.special-grid .special-thumb:hover {
    transform: translateY(-1px);
    filter: saturate(1.12);
}

.special-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    width: min(62%, 330px);
    min-width: 0;
    padding: 18px 64px;
    margin-left: auto;
}

.special-title {
    font-family: var(--jv-font-arcade);
    font-size: clamp(.94rem, 1.3vw, 1.25rem);
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 0 #020613, 0 0 12px rgba(0, 229, 255, .45);
}

.special-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 9px 12px;
    border: 1px solid var(--jv-cyan);
    border-radius: 4px;
    color: var(--jv-cyan);
    background: rgba(0, 229, 255, .08);
    text-decoration: none;
    text-transform: none;
    font-family: var(--jv-font-pixel);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: inset 0 0 12px rgba(0, 229, 255, .12);
}

.price-radar {
    border-color: rgba(0, 229, 255, .75);
}

.widget-icon {
    color: var(--jv-yellow);
}

.price-list {
    display: grid;
    gap: 0;
}

.price-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 229, 255, .18);
    transition: background .15s ease;
}

.price-item:hover {
    background: rgba(0, 229, 255, .045);
}

/* Capa do jogo */
.price-cover {
    flex-shrink: 0;
    width: 40px;
    height: 52px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(0, 229, 255, .35);
    background: linear-gradient(145deg, #0d2a50, #0b8fa8 50%, #3d1f80);
    display: block;
}

.price-cover--placeholder {
    opacity: .55;
}

/* Bloco de texto + preços */
.price-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price-item-title {
    margin: 0;
    font-size: .82rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-item-console {
    color: var(--jv-muted);
    font-size: .82rem;
}

.price-values {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px;
}

.price-values span {
    font-size: .8rem;
    color: var(--jv-yellow);
}

.price-values b {
    color: var(--jv-text);
    font-weight: 600;
}

.widget-footer {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    color: var(--jv-muted);
}

.admin-note {
    color: var(--jv-yellow);
}

.popular-widget ol {
    display: grid;
    gap: 14px;
    padding-left: 28px;
}

.popular-widget li::marker {
    color: var(--jv-magenta);
    font-weight: 900;
}

.history-widget p {
    color: var(--jv-muted);
}

.history-widget strong {
    display: block;
    color: var(--jv-cyan);
}

.history-widget span {
    display: block;
    margin-top: 4px;
    color: var(--jv-muted);
    font-size: .8rem;
}

.history-widget small {
    color: var(--jv-muted);
}

.history-widget .admin-only-note {
    display: block;
    margin-top: 10px;
    color: var(--jv-yellow);
    font-size: .72rem;
}

.social-widget {
    border-color: rgba(255, 79, 216, .8);
}

.social-links {
    display: grid;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 79, 216, .55);
    border-radius: 6px;
    color: var(--jv-text);
    background: rgba(255, 79, 216, .08);
    text-decoration: none;
    font-weight: 900;
}

.social-links span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    color: #1a1200;
    background: var(--jv-yellow);
    font-family: var(--jv-font-arcade);
    font-size: .8rem;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    margin-top: 24px;
    border-top: 1px solid rgba(138, 76, 255, .35);
    background: #020810;
    color: var(--jv-muted);
}

.footer-main {
    display: grid;
    grid-template-columns: 190px repeat(3, 1fr) 160px auto;
    gap: 28px 32px;
    align-items: start;
    padding: 28px 0 20px;
}

.footer-brand {}

.footer-desc {
    margin: 12px 0 0;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--jv-muted);
}

.footer-col-title {
    margin: 0 0 14px;
    font-family: var(--jv-font-arcade);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--jv-text);
    letter-spacing: .03em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.footer-col ul a {
    color: var(--jv-muted);
    text-decoration: none;
    font-size: .88rem;
    transition: color .15s ease;
}

.footer-col ul a:hover {
    color: var(--jv-cyan);
}

/* Ícones sociais */
.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 44px);
    gap: 10px;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
    transition: opacity .15s ease, transform .15s ease;
}

.social-btn:hover {
    opacity: .85;
    transform: translateY(-2px);
}

.social-btn--yt  { background: #ff0000; }
.social-btn--ig  { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn--x   { background: #000; border: 1px solid #333; }
.social-btn--fb  { background: #1877f2; }
.social-btn--tk  { background: #010101; border: 1px solid #333; }

/* Imagem do foguete */
.footer-rocket {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer-rocket img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

/* Barra inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    font-size: .82rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-heart {
    color: #e74c3c;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── 1120px — tablet landscape ───────────────────────────── */
@media (max-width: 1120px) {
    .jv-archive-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .site-header {
        grid-template-columns: auto 1fr;
        padding: 14px 0;
        gap: 18px;
    }

    .site-header .search-form {
        display: none; /* escondido em tablet; reaparece só no mobile via menu */
    }

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

    .post-grid,
    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .footer-main {
        grid-template-columns: 180px repeat(3, 1fr);
    }

    .footer-rocket {
        display: none;
    }
}

/* ── 900px — tablet portrait ─────────────────────────────── */
@media (max-width: 900px) {
    .jv-archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .hero-slider {
        aspect-ratio: 16 / 8;
    }

    .hero-slide {
        grid-template-columns: 42% 1fr;
    }

    .hero-copy {
        padding: 20px 24px 20px 16px;
    }

    .hero-slide-title {
        font-size: clamp(1rem, 2.5vw, 1.6rem);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .console-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ── 760px — mobile ──────────────────────────────────────── */
@media (max-width: 760px) {
    .jv-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .site-header,
    .site-shell {
        width: min(100% - 28px, 1440px);
    }

    .footer-main,
    .footer-bottom {
        width: min(100% - 28px, 1440px);
    }

    /* Hero: empilha imagem em cima do texto */
    .hero-slider {
        aspect-ratio: auto;
        min-height: 0;
    }

    .hero-slide {
        position: relative;
        grid-template-columns: 1fr;
        grid-template-rows: 220px auto;
    }

    .hero-slide-image {
        height: 220px;
    }

    .hero-slide-image::after {
        background: linear-gradient(
            to bottom,
            transparent 40%,
            #061426 100%
        );
    }

    .hero-copy {
        padding: 20px 20px 28px;
        max-width: 100%;
    }

    .hero-slide-title {
        font-size: 1.1rem;
    }

    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }

    .hero-dots {
        right: 50%;
        transform: translateX(50%);
    }

    /* Conteúdo */
    .post-grid,
    .reviews-grid,
    .special-grid,
    .console-rail {
        grid-template-columns: 1fr;
    }

    /* Review cards empilhados */
    .review-card-main {
        grid-template-columns: 80px 1fr;
    }

    /* special-overlay ocupa largura total no mobile */
    .special-overlay {
        width: 100%;
        padding: 16px 20px;
        text-align: left;
        align-items: flex-start;
        margin-left: 0;
    }

    /* Header: logo + nav empilhados */
    .site-header {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 0;
    }

    .primary-nav ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

    /* Páginas internas */
    .jv-page-shell {
        padding: 28px 0 48px;
    }

    .jv-adv-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 480px — mobile pequeno ──────────────────────────────── */
@media (max-width: 480px) {
    .jv-archive-grid { grid-template-columns: 1fr; }

    .post-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .hero-slide-title {
        font-size: 1rem;
    }

    .kicker, .card-tag {
        font-size: .65rem;
    }

    .reviews-grid .review-card-main {
        grid-template-columns: 70px 1fr;
    }
}
