:root {
  --bg:          #101010;
  --bg-elev:     #161616;
  --bg-elev-2:   #1c1c1c;
  --orange:      #C75E0F;
  --orange-lit:  #f0791a;
  --orange-dim:  #6e3708;
  --text:        #EDEDED;
  --text-muted:  #9a9a9a;
  --text-faint:  #5f5f5f;
  --line:        #2a2a2a;
  --line-lit:    #3a3a3a;
  --glow:        0 0 24px rgba(199, 94, 15, 0.55);

  --font-head: 'Russo One', 'Arial Black', sans-serif;
  --font-body: 'Chakra Petch', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(199, 94, 15, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 94, 15, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 45%, transparent 100%);
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 46px 46px, 46px 46px; }
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.16) 3px,
    rgba(0,0,0,0) 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.dot {
  width: 9px; height: 9px;
  background: var(--orange);
  box-shadow: var(--glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}
.topbar .brand-mini { color: var(--text); font-weight: 700; letter-spacing: 0.2em; }
.topbar .ver { color: var(--text-faint); }

.hero {
  text-align: center;
  padding: 84px 0 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--orange);
  color: var(--orange-lit);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(199, 94, 15, 0.08);
  margin-bottom: 40px;
}
.badge svg { width: 14px; height: 14px; }

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.logo-img {
  width: min(600px, 86vw);
  /* Recorta o espaço transparente do .webp (topo/base).
     Se cortar as letras, DIMINUA o 1º número (ex.: 5/2).
     Se sobrar espaço vazio, AUMENTE (ex.: 3/1). */
  aspect-ratio: 8 / 3;
  object-fit: cover;
  display: block;
  filter: drop-shadow(0 0 26px rgba(199, 94, 15, 0.22));
}

.subtitle {
  margin-top: 24px;
  font-size: clamp(14px, 2.4vw, 20px);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  padding-left: 0.5em;
}

.tagline {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--text-muted);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 300;
}
.tagline b { color: var(--text); font-weight: 600; }

.progress-block {
  max-width: 620px;
  margin: 48px auto 0;
}
.progress-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.progress-head .pct { color: var(--orange-lit); font-weight: 700; }
.progress-track {
  height: 12px;
  background: var(--bg-elev-2);
  border: 1px solid var(--line-lit);
  padding: 2px;
  position: relative;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: repeating-linear-gradient(
    45deg,
    var(--orange) 0 10px,
    var(--orange-dim) 10px 20px
  );
  box-shadow: var(--glow);
  transition: width 1.8s cubic-bezier(.16,1,.3,1);
  animation: barShift 1s linear infinite;
}
@keyframes barShift {
  from { background-position: 0 0; }
  to   { background-position: 28px 0; }
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 22px);
  margin: 64px auto 0;
  flex-wrap: wrap;
}
.cd-cell {
  position: relative;
  min-width: clamp(74px, 18vw, 120px);
  background: var(--bg-elev);
  border: 1px solid var(--line-lit);
  padding: 20px 10px 14px;
}
.cd-cell::before, .cd-cell::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--orange);
  border-style: solid;
}
.cd-cell::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.cd-cell::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.cd-num {
  font-family: var(--font-head);
  font-size: clamp(32px, 7vw, 54px);
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.section { padding: 90px 0 10px; }
.sec-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-lit);
  margin-bottom: 14px;
  font-weight: 600;
}
.sec-kicker::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--orange);
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: 0.01em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 30px 26px 32px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover {
  border-color: var(--line-lit);
  background: var(--bg-elev-2);
  transform: translateY(-4px);
}
.card:hover::after { transform: scaleX(1); }

.card-ico {
  width: 46px; height: 46px;
  border: 1px solid var(--orange);
  display: grid;
  place-items: center;
  color: var(--orange-lit);
  margin-bottom: 22px;
  background: rgba(199, 94, 15, 0.08);
}
.card-ico svg { width: 24px; height: 24px; }
.card-freq {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}
.card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.card p { color: var(--text-muted); font-size: 14.5px; font-weight: 300; margin-bottom: 20px; }
.card .prize {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.card .prize .amt {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--orange-lit);
  font-size: 15px;
  letter-spacing: 0.16em;
}
.card .prize .txt { font-size: 12px; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; }

.cta {
  margin: 96px 0 20px;
  border: 1px solid var(--line-lit);
  background: linear-gradient(180deg, var(--bg-elev), var(--bg));
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
  position: relative;
}
.cta::before, .cta::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--orange);
  border-style: solid;
}
.cta::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.cta::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.cta h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 4.5vw, 38px);
  margin-bottom: 14px;
}
.cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 30px; font-weight: 300; }

.cta-ico {
  width: 66px; height: 66px;
  border: 1px solid var(--orange);
  background: rgba(199, 94, 15, 0.08);
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  color: var(--orange-lit);
}
.cta-ico svg { width: 34px; height: 34px; }

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #100a04;
  border: 1px solid var(--orange);
  padding: 16px 34px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
}
.btn-discord svg { width: 22px; height: 22px; }
.btn-discord:hover { background: var(--orange-lit); box-shadow: var(--glow); }
.btn-discord:active { transform: translateY(1px); }

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.socials a {
  width: 46px; height: 46px;
  border: 1px solid var(--line-lit);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.socials a:hover {
  color: var(--orange-lit);
  border-color: var(--orange);
  background: rgba(199, 94, 15, 0.08);
}
.socials svg { width: 20px; height: 20px; }
.socials a.soc-discord {
  color: var(--orange-lit);
  border-color: var(--orange);
  background: rgba(199, 94, 15, 0.08);
}
.socials a.soc-discord:hover { box-shadow: var(--glow); }

footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.foot-inner b { color: var(--text-muted); font-weight: 600; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 30px; }
  .topbar .ver { display: none; }
  .subtitle { letter-spacing: 0.32em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
