:root{
  --bg:#0b0f14;
  --panel:#101824;
  --panel2:#0f1721;
  --text:#e8edf6;
  --muted:#9aa6b6;

  --gold:#d6b26a;
  --gold2:#f0d28a;

  --stroke:rgba(255,255,255,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.45);

  --radius:18px;
  --radius2:26px;

  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background: radial-gradient(1200px 700px at 50% -20%, rgba(64,140,255,.10), transparent 60%),
              radial-gradient(900px 600px at 80% 20%, rgba(176,92,255,.10), transparent 65%),
              var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.35;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}

.page{min-height:100%;}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; gap:16px;
  padding:14px 18px;
  background: rgba(11,15,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}

.brand{display:flex; align-items:center; gap:10px; min-width:220px}
.brandMark{
  width:34px; height:34px; border-radius:12px;
  background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 10px 25px rgba(214,178,106,.18);
}
.brandText{display:flex; flex-direction:column; gap:2px}
.brandText strong{letter-spacing:.8px}
.brandText span{font-size:12px; color:var(--muted)}

.nav{display:flex; gap:16px; margin-left:10px}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

.topActions{margin-left:auto; display:flex; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  font-weight:700;
  letter-spacing:.2px;
  cursor:pointer;
  user-select:none;
}
.btn.big{padding:12px 16px; border-radius:16px}
.btn.primary{
  border-color: rgba(214,178,106,.35);
  background: linear-gradient(180deg, rgba(214,178,106,.22), rgba(214,178,106,.12));
  box-shadow: 0 12px 30px rgba(214,178,106,.10);
}
.btn.ghost{
  background: rgba(255,255,255,.02);
}

.burger{
  display:none;
  margin-left:8px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: rgba(232,237,246,.9);
  margin:5px auto;
  border-radius:2px;
}

.mobileMenu{
  display:none;
  border-bottom:1px solid var(--stroke);
  background: rgba(11,15,20,.92);
  backdrop-filter: blur(10px);
  padding:12px 18px 18px;
}
.mobileMenu a{
  display:block;
  padding:10px 6px;
  color:var(--muted);
  font-weight:700;
}
.mobileMenuActions{display:flex; gap:10px; padding-top:8px}

.hero{
  position:relative;
  padding:34px 18px 10px;
  overflow:hidden;
}
.stars{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.70;
  pointer-events:none;
}
.heroGrid{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:18px;
  position:relative;
}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background: rgba(255,255,255,.02);
  color:var(--muted);
  font-weight:800;
  letter-spacing:.6px;
  font-size:12px;
}

h1{
  margin:16px 0 12px;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-1px;
  font-weight:900;
}
.accent{
  color: var(--gold-strong);
  text-shadow:
    0 0 12px rgba(243,220,155,.35),
    0 0 32px rgba(226,194,123,.25);
}

.accent{
  color: var(--gold2);
  text-shadow: 0 0 18px rgba(214,178,106,.25);
}
.subtitle{
  margin:0 0 16px;
  color: rgba(232,237,246,.86);
  font-size:16px;
  max-width:640px;
}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 16px}
.ctaRow.center{justify-content:center}

.quickStats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:10px;
  max-width:680px;
}
.stat{
  padding:12px 12px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background: rgba(16,24,36,.55);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.stat .k{display:block; color:var(--muted); font-weight:800; font-size:12px; letter-spacing:.5px}
.stat .v{display:block; font-weight:900; margin-top:4px}

.legalNote{
  color: rgba(154,166,182,.9);
  font-size:12px;
  margin-top:12px;
}

.cardPreview{
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(16,24,36,.70), rgba(10,14,18,.55));
  box-shadow: var(--shadow);
  padding:14px;
}
.cardHeader{display:flex; gap:10px; align-items:center}
.chip{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(214,178,106,.30);
  background: rgba(214,178,106,.12);
  color: rgba(240,210,138,.95);
}
.chip.subtle{
  border-color: var(--stroke);
  background: rgba(255,255,255,.02);
  color: var(--muted);
}

