:root {
  --gold:        #d8e4ec;
  --gold-light:  #f4f8fb;
  --gold-dark:   #7f8b95;
  --blue-magic:  oklch(62% 0.20 240);
  --blue-light:  oklch(75% 0.16 238);
  --bg-void:     #020509;
  --bg-deep:     #06101a;
  --bg-card:     rgba(6,14,22,0.85);
  --border-gold: rgba(221,235,244,0.22);
  --text-light:  #f4f8fb;
  --text-muted:  rgba(220,232,240,0.62);
  --glow-gold:   rgba(158,204,238,0.35);
  --accent-gold: #c8930a;
  --green:       #4ade80;
  --green-dark:  #22c55e;
  --green-glow:  rgba(74,222,128,0.45);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-void);
  color: var(--text-light);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── PARTICLES ── */
#particles-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.5;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: linear-gradient(180deg, rgba(4,6,11,0.96) 0%, rgba(4,6,11,0.82) 100%);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
}
.nav::after {
  content: ''; position: absolute; bottom: -1px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; filter: drop-shadow(0 0 10px rgba(200,140,40,0.6)); }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); padding: 8px 14px; border-radius: 4px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--gold); background: rgba(200,140,40,0.08); }
.nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px;
  cursor: pointer; transition: all 0.25s; border: none; outline: none;
}
.btn-gold {
  background: linear-gradient(135deg, #22c55e, #4ade80, #22c55e);
  color: #03150a;
  box-shadow: 0 0 20px rgba(74,222,128,0.35), inset 0 1px 0 rgba(134,239,172,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 4px 30px rgba(74,222,128,0.55), inset 0 1px 0 rgba(134,239,172,0.4); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--border-gold); }
.btn-outline:hover { background: rgba(200,140,40,0.1); border-color: var(--gold); box-shadow: 0 0 15px rgba(200,140,40,0.2); }
.btn-lg { padding: 14px 32px; font-size: 13px; }

/* ── ONLINE PILL ── */
.online-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.25);
  border-radius: 100px; padding: 6px 14px;
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.15em; color: #4ade80;
}
.online-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: all 0.25s; }
@media (max-width: 900px) { .hamburger { display: flex; } .nav-links { display: none; } }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(4,6,11,1) 0%, rgba(4,6,11,0.5) 40%, rgba(4,6,11,0.15) 65%, rgba(4,6,11,0.55) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(200,100,20,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(40,80,200,0.12) 0%, transparent 50%);
}
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(4,6,11,0.7) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,140,40,0.1); border: 1px solid var(--border-gold);
  border-radius: 100px; padding: 6px 16px;
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.25em; color: var(--gold-light);
  margin-bottom: 28px; animation: fadeInDown 0.8s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse 2s ease infinite; }
.hero-logo {
  width: clamp(220px, 38vw, 400px); height: auto; margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(200,140,40,0.5)) drop-shadow(0 0 60px rgba(40,80,200,0.3));
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-tagline {
  font-family: 'Rajdhani', sans-serif; font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px; animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif; font-size: clamp(42px, 7vw, 88px);
  font-weight: 900; line-height: 1; color: #fff;
  text-shadow: 0 0 30px rgba(200,140,40,0.4), 0 0 80px rgba(200,140,40,0.2), 0 4px 12px rgba(0,0,0,0.8);
  margin-bottom: 8px; animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-title .fire { color: var(--gold); }
.hero-subtitle {
  font-family: 'Cinzel', serif; font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.18em; color: var(--blue-light);
  margin-bottom: 48px; animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.9s ease 0.5s both; }
.scroll-indicator { position: absolute; bottom: 32px; right: 48px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5; }
.scroll-indicator span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(180deg, var(--border-gold), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1} 100%{opacity:0;transform:scaleY(1);transform-origin:bottom} }

/* ── COUNTDOWN ── */
.countdown-section {
  position: relative; z-index: 1; padding: 60px 24px;
  background: linear-gradient(180deg, var(--bg-void) 0%, rgba(8,12,20,0.95) 50%, var(--bg-void) 100%);
  border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}
.countdown-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(74,222,128,0.06) 0%, transparent 70%); }
.countdown-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.countdown-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 32px; }
.countdown-grid { display: flex; justify-content: center; align-items: center; gap: 0; }
.countdown-item { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.countdown-num { font-family: 'Cinzel', serif; font-size: clamp(48px, 8vw, 80px); font-weight: 700; color: #fff; line-height: 1; text-shadow: 0 0 30px rgba(200,140,40,0.5); min-width: 1.8ch; }
.countdown-unit { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.countdown-sep { font-family: 'Cinzel', serif; font-size: 48px; color: var(--gold-dark); opacity: 0.6; padding-bottom: 24px; animation: blink 1.5s ease infinite; }
.countdown-section.is-finished .countdown-label { margin-bottom: 18px; }
#site-countdown-title.countdown-finished-title {
  display: inline-block;
  position: relative;
  margin: 0 0 18px !important;
  padding: 0 0 18px;
  font-family: 'Cinzel Decorative', serif !important;
  font-size: clamp(32px, 5vw, 58px) !important;
  font-weight: 700;
  line-height: 1.08 !important;
  letter-spacing: 0.14em !important;
  color: transparent !important;
  background: linear-gradient(180deg, #fff7cc 0%, #f6c445 36%, #d28a00 72%, #8f5b00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none !important;
  filter: drop-shadow(0 0 18px rgba(245,158,11,0.35)) drop-shadow(0 12px 30px rgba(0,0,0,0.42));
}
#site-countdown-title.countdown-finished-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(360px, 78%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.75), rgba(255,244,186,0.92), rgba(245,158,11,0.75), transparent);
  box-shadow: 0 0 18px rgba(245,158,11,0.45);
}
.countdown-section.is-finished .stat-row { margin-top: 10px; }
@keyframes blink { 0%,100%{opacity:.6} 50%{opacity:.15} }
.stat-row { display: flex; justify-content: center; align-items: center; gap: 0; margin-top: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0 36px; }
.stat-num { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 700; color: var(--green); display: block; text-shadow: 0 0 20px rgba(74,222,128,0.5); }
.stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, rgba(74,222,128,0.35), transparent); }

