
:root{
  --yellow:#FFC107;
  --yellow2:#FFB000;
  --black:#0B0B0B;
  --card:#101010;
  --white:#FFFFFF;
  --muted: rgba(255,255,255,.78);
  --radius:20px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  background: var(--yellow);
  color:#111;
}
a{color:inherit}

.header{
  background:var(--black);
  color:#fff;
  padding:14px 16px;
  position:relative;   /* plus sticky */
  top:auto;
  z-index:1;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header .inner{
  max-width:1180px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex; align-items:flex-end; gap:10px;
  font-weight:1000;
  letter-spacing:.2px;
}
.brand .title{font-size:22px; line-height:1}
.brand .sub{font-size:11px; opacity:.85; font-weight:900; letter-spacing:.08em}
.brand .mel{color:#fff}
.brand .bet{color:var(--yellow)}
.actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:950;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  color:#fff;
  white-space:nowrap;
}
.btn:hover{opacity:.95}
.btn-yellow{
  background:linear-gradient(180deg,var(--yellow),var(--yellow2));
  border-color:rgba(0,0,0,.15);
  color:#111;
}
.lang{
  padding:9px 10px; border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  font-weight:950; text-decoration:none;
  opacity:.9;
}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:18px 16px 30px;
}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:center;
  padding:26px 18px;
  border-radius:28px;
  background:
    radial-gradient(700px 300px at 20% 15%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(900px 380px at 90% 10%, rgba(0,0,0,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,193,7,.98), rgba(255,193,7,.92));
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  overflow:hidden;
}
.hero h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.02;
  letter-spacing:-.02em;
}
.hero h1 .light{color:rgba(255,255,255,.92); display:block}
.hero h1 .bold{color:#111; font-weight:1000}
.hero p{
  margin:0 0 16px;
  color:rgba(0,0,0,.72);
  font-weight:850;
  line-height:1.55;
  max-width:640px;
}
.hero .cta{display:flex; gap:10px; flex-wrap:wrap}
.btn-black{
  background:#000;
  border-color:rgba(0,0,0,.35);
  color:#fff;
  padding:12px 18px;
  border-radius:16px;
}
.hero img{
  width:100%;
  height:auto;
  display:block;
  max-width:520px;
  margin-left:auto;
}

.section-title{
  margin:22px auto 14px;
  display:flex; justify-content:center;
}
.section-title .bar{
  background:#000;
  color:var(--yellow);
  padding:12px 18px;
  border-radius:16px;
  font-weight:1000;
  letter-spacing:.05em;
  font-size:26px;
  text-transform:uppercase;
  box-shadow:0 16px 30px rgba(0,0,0,.22);
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.card{
  background:linear-gradient(180deg,#0B0B0B,#101010);
  border-radius:22px;
  padding:18px;
  color:#fff;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 18px 34px rgba(0,0,0,.28);
  min-height:210px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.card img{width:76px;height:76px;object-fit:contain}
.card h3{margin:0;font-size:18px;font-weight:1000}
.card p{margin:0;color:var(--muted);font-weight:850;line-height:1.5}

.footer{
  margin-top:18px;
  padding:18px 16px;
  border-radius:18px;
  background:rgba(0,0,0,.92);
  color:rgba(255,255,255,.82);
  display:flex; flex-wrap:wrap;
  justify-content:center; gap:18px;
  border:1px solid rgba(255,255,255,.08);
}
.footer a{color:var(--yellow); font-weight:950; text-decoration:none}
.footer a:hover{text-decoration:underline}

@media (max-width:980px){
  .hero{grid-template-columns:1fr; padding:20px 14px}
  .hero h1{font-size:34px}
  .hero img{max-width:520px; margin:8px auto 0}
  .cards{grid-template-columns:repeat(2,1fr)}
  .section-title .bar{font-size:22px}
}
@media (max-width:620px){
  .btn{padding:10px 12px; border-radius:12px; font-size:14px}
  .hero h1{font-size:28px}
  .hero p{font-size:14px}
  .cards{grid-template-columns:1fr}
  .card{min-height:auto}
  .card img{width:66px;height:66px}
}