.previewBox{
  position:relative;
  margin-top:12px;
  height:240px;
  border-radius: 22px;
  border:1px solid var(--stroke);
  overflow:hidden;
  background:
    radial-gradient(600px 260px at 35% 30%, rgba(102,179,255,.12), transparent 65%),
    radial-gradient(520px 260px at 70% 80%, rgba(176,92,255,.10), transparent 60%),
    rgba(15,23,33,.55);
}
.previewGlow{
  position:absolute; inset:-40px;
  background: radial-gradient(circle at 30% 20%, rgba(214,178,106,.10), transparent 55%);
  filter: blur(0px);
}
.previewLines{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity:.35;
}
.previewText{
  position:absolute;
  left:14px; right:14px; bottom:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(11,15,20,.55);
}
.previewText strong{display:block; font-size:14px; margin-bottom:4px}
.previewText span{color: rgba(232,237,246,.78); font-size:13px}

.cardFooter{
  display:flex; justify-content:space-between;
  padding-top:12px;
}
.link{color: rgba(240,210,138,.95); font-weight:900}
.link:hover{text-decoration:underline}

.miniGrid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
}
.miniCard{
  padding:12px 12px;
  border-radius: var(--radius);
  border:1px solid var(--stroke);
  background: rgba(16,24,36,.45);
}
.miniCard strong{display:block}
.miniCard span{display:block; margin-top:4px; color: var(--muted); font-weight:700; font-size:13px}

.section{
  max-width:var(--max);
  margin:0 auto;
  padding:34px 18px;
}
.section.alt{
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
  background: rgba(255,255,255,.015);
}
.section h2{
  margin:0 0 10px;
  font-size:30px;
  letter-spacing:-.4px;
}
.lead{
  margin:0 0 18px;
  color: rgba(232,237,246,.82);
  font-size:16px;
  max-width:900px;
}
.features{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.feature{
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: rgba(16,24,36,.45);
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
}
.feature h3{margin:0 0 6px}
.feature p{margin:0; color: rgba(232,237,246,.78)}

.twoCol{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.bullets{margin:10px 0 0; padding-left:18px; color: rgba(232,237,246,.82)}
.bullets li{margin:8px 0}
.panel{
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: rgba(16,24,36,.45);
}
.panelTitle{font-weight:900; margin-bottom:10px}
.panelGrid{display:grid; grid-template-columns: 1fr; gap:10px}
.panelItem{display:flex; align-items:center; gap:10px; color: rgba(232,237,246,.82); font-weight:700}
.dot{width:10px; height:10px; border-radius:999px; background: rgba(154,166,182,.35)}
.dot.ok{background: rgba(214,178,106,.85)}

.roadmap{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.step{
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: rgba(16,24,36,.45);
}
.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight:900;
  font-size:12px;
}
.step h3{margin:10px 0 6px}
.step p{margin:0; color: rgba(232,237,246,.78)}

.footer{
  border-top:1px solid var(--stroke);
  padding:24px 18px;
  background: rgba(0,0,0,.18);
}
.footerGrid{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr .5fr .5fr;
  gap:14px;
  align-items:start;
}
.footerBrand{display:flex; align-items:center; gap:10px}
.footerLinks{display:flex; flex-direction:column; gap:10px}
.footerLinks a{color: var(--muted); font-weight:800}
.footerLinks a:hover{color: var(--text)}
.muted{color: var(--muted)}

copyright, .copyright{
  max-width:var(--max);
  margin:14px auto 0;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color: rgba(154,166,182,.92);
  font-weight:700;
  font-size:13px;
}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns: 1fr; }
  .twoCol{grid-template-columns: 1fr; }
  .features{grid-template-columns: 1fr; }
  .roadmap{grid-template-columns: 1fr; }
  h1{font-size:38px}
}
@media (max-width: 760px){
  .nav, .topActions{display:none}
  .burger{display:block}
  .mobileMenu{display:block}
  .quickStats{grid-template-columns: 1fr; }
}

/* === ESPORTS REFINEMENT === */

:root{
  --gold:#e2c27b;
  --gold-strong:#f3dc9b;
  --bg-deep:#070a0f;
  --panel-deep:#0c121b;
}

/* Fundo mais profundo */
body{
  background:
    radial-gradient(1200px 700px at 50% -20%, rgba(120,160,255,.10), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(180,120,255,.10), transparent 65%),
    var(--bg-deep);
}
.cardPreview,
.feature,
.panel,
.miniCard,
.stat,
.step{
  background:
    linear-gradient(180deg, rgba(20,30,48,.75), rgba(8,12,18,.75));
  border: 1px solid rgba(255,255,255,.10);
}
.section{
  padding:48px 18px;
}

.section.alt{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.section h2::after{
  content:"";
  display:block;
  width:64px;
  height:3px;
  margin-top:10px;
  background: linear-gradient(90deg, var(--gold-strong), transparent);
  border-radius:4px;
}

