.odds-hero {
  padding: 56px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(31, 2, 43, 0.6) 100%);
  border-bottom: 1px solid var(--border);
}

.odds-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.odds-hero-text {
  flex: 1;
}

.odds-hero-text h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.odds-hero-text p {
  color: var(--muted);
  font-size: 1rem;
}

.odds-hero-visual {
  flex-shrink: 0;
  width: 320px;
  max-height: 280px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.odds-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 500px;
  max-height: 320px;
}

.odds-hero-visual::before {
  content: "SCALE 1:1";
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  background: rgba(18, 1, 26, 0.8);
  padding: 2px 6px;
}

.odds-content {
  padding: 48px 0 64px;
  position: relative;
  z-index: 1;
}

.odds-table-wrap {
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid var(--border);
}

.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.odds-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--surface);
  color: var(--accent);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.odds-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.odds-table tr:last-child td {
  border-bottom: none;
}

.odds-section h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 36px 0 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.odds-section h2:first-child {
  margin-top: 0;
}

.odds-section p {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text);
}

.odds-pullquote {
  font-size: 1.125rem;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  font-style: italic;
  background: rgba(45, 212, 191, 0.05);
}

@media (max-width: 767px) {
  .odds-hero-inner {
    flex-direction: column;
  }
  .odds-hero-visual {
    width: 100%;
    max-width: 100%;
    max-height: 200px;
    overflow: hidden;
  }
  .odds-hero-visual img {
    max-width: 100%;
    width: 100%;
  }
}