/* ── SECTION ── */
.section { position: relative; z-index: 1; padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { font-family: 'Cinzel', serif; font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--green); text-shadow: 0 0 30px rgba(74,222,128,0.3); line-height: 1.15; }
.section-title span { color: var(--green-dark); }
.section-subtitle { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-dark { background: var(--bg-void); }
.s-relative { position: relative; overflow: hidden; }
/* Gradiente base por seção (sob a imagem) */
#quickstart  { background: radial-gradient(ellipse at 20% 50%, rgba(180,120,30,0.20) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(40,70,180,0.14) 0%, transparent 55%), #04060b; }
#conta       { background: radial-gradient(ellipse at 50% 0%, rgba(40,70,200,0.16) 0%, transparent 50%), radial-gradient(ellipse at 80% 100%, rgba(180,120,30,0.14) 0%, transparent 50%), #04060b; }
#download    { background: radial-gradient(ellipse at 10% 80%, rgba(200,140,40,0.16) 0%, transparent 50%), radial-gradient(ellipse at 90% 20%, rgba(60,100,220,0.12) 0%, transparent 50%), #04060b; }
#media       { background: radial-gradient(ellipse at 70% 30%, rgba(60,100,220,0.18) 0%, transparent 55%), radial-gradient(ellipse at 20% 80%, rgba(200,100,20,0.14) 0%, transparent 55%), #04060b; }
#noticias    { background: radial-gradient(ellipse at 30% 40%, rgba(180,120,30,0.16) 0%, transparent 50%), radial-gradient(ellipse at 75% 70%, rgba(40,80,200,0.12) 0%, transparent 50%), #04060b; }
#rankings    { background: radial-gradient(ellipse at 50% 0%, rgba(200,150,40,0.18) 0%, transparent 50%), radial-gradient(ellipse at 50% 100%, rgba(40,70,180,0.14) 0%, transparent 50%), #04060b; }
.s-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 1; filter: brightness(0.42) saturate(1.08) contrast(1.04); }
.s-ov { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(4,6,11,0.92) 0%, rgba(4,6,11,0.45) 18%, rgba(4,6,11,0) 38%, rgba(4,6,11,0) 62%, rgba(4,6,11,0.45) 82%, rgba(4,6,11,0.92) 100%),
  linear-gradient(180deg, rgba(4,6,11,1) 0%, rgba(5,7,12,0.35) 18%, rgba(5,7,12,0.35) 82%, rgba(4,6,11,1) 100%); }
.glow-line-h { height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent 100%); opacity: 0.4; margin: 0 auto; max-width: 800px; }

/* Divisa dourada automática entre seções */
.section.s-relative::before,
.auth-section.s-relative::before,
.section-dark.s-relative::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent 100%);
  opacity: 0.45;
  z-index: 10;
  pointer-events: none;
}

/* Painéis do template — largura total da viewport (quebra o container site-shell) */
.section-panel {
  position: relative;
  width: 100vw;
  left: calc((100% - 100vw) / 2);
}

/* Borda quebrada */
.section-broken {
  position: relative;
  clip-path: polygon(4% 0, 96% 0, 100% 5%, 99.2% 35%, 100% 40%, 98.5% 72%, 100% 80%, 96% 100%, 5% 99%, 0 94%, 1% 66%, 0 60%, 1.3% 21%, 0 15%);
  filter: drop-shadow(0 0 1px rgba(214, 230, 242, 0.55)) drop-shadow(0 0 10px rgba(214, 230, 242, 0.12));
}

.section.s-relative.section-broken::before,
.section-dark.s-relative.section-broken::before,
.auth-section.s-relative.section-broken::before {
  display: none;
}

/* Separadores ficam acima das seções recortadas */
.ornate-divider.section-separator {
  position: relative;
  z-index: 10;
}

/* ── QUICKSTART CARDS ── */
.quickstart-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.qs-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 8px; padding: 32px 28px; transition: all 0.3s; overflow: hidden; cursor: pointer;
}
.qs-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.3s; }
.qs-card:hover { border-color: rgba(200,140,40,0.6); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,140,40,0.15); }
.qs-card:hover::before { opacity: 1; }
.qs-card-icon { width: 52px; height: 52px; border-radius: 8px; background: rgba(200,140,40,0.12); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 24px; }
.qs-card-num { position: absolute; top: 20px; right: 20px; font-family: 'Cinzel', serif; font-size: 48px; font-weight: 700; color: rgba(200,140,40,0.08); line-height: 1; }
.qs-card-title { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; color: var(--gold-light); margin-bottom: 10px; letter-spacing: 0.05em; }
.qs-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── SERVER STRIP ── */
.server-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--border-gold); border: 1px solid var(--border-gold); border-radius: 8px; overflow: hidden; margin-top: 48px; }
.server-strip-item { background: var(--bg-deep); padding: 24px 20px; text-align: center; transition: background 0.2s; }
.server-strip-item:hover { background: rgba(10,14,22,0.95); }
.server-strip-key { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.server-strip-val { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600; color: var(--gold-light); }

/* ── AUTH SECTION ── */
.auth-section { background: linear-gradient(180deg, var(--bg-void), #070c16, var(--bg-void)); }
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .auth-grid { grid-template-columns: 1fr; } }
.auth-card {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 12px; padding: 36px 32px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
#auth-login-area { flex: 1; display: flex; flex-direction: column; }
#auth-login-btn { margin-top: auto; }
.auth-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent); }
.auth-card-title { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 24px; letter-spacing: 0.08em; display: flex; align-items: center; gap: 10px; }
.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; font-family: 'Cinzel', serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.auth-field input {
  width: 100%; height: 46px; background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-gold); border-radius: 6px;
  padding: 0 14px; color: var(--text-light); font-family: 'Rajdhani', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,140,40,0.12); }
