
:root{
  --bg:#0b0b0d;
  --fg:#e9e1d0;
  --gold:#d4af37;
  --muted:#a8a7a3;
  --accent1:#b26bf1;
  --accent2:#4ed0ff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  background: radial-gradient(1200px 800px at 10% 10%, #11121a 0%, var(--bg) 45%) no-repeat, var(--bg);
  color: var(--fg);
}
a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:24px}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:14px; text-decoration:none}
.brand img{height:44px; width:44px; border-radius:8px; object-fit:cover}
.brand span{font-variant:small-caps; letter-spacing:1px; color:var(--gold)}
.hero{
  padding:80px 0 40px;
  text-align:center;
}
.hero-logo{width:min(520px, 80vw); filter: drop-shadow(0 10px 40px rgba(0,0,0,.55));}
.tag{margin-top:18px;color:var(--muted);font-size:18px;letter-spacing:.5px}
.h1{font-size: clamp(40px, 6vw, 72px); margin: 24px 0 8px; color: var(--gold); letter-spacing:.5px}
.buttons{display:flex; gap:14px; justify-content:center; margin:26px 0 6px; flex-wrap:wrap}
.btn{
  padding:12px 18px; border:1px solid var(--gold); color:var(--fg); text-decoration:none;
  border-radius:999px; letter-spacing:.6px; backdrop-filter: blur(6px);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover{ transform: translateY(-2px); background: rgba(212,175,55,.08); box-shadow: 0 6px 24px rgba(212,175,55,.15); }
.btn.gold{ background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(212,175,55,.05)); }
.grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap:16px;
  margin:36px 0 14px;
}
.card{
  aspect-ratio: 3/4; border-radius:14px; overflow:hidden; position:relative;
  background:#111; border:1px solid rgba(255,255,255,.06);
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
}
.card img{width:100%; height:100%; object-fit:cover; display:block}
.card .label{
  position:absolute; left:10px; bottom:10px; background: rgba(0,0,0,.55);
  padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12);
  font-size:12px; letter-spacing:.4px
}
.footer{color:#8b897f; font-size:13px; padding:30px 0 60px; text-align:center}
.footer a{color:var(--gold)}
.note{margin-top:8px; font-size:12px; color:#8b897f}
