:root{
  --bg:#0c1320;
  --surface:#121c2e;
  --surface-2:#18243a;
  --line:#23344f;
  --text:#eaf0fb;
  --muted:#9fb0cb;
  --accent:#f5c518;
  --accent-2:#19b35a;
  --radius:14px;
}

*{box-sizing:border-box;margin:0;padding:0}

html{-webkit-text-size-adjust:100%}

body{
  font-family:"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

img{max-width:100%;display:block}

a{color:inherit;text-decoration:none}

.wrap{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:0 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:transform .15s ease,filter .15s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}

.btn-accent{background:var(--accent);color:#1a1405}
.btn-accent:hover{filter:brightness(1.05)}

.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover{border-color:#fff}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(12,19,32,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:62px;
}
.brand{display:flex;align-items:center;gap:10px;color:var(--accent)}
.brand-mark{flex:none}
.brand-name{
  color:var(--text);
  font-weight:800;
  font-size:17px;
  letter-spacing:.2px;
}
.topbar-cta{padding:10px 18px;font-size:14px}

.hero{
  position:relative;
  min-height:clamp(420px,70vh,640px);
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-inner{position:relative;z-index:1;padding-top:40px;padding-bottom:40px}
.hero-tag{
  display:inline-block;
  background:var(--accent);
  color:#1a1405;
  font-weight:800;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:7px 14px;
  border-radius:999px;
}
.hero-title{
  font-size:clamp(28px,6vw,52px);
  font-weight:900;
  line-height:1.1;
  margin:16px 0 14px;
  max-width:18ch;
}
.hero-text{
  font-size:clamp(15px,2.4vw,19px);
  color:var(--text);
  max-width:54ch;
  margin-bottom:24px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-top:24px;
  font-size:13px;
  font-weight:600;
  color:var(--text);
}
.hero-meta span{display:inline-flex;align-items:center;gap:7px}
.hero-meta span::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--accent-2);
}

.crumbs{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--muted);
  padding:18px 0;
}
.crumbs a:hover{color:var(--text)}
.crumbs .sep{opacity:.5}
.crumbs .current{color:var(--text);font-weight:600}

.section{padding:30px 0}
.section-head{margin-bottom:22px}
.section-title{font-size:clamp(22px,4vw,30px);font-weight:800}
.section-sub{color:var(--muted);margin-top:6px;max-width:60ch}

.grid{display:grid;gap:16px}
.cards{grid-template-columns:repeat(4,1fr)}
.steps{grid-template-columns:repeat(3,1fr)}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  transition:border-color .15s ease,transform .15s ease;
}
.card:hover{border-color:var(--accent);transform:translateY(-3px)}
.card-ico{
  width:54px;height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:var(--surface-2);
  color:var(--accent);
  margin-bottom:14px;
}
.card-ico svg{width:30px;height:30px}
.card-title{font-size:18px;font-weight:700;margin-bottom:8px}
.card-text{color:var(--muted);font-size:14px;flex:1}
.card-link{
  margin-top:14px;
  color:var(--accent);
  font-weight:700;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.card-link::after{content:"\2192"}

.table-scroll{
  width:100%;
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:var(--radius);
  -webkit-overflow-scrolling:touch;
}
.odds-table{
  width:100%;
  border-collapse:collapse;
  min-width:520px;
}
.odds-table th,.odds-table td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid var(--line);
  font-size:14px;
  white-space:nowrap;
}
.odds-table thead th{
  background:var(--surface-2);
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
}
.odds-table tbody tr:last-child td{border-bottom:none}
.odds-table td:first-child{font-weight:600;white-space:normal}
.cell-link{
  display:inline-block;
  background:var(--accent);
  color:#1a1405;
  font-weight:700;
  padding:7px 16px;
  border-radius:999px;
  font-size:13px;
}

.promo{padding:14px 0 30px}
.promo-inner{
  background:linear-gradient(120deg,var(--surface-2),var(--surface));
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.promo-title{font-size:clamp(20px,3.4vw,26px);font-weight:800;margin-bottom:6px}
.promo-line{color:var(--muted);max-width:54ch}

.step{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 20px;
}
.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;height:38px;
  border-radius:50%;
  background:var(--accent);
  color:#1a1405;
  font-weight:800;
  margin-bottom:12px;
}
.step-title{font-size:17px;font-weight:700;margin-bottom:6px}
.step-text{color:var(--muted);font-size:14px}
.center{text-align:center;margin-top:26px}

.content{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:clamp(22px,4vw,40px);
  margin:30px 0 40px;
  max-width:100%;
}
.content h1{font-size:clamp(24px,5vw,36px);font-weight:900;line-height:1.2;margin-bottom:18px}
.content h2{font-size:clamp(20px,3.6vw,28px);font-weight:800;margin:30px 0 12px;padding-top:8px}
.content h3{font-size:clamp(18px,3vw,22px);font-weight:700;margin:24px 0 10px;color:var(--accent)}
.content h4{font-size:17px;font-weight:700;margin:22px 0 10px}
.content p{color:#cdd9ec;margin-bottom:14px}
.content strong{color:var(--text)}
.content ul{margin:0 0 16px;padding-left:22px}
.content li{color:#cdd9ec;margin-bottom:8px}
.content table{
  width:100%;
  border-collapse:collapse;
  margin:14px 0 20px;
  display:block;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.content thead{background:var(--surface-2)}
.content th,.content td{
  border:1px solid var(--line);
  padding:12px 14px;
  text-align:left;
  font-size:14px;
}
.content th{color:var(--muted);text-transform:uppercase;font-size:12px;letter-spacing:.5px}

.footer{
  border-top:1px solid var(--line);
  background:var(--surface);
  padding:34px 0;
  margin-top:10px;
}
.footer-brand{font-weight:800;font-size:18px;margin-bottom:10px}
.footer-note{color:var(--muted);font-size:13px;max-width:70ch;margin-bottom:16px}
.footer-row{display:flex;flex-wrap:wrap;align-items:center;gap:16px;margin-bottom:16px}
.age-badge{
  background:var(--accent-2);
  color:#062613;
  font-weight:800;
  font-size:13px;
  padding:4px 10px;
  border-radius:8px;
}
.footer-link{color:var(--muted);font-size:14px;font-weight:600}
.footer-link:hover{color:var(--text)}
.footer-copy{color:var(--muted);font-size:13px;border-top:1px solid var(--line);padding-top:16px}

@media (max-width:900px){
  .cards{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:680px){
  .topbar-cta{padding:9px 14px}
  .brand-name{font-size:15px}
  .steps{grid-template-columns:1fr}
  .promo-inner{flex-direction:column;align-items:flex-start}
  .promo-inner .btn{width:100%}
  .hero-actions .btn{flex:1 1 auto}
}

@media (max-width:480px){
  .cards{grid-template-columns:1fr}
  .hero{min-height:auto;padding:30px 0}
  .hero-title{max-width:100%}
}