.auth-field input::placeholder { color: rgba(122,114,101,0.6); }
.auth-remember { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; cursor: pointer; font-size: 13px; color: var(--text-muted); }
.auth-remember input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.auth-msg { padding: 10px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 14px; display: none; }
.auth-msg.error { display: block; background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3); color: #fecaca; }
.auth-msg.success { display: block; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.28); color: #bbf7d0; }
.auth-connected { background: rgba(200,140,40,0.08); border: 1px solid var(--border-gold); border-radius: 8px; padding: 16px; }
.auth-connected-name { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700; color: #fff; }
.auth-connected-label { font-size: 11px; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.auth-char { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; margin-top: 8px; }
.auth-char-name { font-weight: 700; color: #fff; font-size: 14px; }
.auth-char-info { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.auth-online-dot { width: 8px; height: 8px; border-radius: 50%; background: #6b7280; }
.auth-online-dot.online { background: #22c55e; box-shadow: 0 0 6px #22c55e; }

/* ── REGISTER MODAL ── */
.reg-overlay { display: none; position: fixed; inset: 0; z-index: 9998; align-items: center; justify-content: center; background: rgba(2,4,10,0.88); backdrop-filter: blur(12px); padding: 20px; }
.reg-overlay.open { display: flex; }
.reg-modal { width: min(780px,100%); max-height: 92vh; overflow-y: auto; border-radius: 20px; background: linear-gradient(135deg, rgba(7,12,24,0.98), rgba(10,6,2,0.96)); border: 1px solid var(--border-gold); box-shadow: 0 0 0 1px rgba(200,140,40,0.12), 0 30px 80px rgba(0,0,0,0.6); padding: 32px; }
.reg-modal::-webkit-scrollbar { width: 8px; }
.reg-modal::-webkit-scrollbar-thumb { background: rgba(74,222,128,0.35); border-radius: 999px; }
.reg-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.reg-title { font-family: 'Cinzel Decorative', serif; font-size: clamp(20px,3vw,28px); color: #fff; font-weight: 700; }
.reg-subtitle { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reg-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .reg-grid { grid-template-columns: 1fr; } .reg-grid .full { grid-column: 1; } }
.reg-field label { display: block; font-family: 'Cinzel', serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.reg-field input { width: 100%; height: 46px; background: rgba(0,0,0,0.35); border: 1px solid var(--border-gold); border-radius: 6px; padding: 0 14px; color: var(--text-light); font-family: 'Rajdhani', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.reg-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,140,40,0.12); }
.reg-preview { background: rgba(200,140,40,0.08); border: 1px solid var(--border-gold); border-radius: 8px; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.reg-preview-hint { font-size: 11px; color: var(--text-muted); }
.reg-preview-val { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 700; color: var(--gold-light); }
.reg-captcha-box { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.reg-captcha-img { width: 160px; height: 52px; border-radius: 8px; border: 1px solid var(--border-gold); background: #090b10; object-fit: cover; }
.reg-captcha-refresh { height: 42px; padding: 0 14px; border-radius: 8px; border: 1px solid var(--border-gold); background: rgba(255,255,255,0.04); color: var(--gold); font-family: 'Cinzel', serif; font-size: 11px; cursor: pointer; transition: all 0.2s; }
.reg-captcha-refresh:hover { background: rgba(200,140,40,0.12); }
.reg-msg { display: none; padding: 12px 14px; border-radius: 8px; font-size: 14px; margin-top: 16px; }
.reg-msg.error { display: block; background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3); color: #fecaca; }
.reg-msg.success { display: block; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.28); color: #bbf7d0; }
.reg-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.reg-submit { flex: 1; min-height: 50px; border: none; border-radius: 10px; background: linear-gradient(135deg, #22c55e, #4ade80, #22c55e); color: #03150a; font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; cursor: pointer; transition: all 0.2s; }
.reg-submit:hover { box-shadow: 0 0 20px rgba(200,140,40,0.4); }
.reg-cancel { min-height: 50px; padding: 0 20px; border: 1px solid var(--border-gold); border-radius: 10px; background: transparent; color: var(--text-muted); font-family: 'Cinzel', serif; font-size: 12px; cursor: pointer; transition: all 0.2s; }
.reg-cancel:hover { background: rgba(200,140,40,0.08); color: var(--gold); }

/* ── DOWNLOAD ── */
.download-feature {
  position: relative; background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: 12px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; overflow: hidden;
}
.download-feature::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 0% 100%, rgba(200,140,40,0.08) 0%, transparent 60%); pointer-events: none; }
.download-feature-label { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.download-feature-title { font-family: 'Cinzel Decorative', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.download-feature-title span { color: var(--gold); }
.download-feature-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.download-feature-img { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; }
.download-feature-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }
.download-feature-img::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--border-gold); border-radius: 8px; }

/* ── MEDIA ── */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.media-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 16/9; border: 1px solid rgba(200,140,40,0.2); cursor: pointer; transition: all 0.3s; }
.media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.media-card:hover { border-color: var(--gold); box-shadow: 0 0 25px rgba(200,140,40,0.2); }
.media-card:hover img { transform: scale(1.05); }
.media-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,6,11,0.8) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 16px; }
.media-card:hover .media-card-overlay { opacity: 1; }
.media-card-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.15em; color: var(--gold-light); }
.media-card-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(200,140,40,0.2); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; transition: all 0.3s; opacity: 0; }
.media-card:hover .play-icon { opacity: 1; transform: scale(1.1); }
.play-icon svg { width: 20px; height: 20px; fill: var(--gold); }

/* ══════════════════════════════════════════
   MEDIA CARDS DECORADOS (Stream / Capture / Frap)
   Cada tipo tem cor própria + glow pulsante + cantos decorativos.
   Variáveis customizáveis por modificador via CSS custom properties.
   ════════════════════════════════════════ */
.media-card--live,
.media-card--capture,
.media-card--frap {
  border: 2px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#04060b, #04060b) padding-box,
    linear-gradient(135deg, var(--mc-c1) 0%, var(--mc-c2) 25%, var(--mc-c3) 50%, var(--mc-c2) 75%, var(--mc-c1) 100%) border-box;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.4),
    0 4px 20px var(--mc-glow-soft),
    inset 0 0 40px rgba(0,0,0,0.35);
  animation: mediaCardGlow 3.2s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
@keyframes mediaCardGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(0,0,0,0.4),
      0 4px 20px var(--mc-glow-soft),
      0 0 18px var(--mc-glow-soft),
      inset 0 0 40px rgba(0,0,0,0.35);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0,0,0,0.4),
      0 4px 28px var(--mc-glow-mid),
      0 0 38px var(--mc-glow-strong),
      inset 0 0 40px rgba(0,0,0,0.35);
  }
}

/* Hover sutil (lift + halo moderado) */
.media-card--live:hover,
.media-card--capture:hover,
.media-card--frap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.4),
    0 10px 28px var(--mc-glow-mid),
    0 0 24px var(--mc-glow-soft),
    inset 0 0 40px rgba(0,0,0,0.30);
  animation: none;
  z-index: 5;
}
.media-card--live:hover img,
.media-card--capture:hover img,
.media-card--frap:hover img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.05);
}

