:root{
  --bg:#0b0b12;
  --fg:#eef0ff;
  --muted:#b8b9c7;
  --card:rgba(255,255,255,.08);
  --card2:rgba(255,255,255,.12);
  --line:rgba(255,255,255,.18);
  --accent:#ff1e50;
  --accent2:#ff6a9b;
  --ok:#19d36b;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--fg);
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(255,30,80,.35), transparent 60%),
    radial-gradient(760px 520px at 110% 10%, rgba(255,106,155,.26), transparent 55%),
    radial-gradient(820px 620px at 40% 120%, rgba(90,120,255,.18), transparent 60%),
    var(--bg);
}

a{color:var(--fg); text-decoration:underline}
a:hover{color:#fff}
.container{max-width:1100px;margin:0 auto;padding:14px}
.block{margin:10px 0}

.site-header{
  position:sticky; top:0;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(11,11,18,.88), rgba(11,11,18,.62));
  border-bottom:1px solid var(--line);
  z-index:999;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 14px;max-width:1100px;margin:0 auto}
.brand{display:flex;align-items:center;gap:10px}
.brand img{width:60px;height:60px;border-radius:14px;box-shadow:0 10px 30px rgba(255,30,80,.15)}
.brand span{font-weight:800;letter-spacing:.4px}
.burger{
  width:44px;height:44px;border:1px solid var(--line);
  background:linear-gradient(180deg,var(--card2),var(--card));
  border-radius:14px;display:grid;place-items:center;cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.25)
}
.burger i{display:block;width:18px;height:2px;background:var(--fg);position:relative}
.burger i:before,.burger i:after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--fg)}
.burger i:before{top:-6px}
.burger i:after{top:6px}

.nav-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.86);
  opacity:0; pointer-events:none;
  transition:opacity .18s ease;
}
.nav{
  position:fixed; top:0; right:0; height:100vh; width:min(360px,88vw);
  transform:translateX(102%);
  transition:transform .18s ease;
  background:linear-gradient(180deg, rgba(20,12,24,.92), rgba(10,8,16,.88));
  border-left:1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding:74px 14px 14px 14px;
  overflow:auto;
}
.nav a{
  display:block;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  background:rgba(0,0,0,.14);
  margin:10px 0;
  text-decoration:none;
}
.nav a:hover{
  border-color:rgba(255,30,80,.45);
  background:rgba(255,30,80,.10);
}
body.nav-open .nav{transform:translateX(0)}
body.nav-open .nav-backdrop{opacity:1;pointer-events:auto}
body.nav-open{overflow:hidden}

.nav-close{
  position:absolute;
  top:12px;
  right:14px;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,var(--card2),var(--card));
  border-radius:14px;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  color:var(--fg);
  font-size:22px;
  line-height:1;
}
body.nav-open .burger{opacity:0;pointer-events:none;}
@media (max-width:720px){
  .nav{width:100vw;right:0;border-left:none;}
}

.nav{z-index:1001;}
.nav-backdrop{z-index:1000;}
.burger{position:relative;z-index:1002;}

.card{
  background:linear-gradient(180deg,var(--card2),var(--card));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}
.intro{width:100%; border-collapse:separate; border-spacing:0}
.intro td{padding:14px}
.intro h1{margin:0 0 8px 0;font-size:28px;line-height:1.12}
.intro p{margin:0;color:var(--muted)}

.breadcrumbs{
  font-size:13px;
  color:var(--muted);
  margin:10px 0;
}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs a:hover{color:#fff}

.offer-table{
  width:100%;
  table-layout:fixed;
  border-collapse:collapse;
  background:#fff;
  color:#111;
  border:2px solid #111;
  border-radius:16px;
  overflow:hidden;
}
.offer-table th,.offer-table td{
  border:1px solid #ddd;
  padding:14px 10px;
  text-align:center;
  vertical-align:middle;
  word-break:break-word;
}
.offer-table td:nth-child(1),
.offer-table td:nth-child(2),
.offer-table td:nth-child(3){width:33.333%}

.offer-table td:first-child a{
  display:flex;
  align-items:center;
  justify-content:center;
}
.offer-table img{width:160px;height:50px;object-fit:contain;display:block;margin:0 auto}
.play-btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:14px;
  background:var(--ok);
  color:#04140a;
  font-weight:900;
  text-decoration:none;
  border:2px solid rgba(0,0,0,.15);
}
.play-btn:hover{filter:brightness(1.03)}

@media (max-width:720px){
  .offer-table, .offer-table thead, .offer-table tbody, .offer-table th, .offer-table td, .offer-table tr{display:block}
  .offer-table thead{display:none}
  .offer-table tr{border-bottom:2px solid #111}
  .offer-table td{border:none;border-top:1px solid #ddd}
  .offer-table td[data-label]:before{
    content: attr(data-label);
    display:block;
    font-weight:800;
    margin-bottom:6px;
  }
}

.page-img{
  width:100%;
  max-width:100%;
  height:auto;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:var(--shadow);
  display:block;
}

h2{margin:0 0 10px 0;font-size:20px}
h3{margin:12px 0 8px 0;font-size:16px}
p{margin:0 0 10px 0;color:var(--fg)}
p:last-child{margin-bottom:0}
ul,ol{margin:0 0 10px 18px}
li{margin:6px 0;color:var(--fg)}

.calc{
  margin-top:10px;
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:12px;
}
.calc-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}
.calc-grid .field{display:flex;flex-direction:column;gap:6px}
label{font-size:13px;color:var(--muted)}
input,textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.20);
  color:var(--fg);
  padding:10px 12px;
  outline:none;
}
textarea{min-height:120px;resize:vertical}
button{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(255,30,80,.30), rgba(255,30,80,.14));
  color:var(--fg);
  padding:10px 14px;
  cursor:pointer;
  font-weight:900;
}
button:hover{filter:brightness(1.04)}
.calc-out{margin-top:10px;color:var(--muted)}

.faq details{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.14);
  border-radius:16px;
  padding:10px 12px;
  margin:10px 0;
}
.faq summary{cursor:pointer;font-weight:900}
.faq p{color:var(--muted)}

.site-footer{
  border-top:1px solid var(--line);
  margin-top:10px;
  padding:14px 0;
  color:var(--muted);
}
.footer-inner{max-width:1100px;margin:0 auto;padding:0 14px;display:flex;flex-direction:column;gap:10px}
.footer-links{display:flex;flex-wrap:wrap;gap:8px}
.sep{opacity:.6}
