*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0a0a0c;
  color: #c8c0b8;
  font-family: 'EB Garamond', Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid #1e1a14;
}

.site-title {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #c8b89a;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.site-tagline {
  color: #6a6050;
  font-style: italic;
  font-size: 1rem;
}

main { flex: 1; padding: 3.5rem 1.5rem; }

.games-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.game-card {
  padding: 2.2rem 2.4rem;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform .2s;
}
.game-card:hover { transform: translateY(-2px); }

.game-card--valdoria {
  background: linear-gradient(160deg, #1c1408 0%, #120e06 100%);
  border-color: #3a2a14;
}
.game-card--dois-vales {
  background: linear-gradient(160deg, #0e1c24 0%, #0a1420 100%);
  border-color: #1e3a4a;
}

.game-tag {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6a6050;
}
.game-card--dois-vales .game-tag { color: #4a7888; }

.game-title {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: .08em;
  color: #d4a84b;
  line-height: 1;
}
.game-card--dois-vales .game-title {
  font-family: 'Lora', serif;
  color: #4eb8c8;
  letter-spacing: .02em;
}

.game-desc {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #a09078;
  flex: 1;
}
.game-card--dois-vales .game-desc {
  font-family: 'Lora', serif;
  color: #7ab8c8;
}

.game-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: #5a5040;
}
.game-card--dois-vales .game-meta { color: #3a6070; }

.game-cta {
  display: inline-block;
  padding: .65rem 1.8rem;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  align-self: flex-start;
}
.game-cta--active { border: 1px solid #c8a96e88; color: #c8a96e; }
.game-cta--active:hover { background: rgba(200,169,110,.1); border-color: #c8a96e; }
.game-cta--soon {
  border: 1px solid #1e3a4a;
  color: #4a8898;
  cursor: default;
  font-family: 'Nunito', sans-serif;
  letter-spacing: .15em;
}

footer {
  padding: 2rem;
  text-align: center;
  color: #3a3028;
  font-size: .85rem;
  border-top: 1px solid #1a1410;
}

@media (max-width: 480px) {
  .site-title { font-size: 1.8rem; }
  .games-grid { grid-template-columns: 1fr; }
  .game-title { font-size: 1.8rem; }
}