/* Cantos decorativos (estilo medieval / colchete dourado-colorido) */
.media-card--live::before,
.media-card--live::after,
.media-card--capture::before,
.media-card--capture::after,
.media-card--frap::before,
.media-card--frap::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 5;
  border: 2px solid var(--mc-c1);
  opacity: 0.9;
  filter: drop-shadow(0 0 5px var(--mc-glow-strong));
  transition: width 0.35s ease, height 0.35s ease;
}
.media-card--live::before,
.media-card--capture::before,
.media-card--frap::before {
  top: 6px; left: 6px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 4px;
}
.media-card--live::after,
.media-card--capture::after,
.media-card--frap::after {
  bottom: 6px; right: 6px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 4px;
}
/* No hover, os cantos crescem levemente */
.media-card--live:hover::before,
.media-card--live:hover::after,
.media-card--capture:hover::before,
.media-card--capture:hover::after,
.media-card--frap:hover::before,
.media-card--frap:hover::after {
  width: 24px;
  height: 24px;
  opacity: 1;
}

/* ── Stream (LIVE) — dourado quente L2 ── */
.media-card--live {
  --mc-c1: #f5d27a;
  --mc-c2: #c8963c;
  --mc-c3: #8b6228;
  --mc-glow-soft:   rgba(200,140,40,0.20);
  --mc-glow-mid:    rgba(200,140,40,0.40);
  --mc-glow-strong: rgba(245,210,122,0.55);
}

/* ── Captura — laranja-fogo (combina com 📸) ── */
.media-card--capture {
  --mc-c1: #ffc878;
  --mc-c2: #e6863c;
  --mc-c3: #9a4a18;
  --mc-glow-soft:   rgba(230,134,60,0.22);
  --mc-glow-mid:    rgba(230,134,60,0.42);
  --mc-glow-strong: rgba(255,200,120,0.55);
}

/* ── Frap — azul gélido (combina com 🎬) ── */
.media-card--frap {
  --mc-c1: #7eb8ff;
  --mc-c2: #3c70d4;
  --mc-c3: #1f3f88;
  --mc-glow-soft:   rgba(60,112,212,0.22);
  --mc-glow-mid:    rgba(60,112,212,0.42);
  --mc-glow-strong: rgba(126,184,255,0.55);
}

