/* ============================================================
   NEXUS GAMES — review.css
   Estilos exclusivos da página de Review Completa
============================================================ */

/* === SCORE BAR — abaixo do page-hero padrão === */
.review-score-bar {
  background: var(--black-2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.rsb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.rsb-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.rmb-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rmb-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--blue-bright);
}
.rmb-value {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.rmb-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 212, 255, 0.15);
  align-self: center;
}

/* SCORE HERO */
.review-score-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.score-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--blue-bright);
  display: flex;
  align-items: baseline;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
  flex-shrink: 0;
  padding-top: 18px;
}
.score-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.score-max {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(0,0,0,0.6);
}
.score-label-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.score-verdict {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue-bright);
  letter-spacing: 2px;
}
.score-stars-hero {
  display: flex;
  gap: 4px;
}
.score-stars-hero .star { font-size: 1.2rem; color: var(--white-dim); }
.score-stars-hero .star.filled { color: #ffd600; text-shadow: 0 0 8px rgba(255,214,0,0.5); }
.score-stars-hero .star.half { color: #ffd600; opacity: 0.5; }
.score-note { font-size: 0.65rem; color: var(--white-dim); opacity: 0.6; }

/* === GALERIA DE IMAGENS === */
.review-gallery {
  padding: 60px 0;
  background: var(--black-2);
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  position: relative;
  z-index: 1;
}
.gallery-label {
  font-size: 0.75rem;
  color: var(--blue-bright);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-main {
  grid-row: 1 / 3;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.12);
  background: var(--black-3);
  min-height: 200px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.gallery-main { min-height: 420px; }
.gallery-item:hover {
  border-color: rgba(0, 212, 255, 0.5);
  transform: scale(1.01);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.img-placeholder-rv {
  min-height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, var(--black-3), rgba(0,50,80,0.3)) !important;
}
.img-placeholder-rv::after {
  content: '🎮 Adicione a imagem';
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white-dim);
  letter-spacing: 1px;
}
.gallery-main.img-placeholder-rv { min-height: 420px !important; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(5,8,16,0.95), transparent);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption .share-tech {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.gallery-caption p {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin: 0;
}

/* === LIGHTBOX === */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 6px;
  border: 1px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 60px rgba(0,212,255,0.2);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  z-index: 9001;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--blue-bright); }

/* === CORPO DA REVIEW === */
.review-body {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.review-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* ARTIGO */
.review-article { display: flex; flex-direction: column; gap: 56px; }
.review-block .section-tag { margin-bottom: 10px; }
.review-block-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.review-block p {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.review-block p:last-child { margin-bottom: 0; }

/* HIGHLIGHT BOX */
.review-highlight-box {
  display: flex;
  gap: 20px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 8px 8px 0;
  padding: 24px;
  margin-top: 24px;
}
.rhb-icon { font-size: 2rem; flex-shrink: 0; }
.rhb-content .share-tech { display: block; margin-bottom: 8px; }
.rhb-content p {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin: 0;
  line-height: 1.7;
}

/* PROS/CONS FULL */
.pros-cons-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.pc-col {
  border-radius: 8px;
  padding: 24px;
}
.pros-full {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
}
.cons-full {
  background: rgba(255, 45, 85, 0.05);
  border: 1px solid rgba(255, 45, 85, 0.2);
}
.pros-full h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
}
.cons-full h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #ff2d55;
  margin-bottom: 16px;
}
.pc-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pc-col li { font-size: 0.9rem; color: var(--white-dim); line-height: 1.5; }

/* VEREDICTO FINAL */
.final-verdict {
  display: flex;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--black-3), rgba(0,60,100,0.4));
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 10px;
  padding: 32px;
  margin-top: 24px;
}
.fv-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 30px rgba(0,212,255,0.4);
  flex-shrink: 0;
}
.fv-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.fv-label {
  font-size: 0.55rem;
  color: rgba(0,0,0,0.6);
  letter-spacing: 1px;
}
.fv-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--blue-bright);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.fv-text p {
  color: var(--white-dim);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* === SIDEBAR === */
.review-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--black-3);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 10px;
  padding: 28px;
}
.sidebar-card-title {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--blue-bright);
  margin-bottom: 20px;
  display: block;
}
.sidebar-criteria { display: flex; flex-direction: column; gap: 16px; }
.sc-item { display: flex; flex-direction: column; gap: 6px; }
.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-label { font-size: 0.85rem; color: var(--white-dim); }
.sc-score {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

/* FICHA TÉCNICA */
.ficha-list { display: flex; flex-direction: column; gap: 0; }
.ficha-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
  gap: 12px;
}
.ficha-item:last-child { border-bottom: none; }
.ficha-key {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--white-dim);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.ficha-val {
  font-size: 0.85rem;
  color: var(--white);
  text-align: right;
}

/* RECOMENDADO */
.rec-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rec-tag {
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 8px 12px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 4px;
}
.rec-tag.rec-no {
  background: rgba(255, 45, 85, 0.05);
  border-color: rgba(255, 45, 85, 0.15);
  color: rgba(255, 100, 120, 0.8);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-main { grid-row: auto; }
  .pros-cons-full { grid-template-columns: 1fr; }
  .rsb-inner { flex-direction: column; align-items: flex-start; }
  .rmb-divider { display: none; }
  .final-verdict { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .score-circle { width: 70px; height: 70px; }
  .score-number { font-size: 1.8rem; }
}
