/* ─────────────────────────────────────────────────────────────────────────────
   Estilos da tela de seleção de livro — Mundo dos Games
   Adicione no build-scene.css ou no styles.css principal.
   ───────────────────────────────────────────────────────────────────────────── */

.fz-games-selecao {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  animation: fadeIn 0.4s ease forwards;
}

.fz-games-selecao-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.fz-games-selecao-voltar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #F0E8D0;
  color: #4A3820;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.fz-games-selecao-voltar:hover { background: #E8D5A3; }

.fz-games-selecao-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1208;
  margin: 0;
}

.fz-games-selecao-sub {
  font-size: 15px;
  color: #6B5A3E;
  margin: 0 0 24px 54px;
}

/* ── Grid de livros usando o mesmo estilo da Shelf (Estante) ────────────────────────────────────────────────────────── */
.fz-games-livros-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 10px;
}

/* ── Card de livro adaptado idêntico à Shelf ─────────────────────────────────────────────────────────── */
.fz-games-livro-card {
  width: 220px;
  background-color: var(--card-bg, #ffffff);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  cursor: pointer;
}

.fz-games-livro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fz-games-livro-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fz-games-livro-card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 15px;
    text-align: center;
}

.fz-games-livro-titulo {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark, #333333);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ── Card bloqueado ────────────────────────────────────────────────────────── */
.fz-games-livro-card.bloqueado {
  cursor: default;
  opacity: 0.7;
}

.fz-games-livro-card.bloqueado:hover {
  transform: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fz-games-livro-card.bloqueado img {
  filter: grayscale(80%) sepia(20%);
}

.fz-games-livro-card.bloqueado:hover img {
  transform: none !important;
}

.fz-games-livro-cadeado {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  z-index: 2;
}

.fz-games-livro-breve {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #888780;
  text-align: center;
  padding: 0 10px 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