/* ── TABS ── */
.tabs-bar { display: flex; gap: 4px; border-bottom: 1px solid var(--border-gold); margin-bottom: 32px; }
.tab-btn { font-family: 'Cinzel', serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); padding: 12px 24px; cursor: pointer; border: none; background: none; transition: color 0.2s; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-btn:hover:not(.active) { color: var(--text-light); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── NEWS ── */
.news-item { display: flex; align-items: center; gap: 20px; padding: 18px 20px; border-radius: 8px; border: 1px solid rgba(200,140,40,0.12); background: rgba(10,14,24,0.6); margin-bottom: 12px; transition: all 0.25s; cursor: pointer; }
.news-item:hover { border-color: rgba(200,140,40,0.35); background: rgba(10,14,24,0.9); transform: translateX(4px); }
.news-thumb { width: 100px; height: 56px; border-radius: 6px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border-gold); }
.news-date { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); white-space: nowrap; min-width: 100px; }
.news-title-el { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600; color: var(--text-light); transition: color 0.2s; }
.news-item:hover .news-title-el { color: var(--gold); }
.news-excerpt { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── RANKINGS ── */
.rank-table { width: 100%; border-collapse: collapse; }
.rank-table thead tr { background: rgba(200,140,40,0.08); border-bottom: 1px solid var(--border-gold); }
.rank-table th { padding: 14px 16px; text-align: left; font-family: 'Cinzel', serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); }
.rank-table tbody tr { border-bottom: 1px solid rgba(200,140,40,0.06); transition: background 0.2s; }
.rank-table tbody tr:hover { background: rgba(200,140,40,0.04); }
.rank-table td { padding: 14px 16px; font-size: 14px; color: var(--text-light); }
.rank-badge { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700; }
.rank-badge-1 { background: linear-gradient(135deg,#b8860b,#ffd700); color: #000; }
.rank-badge-2 { background: linear-gradient(135deg,#708090,#c0c0c0); color: #000; }
.rank-badge-3 { background: linear-gradient(135deg,#8b4513,#cd7f32); color: #fff; }
.rank-badge-n { background: rgba(255,255,255,0.06); color: var(--text-muted); }
.rank-wrap { background: var(--bg-card); border: 1px solid var(--border-gold); border-radius: 8px; overflow: hidden; }

/* ── CROW BANNER ── */
.promo-banner { position: relative; background: linear-gradient(135deg, rgba(8,12,22,0.9), rgba(14,8,2,0.9)); border: 1px solid var(--border-gold); border-radius: 12px; padding: 48px; display: flex; align-items: center; gap: 48px; overflow: hidden; }
.promo-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(200,100,20,0.12) 0%, transparent 60%); }
.promo-banner-img { width: 200px; flex-shrink: 0; filter: drop-shadow(0 0 20px rgba(200,140,40,0.4)); position: relative; z-index: 1; }
.promo-banner-content { position: relative; z-index: 1; }
.promo-badge { display: inline-block; background: linear-gradient(135deg, #c8930a, #e8b830); color: #0a0600; font-family: 'Cinzel', serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; padding: 4px 12px; border-radius: 2px; margin-bottom: 12px; }
.promo-title { font-family: 'Cinzel Decorative', serif; font-size: clamp(20px, 3vw, 32px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.promo-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

/* ── FOOTER ── */
.footer { position: relative; background: var(--bg-void); border-top: 1px solid var(--border-gold); padding: 64px 48px 32px; overflow: hidden; }
.footer::before { content: ''; position: absolute; inset: 0; background-image: url('../images/oath-fold-footer.webp'); background-size: cover; background-position: center; opacity: 0.12; }
.footer-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(200,140,40,0.12); }
.footer-brand-logo-link { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 6px; text-decoration: none; margin-bottom: 16px; }
.footer-brand-logo { height: 52px; width: auto; filter: drop-shadow(0 0 10px rgba(200,140,40,0.4)); transition: filter 0.3s ease, transform 0.3s ease; display: block; }
.footer-brand-logo-label { font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); opacity: 0; transform: translateY(-4px); transition: opacity 0.3s ease, transform 0.3s ease; }
.footer-brand-logo-link:hover .footer-brand-logo { filter: drop-shadow(0 0 18px rgba(245,158,11,0.85)) drop-shadow(0 0 6px rgba(255,200,80,0.5)); transform: scale(1.06); }
.footer-brand-logo-link:hover .footer-brand-logo-label { opacity: 1; transform: translateY(0); }
.footer-brand-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.footer-col-title { font-family: 'Cinzel', serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-copy span { color: var(--green); }
.social-links { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.social-link:hover { background: rgba(200,140,40,0.12); border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

/* ── CORNER ORNAMENT ── */
.card-corner { position: absolute; width: 16px; height: 16px; border-color: var(--gold-dark); border-style: solid; opacity: 0.5; }
.card-corner.tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.card-corner.tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.card-corner.bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.card-corner.br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

/* ── PVP BADGE ── */
.pvp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,140,40,0.10);
  border: 1px solid var(--border-gold);
  border-radius: 6px; padding: 6px 16px;
  font-family: 'Cinzel', serif; font-size: 12px; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.08em;
  transition: all 0.2s;
}
.pvp-badge:hover {
  background: rgba(200,140,40,0.22);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(200,140,40,0.25);
  transform: translateY(-1px);
}
.pvp-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--glow-gold);
}

/* ── DESC GRID RESPONSIVE ── */
.desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 900px) { .desc-grid { grid-template-columns: 1fr !important; } }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .section { padding: 64px 20px; }
  .download-feature { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .promo-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .scroll-indicator { display: none; }
  #descricao > div { padding: 60px 20px 80px; }
  #descricao > div > div[style*="grid-template-columns: 1fr 1fr"] { display: grid; grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .media-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .countdown-item { padding: 0 16px; }
}

/* ── DOWNLOAD POPUP ── */
.dl-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
  background: rgba(2,4,10,0.88); backdrop-filter: blur(14px);
  padding: 20px;
}
.dl-overlay.open { display: flex; }
#media-modal {
  align-items: flex-start;
  overflow-y: auto;
  padding-top: 32px;
  padding-bottom: 32px;
}
#media-modal .dl-modal {
  flex-shrink: 0;
  margin: auto 0;
}
.dl-modal {
  width: min(860px, 100%); border-radius: 20px;
  background: linear-gradient(135deg, rgba(7,12,24,0.97), rgba(10,6,2,0.95));
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 0 1px rgba(200,140,40,0.12), 0 30px 80px rgba(0,0,0,0.6);
  overflow: hidden; position: relative;
}
.dl-modal::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 0% 100%, rgba(200,100,20,0.10) 0%, transparent 55%); pointer-events: none; }
.dl-header { padding: 28px 32px 20px; border-bottom: 1px solid var(--border-gold); display: flex; justify-content: space-between; align-items: center; position: relative; }
.dl-title { font-family: 'Cinzel Decorative', serif; font-size: 22px; font-weight: 700; color: #fff; }
.dl-close { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #fff; border-radius: 8px; padding: 8px 14px; cursor: pointer; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.1em; transition: all 0.2s; }
.dl-close:hover { background: rgba(200,140,40,0.15); border-color: var(--gold); color: var(--gold); }
.dl-body { padding: 28px 32px 32px; }
.dl-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.dl-providers { display: grid; gap: 14px; }
.dl-provider {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; color: #fff;
  transition: all 0.2s; gap: 16px;
}
.dl-provider:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 8px 24px rgba(200,140,40,0.15); }
.dl-provider-info { display: flex; align-items: center; gap: 14px; }
.dl-provider-name { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; color: var(--gold-light); }
.dl-provider-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.dl-provider-arrow { font-size: 18px; color: var(--gold); opacity: 0.7; flex-shrink: 0; }
.dl-icon { width: 42px; height: 42px; border-radius: 8px; background: rgba(200,140,40,0.12); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; overflow: hidden; }
.dl-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }

