*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:#0b1020;
  color:#e5e7eb;
}
.container{max-width:1100px;margin:0 auto;padding:32px}
.header{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}
.header h1{margin:0;font-size:40px}
.muted{color:#94a3b8}
button{
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:white;border:none;border-radius:12px;padding:12px 18px;
  font-weight:700;cursor:pointer;box-shadow:0 10px 30px rgba(37,99,235,.35)
}
.hero{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px}
.odds-card{
  background:rgba(15,23,42,.9);
  border:1px solid rgba(148,163,184,.18);
  border-radius:20px;padding:24px;
  margin-bottom:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.25)
}
.odds-head h2{margin:0 0 6px}
.odds-head .muted{margin:0 0 18px;font-size:14px;max-width:640px}
.odds-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:14px}
.odds-item{
  background:#111827;
  border:1px solid rgba(148,163,184,.14);
  border-radius:14px;
  padding:14px
}
.odds-value{font-size:22px;font-weight:800}
.odds-tier{margin-top:4px;font-size:13px;color:#94a3b8}
.odds-highlight{
  border-color:rgba(124,58,237,.55);
  background:linear-gradient(135deg,rgba(37,99,235,.18),rgba(124,58,237,.18))
}
.odds-highlight .odds-value{color:#c4b5fd}
.hero-card{
  background:rgba(15,23,42,.9);
  border:1px solid rgba(148,163,184,.18);
  border-radius:20px;padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.25)
}
.label{font-size:13px;color:#94a3b8;text-transform:uppercase;letter-spacing:.08em}
.big{font-size:34px;font-weight:800;margin-top:10px}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.card{
  background:rgba(15,23,42,.9);
  border:1px solid rgba(148,163,184,.18);
  border-radius:20px;padding:24px;
  margin-bottom:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.25)
}
.pick{
  background:#111827;
  border:1px solid rgba(148,163,184,.14);
  border-radius:14px;
  padding:14px;
  margin-bottom:12px;
  font-weight:700;
  font-size:20px
}
table{width:100%;border-collapse:collapse}
th,td{padding:12px;border-bottom:1px solid rgba(148,163,184,.15);text-align:left}
th{color:#94a3b8;font-size:12px;text-transform:uppercase;letter-spacing:.06em;font-weight:600}
td{color:#e5e7eb}
.col-index{width:48px;color:#64748b}
.col-date{width:160px;white-space:nowrap}
@media(max-width:800px){
  .hero,.grid{grid-template-columns:1fr}
  .header{flex-direction:column;align-items:flex-start;gap:16px}
}
