/* =========================================================
   i2165062 — NFT PAGE
   ========================================================= */
:root{
  --ink:#2b2f35;
  --muted:#6f7781;
  --accent:#00a896;
  --bg0:#f7f8f9;
  --bg1:#eef0f2;
  --card: rgba(255,255,255,.78);
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:"Poppins","Segoe UI",sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 700px at 50% 0%, var(--bg1), var(--bg0));
  min-height:100vh;
}

.nft-wrap{
  width:min(1100px, 92vw);
  margin:52px auto 80px;
}

/* Hero */
.title{
  text-align:center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight:700;
  letter-spacing:.02em;
  margin-bottom:8px;
}
.subtitle{
  text-align:center;
  color:var(--muted);
  font-size:15px;
}
.badge{
  display:inline-block;
  margin-left:10px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(0,168,150,.12);
  color:var(--accent);
  font-weight:600;
  font-size:12px;
}

/* Intro */
.intro{
  margin:26px auto 30px;
  background:var(--card);
  backdrop-filter: blur(10px);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 16px 32px rgba(0,0,0,.08);
}
.intro p{ text-align:justify; line-height:1.8; color:#333; }

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:16px;
}
@media (max-width: 980px){ .grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .grid{ grid-template-columns: 1fr; } }

/* Card */
.card{
  background:var(--card);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(0,0,0,.10);
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
  cursor:pointer;
  outline:none;
}
.card:focus{ box-shadow:0 22px 40px rgba(0,0,0,.14); transform: translateY(-4px); }

.card:hover{
  transform: translateY(-6px) rotateX(1deg) rotateY(-1deg);
  box-shadow:0 24px 50px rgba(0,0,0,.12);
}

.thumb{ aspect-ratio: 16/10; background:#eaeef2; }
.thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.content{ padding:16px 16px 18px; }
.country{ display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.country .flag{ font-size:18px; }
.country h2{ font-size:18px; }

.desc{ color:#333; font-size:14px; line-height:1.6; margin:6px 0 10px; }

.meta{ display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.chip{
  font-size:12px; padding:4px 10px; border-radius:999px; font-weight:600;
}
.chip.live{ background:rgba(0,168,150,.12); color:var(--accent); }
.chip.soon{ background:#f3e9d7; color:#b8860b; }
.count{ color:#49515a; font-size:12px; }

/* Buttons */
.btn, .btn.ghost{
  display:inline-block; text-decoration:none; text-align:center;
  padding:10px 14px; border-radius:12px; font-weight:600; font-size:14px;
  transition:transform .2s ease, background .25s ease, color .25s ease, opacity .25s ease;
}
.btn{ background:var(--accent); color:#fff; }
.btn:hover{ transform: translateY(-2px); background:#029482; }
.btn.ghost{
  background: transparent; color:#7a838c; border:1px dashed #c8cfd6; cursor:not-allowed; opacity:.8;
}

/* CTA */
.cta{
  text-align:center; margin:42px auto 0;
  background:var(--card); backdrop-filter: blur(10px);
  border-radius:18px; padding:26px 20px;
  box-shadow:0 16px 32px rgba(0,0,0,.08);
}
.cta h3{ font-size:20px; margin-bottom:8px; }
.cta p{ color:#3a4047; margin-bottom:14px; }
.cta-btn{
  display:inline-block; background:var(--accent); color:#fff;
  padding:10px 18px; border-radius:12px; font-weight:600; text-decoration:none;
  transition: transform .2s ease, background .25s ease;
}
.cta-btn:hover{ transform: translateY(-2px); background:#029482; }