/* ── POPUP COMUNIDADE ── */
.cp-trigger {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  background: linear-gradient(135deg, #f5b842 0%, #b8862f 100%);
  color: #0a0c10;
  border: 1px solid rgba(255,210,120,0.5);
  border-radius: 999px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 24px rgba(245,184,66,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.cp-trigger[hidden] { display: none !important; }
.cp-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0,0,0,0.55), 0 0 32px rgba(245,184,66,0.7), inset 0 1px 0 rgba(255,255,255,0.35);
}
.cp-trigger-icon { width: 18px; height: 18px; }
.cp-trigger-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(245,184,66,0.6);
  animation: cp-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes cp-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.cp-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15,18,24,0.85) 0%, rgba(0,0,0,0.92) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: cp-fade-in 0.3s ease;
}
.cp-overlay[hidden] { display: none !important; }

@keyframes cp-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes cp-slide-up {
  from { transform: translateY(30px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

.cp-modal {
  background: linear-gradient(180deg, #11161e 0%, #080a0e 100%);
  border: 1px solid rgba(245,184,66,0.28);
  border-radius: 18px;
  padding: 32px 26px 26px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,184,66,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: cp-slide-up 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 92vh;
  overflow-y: auto;
}
.cp-modal::-webkit-scrollbar { width: 6px; }
.cp-modal::-webkit-scrollbar-track { background: transparent; }
.cp-modal::-webkit-scrollbar-thumb { background: rgba(74,222,128,0.3); border-radius: 3px; }

.cp-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}
.cp-close svg { width: 16px; height: 16px; }
.cp-close:hover {
  background: rgba(239,68,68,0.18);
  border-color: rgba(239,68,68,0.45);
  transform: rotate(90deg);
}

.cp-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, #ffd97a 0%, #f5b842 50%, #c08a2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f5b842;
  letter-spacing: 0.22em;
  margin: 0 0 22px;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(245,184,66,0.3);
}

/* Discord card */
.cp-discord-card {
  background: linear-gradient(135deg, rgba(88,101,242,0.18) 0%, rgba(88,101,242,0.04) 100%);
  border: 1px solid rgba(88,101,242,0.35);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(88,101,242,0.12);
}
.cp-discord-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cp-discord-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.cp-discord-icon {
  width: 22px;
  height: 22px;
  color: #5865f2;
  filter: drop-shadow(0 0 6px rgba(88,101,242,0.5));
}
.cp-discord-online {
  font-size: 11px;
  color: #cbd5e1;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cp-discord-online::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  animation: cp-online-pulse 1.8s ease-in-out infinite;
}
@keyframes cp-online-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.cp-discord-widget {
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  min-height: 220px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.cp-discord-widget iframe {
  border: none;
  border-radius: 10px;
  display: block;
  width: 100%;
}
.cp-discord-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 220px;
  gap: 10px;
  color: #94a3b8;
}
.cp-discord-placeholder p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.cp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cp-btn-discord {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 14px rgba(88,101,242,0.4);
}
.cp-btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(88,101,242,0.6);
}

/* WhatsApp row */
.cp-whatsapp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.cp-whatsapp-row.is-single { grid-template-columns: 1fr; }
.cp-btn-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.cp-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.55);
  background: linear-gradient(135deg, #2ee06f 0%, #149883 100%);
}

/* Vote banner */
.cp-vote-banner {
  display: block;
  position: relative;
  overflow: hidden;
  width: fit-content;
  max-width: 220px;
  margin: 0 auto;
  border: none;
  background: none;
  box-shadow: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cp-vote-banner[hidden] { display: none !important; }
.cp-vote-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.cp-vote-banner:hover {
  transform: scale(1.04);
  opacity: 0.9;
}
.cp-vote-shine { display: none; }

#si-grid-olympiad,
#si-grid-customs {
  align-items: stretch;
  background: transparent !important;
}

#si-grid-olympiad > div,
#si-grid-customs > div {
  min-width: 0;
}

#si-grid-olympiad > div > div:last-child,
#si-grid-customs > div > div:last-child {
  line-height: 1.25;
  overflow-wrap: anywhere;
}

/* Mobile */
@media (max-width: 480px) {
  .cp-trigger {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 11px;
  }
  .cp-modal { padding: 26px 18px 20px; }
  .cp-title { font-size: 13px; letter-spacing: 0.18em; }
}

