/* ═══════════════════════════════
   1. BANNER HEADER
═══════════════════════════════ */
.page-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,1) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.banner-kicker {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.banner-title {
  font-family: var(--font-h);
  font-size: clamp(50px, 8vw, 100px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 20px;
}

.banner-desc {
  font-size: 16px;
  color: rgba(240, 237, 230, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════
   2. LINHA DO TEMPO (DIAGONAL DE CRESCIMENTO)
═══════════════════════════════ */
.timeline-horizontal {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 30px;
  margin-top: 80px;
  padding-bottom: 40px;
  transform: none; 
}

/* O trilho vermelho de fundo */
.timeline-track {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(232, 50, 10, 0.4);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--red);
  margin-bottom: 24px;
  margin-left: 20px;
  transition: all 0.3s;
}

.step-content {
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid var(--gray2);
  padding: 24px;
  border-radius: 12px;
  transition: all 0.3s;
}

.timeline-step:hover {
  transform: translateY(-10px);
}
.timeline-step:hover .step-dot {
  background: var(--red);
  box-shadow: 0 0 15px var(--red);
}
.timeline-step:hover .step-content {
  border-color: var(--red);
  background: rgba(26, 26, 26, 0.8);
}

.step-year { 
  font-family: var(--font-m); 
  font-size: 14px; 
  color: var(--red); 
  letter-spacing: 0.1em; 
  margin-bottom: 8px; 
  font-weight: 700; 
}
.step-title { 
  font-family: var(--font-h); 
  font-size: 26px; 
  color: var(--white); 
  text-transform: uppercase; 
  font-weight: 900; 
  margin-bottom: 12px; 
}
.step-desc { 
  font-size: 14px; 
  color: rgba(240, 237, 230, 0.7); 
  line-height: 1.6; 
}

/* Mobile */
@media (max-width: 900px) {
  .timeline-horizontal { 
    flex-direction: column; 
    gap: 40px; 
    margin-top: 40px; 
    transform: rotate(0deg); /* Volta ao normal no celular */
  }
  .timeline-track { left: 28px; top: 0; bottom: 0; width: 2px; height: 100%; }
  .timeline-step { flex-direction: row; margin-left: 0; }
  .step-dot { position: absolute; left: 21px; top: 30px; margin: 0; }
  .step-content { margin-left: 60px; width: calc(100% - 60px); }
}

/* ═══════════════════════════════
   3. MODALIDADES
═══════════════════════════════ */
.mind-engine {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: stretch;
}

.engine-visual {
  background: #0A0A0A;
  border: 1px solid var(--gray2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  transform: none;
  transition: transform .3s ease, border-color .3s ease;
}

.engine-visual:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 241, 53, .35);
}

.engine-header {
  height: 48px;
  padding: 0 18px;
  background: #151515;
  border-bottom: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,237,230,.45);
}

.engine-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(232, 50, 10, .8);
  animation: enginePulse 1.3s infinite;
}

@keyframes enginePulse {
  0% { opacity: .4; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: .4; transform: scale(.8); }
}

.engine-screen {
  min-height: 520px;
  padding: 32px;
  background:
    radial-gradient(circle at center, rgba(200,241,53,.08), transparent 42%),
    linear-gradient(180deg, rgba(232,50,10,.05), transparent 60%);
}

.engine-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,237,230,.45);
}

.engine-status strong {
  color: var(--red);
}

.engine-main {
  position: relative;
  min-height: 250px;
  border: 1px dashed rgba(240,237,230,.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
}

.engine-main::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(200,241,53,.15);
  border-radius: 50%;
  animation: rotateLoop 12s linear infinite;
}

.engine-main::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(232,50,10,.1);
  border-radius: 50%;
  animation: rotateLoop 18s linear infinite reverse;
}

@keyframes rotateLoop {
  to { transform: rotate(360deg); }
}

.brain-core {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  box-shadow: 0 0 40px rgba(200,241,53,.25);
  transition: transform .3s ease;
}

.engine-visual.changed .brain-core {
  transform: scale(.94);
}

.loop-tag {
  position: absolute;
  z-index: 3;
  font-family: var(--font-m);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  background: #151515;
  border: 1px solid var(--gray2);
  border-radius: 999px;
  padding: 10px 14px;
  transition: all .3s ease;
}

.tag-1 { top: 28px; left: 34px; }
.tag-2 { top: 28px; right: 34px; color: var(--lime); }
.tag-3 { bottom: 28px; right: 34px; color: var(--red); }
.tag-4 { bottom: 28px; left: 34px; }

.engine-copy {
  margin-bottom: 20px;
}

.engine-copy h3 {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.engine-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(240,237,230,.65);
  max-width: 560px;
}

.engine-terminal {
  font-family: var(--font-m);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(240,237,230,.65);
  background: rgba(10,10,10,.78);
  border: 1px solid var(--gray2);
  border-radius: 12px;
  padding: 18px 20px;
  min-height: 122px;
}

.terminal-line::before {
  content: '> ';
  color: var(--lime);
}

