:root{
  --bg:#0a0a0a; --card:#111; --muted:#9aa0a6; --txt:#e6e6e6; --acc:#00ffa7; --acc2:#7af0ff;
  --ring: 0 0 0 2px rgba(0,255,167,.25), 0 0 30px rgba(0,255,167,.15);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(0,255,167,.08), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(122,240,255,.06), transparent 60%),
    var(--bg);
  color:var(--txt);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}
a{color:var(--acc); text-decoration:none}

/* NAV */
.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter:blur(10px);
  background:linear-gradient(180deg, rgba(10,10,10,.85), rgba(10,10,10,.55));
  border-bottom:1px solid rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
}
.brand{display:flex; align-items:center; font-weight:800; letter-spacing:.5px}
.brand span{
  background:linear-gradient(90deg,var(--acc),var(--acc2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.nav nav a{margin-left:18px; color:#c7c7c7}
.nav nav a:hover{color:#fff}

/* HERO */
.hero{max-width:1100px; margin:56px auto 24px; padding:28px; text-align:left}
.hero h1{font-size:48px; margin:0 0 10px; letter-spacing:.5px}
.hero p{color:var(--muted); max-width:760px}
.hero-stats{display:flex; gap:18px; margin-top:18px}
.stat{
  background:linear-gradient(180deg, #0f0f0f, #0b0b0b);
  border:1px solid rgba(255,255,255,.06);
  box-shadow: var(--ring);
  border-radius:16px; padding:16px 18px; min-width:160px
}
.stat span{font-size:28px; font-weight:800; display:block}
.stat small{color:var(--muted)}

/* SEÇÕES */
.section-title{max-width:1100px; margin:0 auto; padding:0 28px 8px; color:#cfcfcf}

/* GRID & CARDS */
.grid{
  max-width:1100px; margin:8px auto 64px;
  display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:16px; padding:0 28px
}
.card{
  background:linear-gradient(180deg,#101010,#0b0b0b);
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px; overflow:hidden
}
.card .pad{padding:16px}
.card h3{margin:0 0 6px; font-size:16px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.meta{display:flex; gap:10px; color:var(--muted); font-size:12px}
.actions{display:flex; gap:10px; margin-top:12px}
.btn{
  flex:1; border:1px solid rgba(255,255,255,.08);
  background:#0f0f0f; color:#fff; padding:10px 12px;
  border-radius:12px; cursor:pointer
}
.btn:hover{border-color:rgba(255,255,255,.16)}
.btn.primary{border-color:rgba(0,255,167,.35); box-shadow: var(--ring)}
.player{width:100%; display:block; background:#0b0b0b; border-top:1px dashed rgba(255,255,255,.06)}

/* ABOUT & FOOT */
.about{max-width:1100px; margin:0 auto 80px; padding:0 28px}
.foot{color:#7a7a7a; text-align:center; padding:24px 16px; border-top:1px solid rgba(255,255,255,.06)}

/* MOBILE */
@media (max-width:680px){
  .hero h1{font-size:36px}
  .stat{min-width:140px}
}