/* Mobile-only polish: compact top bar and first fold */
@media (max-width: 600px) {
  .nav {
    height: 74px;
    padding: 8px 10px;
    gap: 8px;
    background:
      linear-gradient(180deg, rgba(4,6,11,0.98) 0%, rgba(4,6,11,0.93) 100%),
      radial-gradient(ellipse at 18% 0%, rgba(200,140,40,0.16), transparent 52%);
    border-bottom-color: rgba(232,184,48,0.55);
    box-shadow: 0 12px 34px rgba(0,0,0,0.42);
  }

  .nav::after {
    left: 0;
    right: 0;
    opacity: 0.42;
  }

  .nav-logo {
    flex: 0 1 82px;
    min-width: 70px;
  }

  .nav-logo img {
    width: 82px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(232,184,48,0.42));
  }

  .nav-actions {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 6px;
  }

  .online-pill {
    display: none;
  }

  .online-dot {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
  }

  #online-count {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #nav-player-panel-btn {
    height: 38px;
    max-width: 104px;
    justify-content: center;
    gap: 4px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 0;
    line-height: 1.18;
    letter-spacing: 0.08em;
    text-align: center;
    white-space: normal;
    box-shadow: 0 0 18px rgba(200,140,40,0.34), inset 0 1px 0 rgba(255,220,100,0.38);
  }

  #nav-player-panel-btn::after {
    content: attr(data-mobile-label);
    font-size: 9px;
    line-height: 1.18;
    letter-spacing: 0.08em;
  }

  .hamburger {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(232,184,48,0.44);
    border-radius: 6px;
    background: rgba(255,255,255,0.045);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }

  .hamburger span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
  }

  .nav.mobile-menu-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.mobile-menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav.mobile-menu-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav.mobile-menu-open .nav-links {
    position: fixed;
    top: 82px;
    left: 10px;
    right: 10px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(232,184,48,0.38);
    border-radius: 10px;
    background:
      linear-gradient(180deg, rgba(7,10,18,0.98), rgba(10,7,4,0.96)),
      radial-gradient(ellipse at 50% 0%, rgba(232,184,48,0.12), transparent 58%);
    box-shadow: 0 20px 48px rgba(0,0,0,0.58), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
  }

  .nav.mobile-menu-open .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.035);
    color: var(--text-light);
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .nav.mobile-menu-open .nav-links a.active {
    color: var(--gold-light);
    border-color: rgba(232,184,48,0.28);
    background: rgba(200,140,40,0.10);
  }

  .hero {
    min-height: 92vh;
    padding-top: 74px;
    align-items: flex-start;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-content {
    width: 100%;
    padding: 134px 16px 0;
  }

  .hero-badge {
    max-width: min(330px, calc(100vw - 32px));
    padding: 9px 18px;
    margin-bottom: 18px;
    justify-content: center;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.18em;
    white-space: normal;
    background:
      linear-gradient(135deg, rgba(200,140,40,0.20), rgba(80,38,16,0.24)),
      rgba(5,8,14,0.64);
    box-shadow: 0 12px 30px rgba(0,0,0,0.36), inset 0 1px 0 rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
  }

  #noticias.section {
    padding: 56px 14px 64px;
  }

  #noticias .section-header {
    margin-bottom: 22px;
  }

  #noticias .section-title {
    font-size: 28px;
  }

  #noticias .tabs-bar {
    gap: 0;
    margin-bottom: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  #noticias .tabs-bar::-webkit-scrollbar {
    display: none;
  }

  #noticias .tab-btn {
    flex: 1 0 auto;
    padding: 10px 12px;
    font-size: 10px;
    text-align: center;
    white-space: nowrap;
  }

  #news-list,
  #promos-list {
    display: grid;
    gap: 14px;
  }

  #news-list > a,
  #promos-list > a,
  #news-list .news-item {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100%;
    min-width: 0;
    padding: 14px !important;
    border-radius: 13px !important;
    background:
      linear-gradient(180deg, rgba(8,12,22,0.90), rgba(6,8,14,0.82)),
      radial-gradient(ellipse at 50% 0%, rgba(200,140,40,0.12), transparent 62%) !important;
    border: 1px solid rgba(232,184,48,0.22) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
    transform: none !important;
  }

  #news-list > a > div:nth-child(1) {
    order: 3;
    min-width: 0 !important;
    width: 100%;
    color: rgba(232,223,200,0.58);
    font-size: 11px;
    line-height: 1.25;
  }

  #news-list > a > div:nth-child(2) {
    order: 1;
    width: 100% !important;
    min-width: 0 !important;
  }

  #news-list > a > div:nth-child(2) > div {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    max-height: 172px;
    border-radius: 10px !important;
    border-color: rgba(232,184,48,0.34) !important;
  }

  #news-list > a > div:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #news-list > a > div:nth-child(3) {
    order: 2;
    min-width: 0 !important;
  }

  #news-list > a > svg {
    display: none !important;
  }

  #news-list h4,
  #promos-list h4,
  #news-list .news-title-el {
    font-family: 'Cinzel', serif;
    font-size: 17px !important;
    line-height: 1.35 !important;
    color: #fff !important;
    overflow-wrap: anywhere;
  }

  #news-list p,
  #promos-list p,
  #news-list .news-excerpt {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: rgba(232,223,200,0.66) !important;
  }

  #news-list .news-item {
    flex-direction: column;
  }

  #news-list .news-thumb {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  #news-list .news-date {
    order: 3;
    min-width: 0;
    white-space: normal;
    font-size: 11px;
  }

  #rankings.section {
    padding: 56px 10px 64px;
  }

  #rankings .tabs-bar {
    gap: 0;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  #rankings .tabs-bar::-webkit-scrollbar {
    display: none;
  }

  #rankings .tab-btn {
    flex: 0 0 auto;
    min-width: 118px;
    padding: 10px 12px;
    font-size: 10px;
    text-align: center;
    white-space: nowrap;
  }

  #rankings .rank-wrap {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(74,222,128,0.68) rgba(255,255,255,0.08);
  }

  #rankings .rank-wrap::-webkit-scrollbar {
    height: 7px;
  }

  #rankings .rank-wrap::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.06);
  }

  #rankings .rank-wrap::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(74,222,128,0.65), rgba(74,222,128,0.95));
    border-radius: 999px;
  }

  #rankings .rank-wrap::after {
    content: "arraste para ver mais";
    position: sticky;
    right: 8px;
    bottom: 8px;
    float: right;
    display: block;
    width: max-content;
    margin: -28px 8px 8px auto;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(4,6,11,0.74);
    border: 1px solid rgba(232,184,48,0.22);
    color: rgba(232,184,48,0.78);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    pointer-events: none;
  }

  #rankings .rank-table {
    min-width: 680px;
    width: 680px;
  }

  #rankings .rank-table th,
  #rankings .rank-table td {
    padding: 13px 14px;
    white-space: nowrap;
  }

  #rankings .rank-table th:first-child,
  #rankings .rank-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: rgba(9,12,20,0.98);
  }

  #rankings .rank-table td:nth-child(2) {
    white-space: normal;
    min-width: 120px;
  }
}

/* ═══════════════════════════════════════════════════════════
   IDENTIDADE DARK FANTASY (template adaptado — paleta aço/gélida)
   Camadas cinematográficas, ornamentos parallax, divisores premium
   ═══════════════════════════════════════════════════════════ */

.page-vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    repeating-radial-gradient(circle at 20% 10%, rgba(255,255,255,0.035) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 50% 28%, rgba(217,236,249,0.08), transparent 22%),
    radial-gradient(circle at 52% 80%, rgba(112,160,195,0.10), transparent 26%);
  mix-blend-mode: screen;
}

.mist {
  position: fixed; inset: -22%; z-index: 1; pointer-events: none;
  filter: blur(28px); opacity: 0.72;
}
.mist-one {
  background:
    radial-gradient(ellipse at 12% 28%, rgba(205,229,244,0.12), transparent 32%),
    radial-gradient(ellipse at 76% 18%, rgba(167,198,219,0.12), transparent 28%),
    radial-gradient(ellipse at 50% 64%, rgba(126,165,193,0.12), transparent 30%);
  animation: fogDrift 18s ease-in-out infinite alternate;
}
.mist-two {
  background:
    radial-gradient(ellipse at 15% 76%, rgba(226,239,246,0.08), transparent 30%),
    radial-gradient(ellipse at 86% 78%, rgba(170,204,229,0.11), transparent 28%);
  animation: fogDrift 24s ease-in-out infinite alternate-reverse;
}
@keyframes fogDrift {
  0%   { transform: translate3d(-3%, -1%, 0) scale(1); }
  100% { transform: translate3d( 4%,  2%, 0) scale(1.05); }
}

/* Ornamentos reais com parallax do mouse */
.real-deco {
  position: absolute; pointer-events: none; z-index: 4;
  --mouse-x: 0px; --mouse-y: 0px; --rot: 0deg; --scale: 1;
  transform: translate3d(var(--mouse-x), var(--mouse-y), 0) rotate(var(--rot)) scale(var(--scale));
  transition: filter 0.4s ease;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.55));
}
.real-raven-top-left    { top: -40px;  left: -30px;  width: 240px; --rot: -5deg; opacity: 0.95; }
.real-feather-left-top  { top: 80px;   left: 8%;     width: 160px; --rot: -8deg; opacity: 0.85; }
.real-sword-left-main   { bottom: -60px; left: -40px; width: 260px; --rot: -2deg; opacity: 0.92; }
.real-sword-chain-right { top: 20%;    right: -50px; width: 280px; --rot: 8deg;  opacity: 0.92; }
.real-feather-right-main{ top: 60%;    right: 6%;    width: 180px; --rot: 10deg; opacity: 0.85; }
.real-raven-faq         { bottom: -30px; right: -20px; width: 220px; --rot: 6deg; opacity: 0.95; }
.real-feather-quote     { top: 10px;   left: 4%;     width: 140px; --rot: -10deg; opacity: 0.80; }

@media (max-width: 900px) {
  .real-deco { display: none; }
}

/* Ornamento "atlas" (faixa decorativa sutil acima/abaixo do hero) */
.ornament-atlas {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: min(1200px, 96%); opacity: 0.35; pointer-events: none; z-index: 2;
  mix-blend-mode: screen;
}
.ornament-atlas-top    { top: -40px; }
.ornament-atlas-bottom { bottom: -40px; transform: translateX(-50%) scaleY(-1); }

/* Divisor fino premium entre seções */
.ornate-divider {
  width: 100%; height: 28px; margin: 0; pointer-events: none;
  background: center / contain no-repeat url('../images/ornaments/divider-thin-premium.svg');
  opacity: 0.55;
}
.section-separator { margin: 8px 0; }

/* Painel "quebrado" — bordas irregulares (clip-path) para seções principais */
.panel-broken {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6,14,22,0.92), rgba(2,5,9,0.95));
  border: 1px solid var(--border-gold);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.65),
    inset 0 0 60px rgba(158,204,238,0.06);
  -webkit-clip-path: polygon(0 6px, 14px 0, calc(100% - 14px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 6px));
  clip-path: polygon(0 6px, 14px 0, calc(100% - 14px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 6px));
}

/* Kicker / micro-labels estilo template */
.kicker {
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}

/* Citação serifada (Cormorant) — para frases de impacto */
.hero-lead, .hero-tagline, .quote-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; letter-spacing: 0.01em;
}

/* Reforço da paleta gélida no hero */
.hero-vignette {
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(2,5,9,0.78) 100%) !important;
  clip-path: polygon(4% 0, 96% 0, 100% 5%, 99.2% 35%, 100% 40%, 98.5% 72%, 100% 80%, 96% 100%, 5% 99%, 0 94%, 1% 66%, 0 60%, 1.3% 21%, 0 15%);
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(2,5,9,0.42) 0%, rgba(6,16,26,0.52) 60%, rgba(2,5,9,0.78) 100%) !important;
}

/* Bordas quebradas apenas nas camadas de fundo — ornamentos continuam livres */
.hero-bg,
.hero-overlay,
.hero-vignette {
  clip-path: polygon(4% 0, 96% 0, 100% 5%, 99.2% 35%, 100% 40%, 98.5% 72%, 100% 80%, 96% 100%, 5% 99%, 0 94%, 1% 66%, 0 60%, 1.3% 21%, 0 15%);
}

/* ── NAV GAME-STYLE ── */
.main-nav {
  gap: 2px;
}
.main-nav a {
  position: relative;
  padding: 5px 13px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(224, 238, 246, 0.62);
  transition: color .22s, text-shadow .22s;
}
.main-nav a + a::before {
  content: '◆';
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4px;
  color: rgba(214, 230, 242, 0.28);
  letter-spacing: 0;
  pointer-events: none;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 13px;
  right: 13px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity .22s, transform .28s ease;
}
.main-nav a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 18px rgba(244, 248, 251, 0.5), 0 0 36px rgba(214, 230, 242, 0.16);
}
.main-nav a:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

/* Body com radial-gradients azulados sobre o void */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.30;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 78%);
          mask-image: radial-gradient(circle at center, black, transparent 78%);
}

/* Garantir que conteúdo principal fique acima das camadas cinematográficas */
.nav, .hero, section, footer { position: relative; z-index: 5; }
.hero { isolation: isolate; }

/* cp-floating-hardfix */
.cp-trigger { position: fixed !important; right: 24px; bottom: 24px; z-index: 9998; }
.cp-overlay { position: fixed !important; inset: 0; z-index: 9999; }