.red-code {
  color: var(--red);
}

.engine-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.engine-item {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px;
  background: rgba(26, 26, 26, .4);
  border: 1px solid var(--gray2);
  border-radius: 14px;
  color: var(--white);
  cursor: none;
  transition: all .3s ease;
}

.engine-item:hover,
.engine-item.active {
  background: rgba(200, 241, 53, .05);
  border-color: rgba(200, 241, 53, .35);
  transform: translateX(6px);
}

.engine-item span {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 900;
  color: #2a2a2a;
  line-height: 1;
}

.engine-item:hover span,
.engine-item.active span {
  color: var(--lime);
}

.engine-item h3 {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.engine-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(240,237,230,.65);
}

.brain-core {
  animation: brainPulse 2.4s ease-in-out infinite;
}

@keyframes brainPulse {
  0%, 100% {
    box-shadow: 0 0 32px rgba(200,241,53,.18);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 56px rgba(200,241,53,.35);
    transform: scale(1.04);
  }
}

.loop-tag {
  animation: tagFloat 3s ease-in-out infinite;
}

.tag-1 { animation-delay: 0s; }
.tag-2 { animation-delay: .3s; }
.tag-3 { animation-delay: .6s; }
.tag-4 { animation-delay: .9s; }

@keyframes tagFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: .75;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.engine-main::before {
  animation: rotateLoop 12s linear infinite, ringPulse 2.8s ease-in-out infinite;
}

.engine-main::after {
  animation: rotateLoop 18s linear infinite reverse, ringPulse 3.4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% {
    opacity: .35;
  }
  50% {
    opacity: .8;
  }
}

@media (max-width: 900px) {
  .mind-engine {
    grid-template-columns: 1fr;
  }

  .engine-screen {
    min-height: auto;
    padding: 24px;
  }

  .engine-main {
    min-height: 240px;
  }

  .brain-core {
    width: 140px;
    height: 140px;
    font-size: 26px;
  }

  .loop-tag {
    font-size: 9px;
    padding: 8px 10px;
  }

  .engine-item {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .engine-item span {
    font-size: 34px;
  }
}
/* ═══════════════════════════════
   4. DOSSIÊ DAS BETS (LISTA)
═══════════════════════════════ */
.dossier-list-container {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
}

.dossier-item {
  border-bottom: 1px solid var(--gray2);
  padding: 30px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.dossier-item:first-child { border-top: 1px solid var(--gray2); }

.dossier-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.d-num {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 900;
  color: #222;
  transition: color 0.3s;
}

.d-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.d-logo {
  width: 48px;
  height: 48px;
  background: #FFF;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.d-names h3 {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}

.d-names span {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.d-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}

.d-label {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.d-val {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 900;
}

.text-lime { color: var(--lime); }
.text-red { color: var(--red); }

.d-arrow {
  color: var(--muted);
  font-size: 24px;
  transition: color 0.3s, transform 0.3s;
}

.dossier-hidden {
  max-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  padding-left: 108px;
  padding-right: 64px;
}

.d-tactic {
  font-family: var(--font-m);
  font-size: 13px;
  color: rgba(240, 237, 230, 0.7);
}

.t-label { color: var(--lime); }

.d-fine {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--red);
  border: 1px solid rgba(232, 50, 10, 0.5);
  padding: 8px 16px;
  border-radius: 4px;
}

.dossier-item:hover .d-names h3 { color: var(--lime); }
.dossier-item:hover .d-num { color: #333; }
.dossier-item:hover .d-arrow { color: var(--lime); transform: translateX(5px); }
.dossier-item:hover .d-logo img { transform: scale(1.1); }
.dossier-item:hover .dossier-hidden { max-height: 100px; opacity: 1; margin-top: 24px; }

.dossier-conclusion {
  max-width: 1200px;
  margin: 0 auto;
  border-left: 4px solid var(--red);
  padding-left: 30px;
}

.c-kicker {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.dossier-conclusion h2 {
  font-family: var(--font-h);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.modal-source-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease;
}

.modal-source-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .dossier-row { flex-wrap: wrap; gap: 20px; }
  .d-num { display: none; }
  .d-brand { min-width: 100%; }
  .dossier-hidden { flex-direction: column; 
    align-items: flex-start; 
    gap: 16px; 
    padding-left: 0; 
    padding-right: 0; 
}
  .dossier-item:hover .dossier-hidden { max-height: 200px; }
}


/* ═══════════════════════════════
   5. SEÇÃO DE GLOSSÁRIO
═══════════════════════════════ */

/* Container que envolve os cards */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.glossary-subtitle {
    max-width: 680px;
    color: rgba(240, 237, 230, 0.72);
    line-height: 1.6;
    font-size: 16px;
}

.glossary-card {
  background-color: #121212; /* Fundo escuro do card */
  border: 1px solid #1a1a1a;    /* Borda sutil */
  padding: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}

/* Efeito de destaque verde (como o do card Near-miss na imagem) */
.glossary-card:hover,
.glossary-card.active {
  border-color: #9ef01a; /* Cor limão/verde do seu tema */
}

/* As tags pequenas no topo de cada card */
.glossary-tag {
  background-color: #9ef01a; /* Cor verde-limão */
  color: #000000;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 2px 6px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

/* Título do Termo */
.glossary-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: 0.03em;
}

/* Descrição do Termo */
.glossary-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #a0a0a0; /* Texto mais fosco/muted */
  margin: 0;
}

.glossary-card p strong {
  color: #ffffff; /* Destaca termos como "Return to Player" */
}

/* Linha dos botões de filtro (Todos, Siglas, etc) */
.glossary-filter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.glossary-filter {
  background: transparent;
  border: 1px solid #333;
  color: #888;
  padding: 6px 16px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

/* Filtro Ativo (Botão "Todos" aceso na imagem) */
.glossary-filter.on {
  background-color: #9ef01a;
  color: #000;
  border-color: #9ef01a;
}



/* ═══════════════════════════════
   5. SEÇÃO DE CONTRIBUIÇÃO 
═══════════════════════════════ */
.suggestion-section {
  padding: 60px 48px;
  background: var(--gray);
  border-top: 1px solid #2a2a2a;
  border-radius: 14px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.suggestion-grid {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.s-title {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.s-desc {
  color: rgba(240, 237, 230, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.s-form input, .s-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  font-family: var(--font-b);
  outline: none;
  transition: border-color .2s;
}

.s-form input:focus, .s-form textarea:focus { border-color: var(--lime); }

.s-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}

.s-btn:hover { background: var(--lime); }
.s-btn.sent { background: rgba(200, 241, 53, 0.15); color: var(--lime); }

@media (max-width: 900px) {
  .suggestion-grid { grid-template-columns: 1fr; gap: 40px; }
  .suggestion-section { padding: 40px 24px; margin: 0 20px 60px; }
}

/* ═══════════════════════════════
   6. INFLUENCIADORES (FAMOSOS)
═══════════════════════════════ */
.influencer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.inf-panel {
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inf-red {
  border-top: 4px solid var(--red);
  background: linear-gradient(180deg, rgba(232, 50, 10, 0.05) 0%, transparent 100%);
}

.inf-green {
  border-top: 4px solid var(--lime);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.05) 0%, transparent 100%);
}

.inf-panel-title {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.inf-red .inf-panel-title { color: var(--red); }
.inf-green .inf-panel-title { color: var(--lime); }

.inf-panel-desc {
  font-size: 14px;
  color: rgba(240, 237, 230, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.inf-card {
  background: #0A0A0A;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.inf-red .inf-card:hover { border-color: rgba(232, 50, 10, 0.3); transform: translateX(-4px); }
.inf-green .inf-card:hover { border-color: rgba(200, 241, 53, 0.3); transform: translateX(4px); }

.inf-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.inf-avatar {
  width: 48px;
  height: 48px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  color: var(--muted);
  background-size: cover;
  background-position: center;
}

.inf-info h4 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.inf-info span {
  font-family: var(--font-m);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.inf-card p {
  font-size: 13px;
  color: rgba(240, 237, 230, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1; /* Empurra o botão pro fundo */
}

.inf-action {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  margin-top: auto;
}

.inf-red .inf-card:hover .inf-action { color: var(--red); }
.inf-green .inf-card:hover .inf-action { color: var(--lime); }

@media (max-width: 900px) {
  .influencer-layout { grid-template-columns: 1fr; }
  .inf-red .inf-card:hover, .inf-green .inf-card:hover { transform: translateY(-4px); }
  .inf-panel { padding: 30px 20px; }
}

/* ═══════════════════════════════
   7. MODAL INVESTIGATIVO GERAL
═══════════════════════════════ */
.bet-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bet-modal-overlay.active { opacity: 1; pointer-events: all; }

.bet-modal-box {
  background: #0A0A0A;
  border: 1px solid var(--gray2);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.bet-modal-overlay.active .bet-modal-box { transform: translateY(0); }

.bet-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--font-b);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.bet-modal-close:hover { background: var(--red); }

.modal-brand-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.modal-logo {
  width: 60px; height: 60px; background: #FFF; border-radius: 12px; padding: 6px;
  display: flex; align-items: center; justify-content: center;
}
.modal-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.modal-title { font-family: var(--font-h); font-size: 36px; font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 1; }
.modal-section-title { font-family: var(--font-m); font-size: 11px; color: var(--lime); text-transform: uppercase; letter-spacing: 0.1em; margin: 32px 0 12px; border-bottom: 1px solid var(--gray2); padding-bottom: 8px; }
.modal-text { font-size: 14px; color: rgba(240, 237, 230, 0.7); line-height: 1.7; }
.modal-text strong { color: var(--white); }

.bet-modal-box::-webkit-scrollbar { width: 8px; }
.bet-modal-box::-webkit-scrollbar-track { background: #0A0A0A; }
.bet-modal-box::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }