:root{
  --bg: #0a1628;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.12);
  --accent: #3b82f6;
  --accent2: #60a5fa;
  --card: rgba(255,255,255,.05);
  --radius-lg: 22px;
  --radius-md: 16px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(900px 520px at 15% -10%, rgba(37,99,235,.22), transparent 60%),
              radial-gradient(900px 520px at 90% 0%, rgba(96,165,250,.18), transparent 60%),
              var(--bg);
  direction: ltr;
  text-align: left;
}
a{ color:inherit; text-decoration:none; }
.container{ width: min(1100px, calc(100% - 32px)); margin: 0 auto; }

/* ── HEADER ── */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,22,40,.78);
  border-bottom: 1px solid var(--border);
}
.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

/* ── LOGO (text-based) ── */
.logo-slot{
  display: flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
}
.logo-text{
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1;
}
.logo-accent{ color: var(--accent); }
.logo-slot img{ height: 72px; width: auto; display: block; }

/* ── NAV ── */
.nav{
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a{
  background: none;
  border: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}
.nav a:hover{
  color: #fff;
  text-decoration: underline;
}

/* ── MAIN ── */
main{ padding: 18px 0 40px; }
.section{ margin-top: 18px; border-radius: var(--radius-lg); background: rgba(255,255,255,.02); padding: 18px; }
.section h1, .section h2, .section h3{ margin: 0 0 10px; letter-spacing: -0.2px; }
.section p{ margin: 0 0 10px; color: var(--muted); line-height: 1.75; max-width: 90ch; }
.section ul{ margin: 0 0 12px; padding: 0 0 0 18px; color: var(--muted); line-height: 1.75; }
.section li{ margin: 6px 0; }
.section table{ width:100%; border-collapse: collapse; margin: 10px 0 14px; overflow:hidden; border-radius: 14px; }
.section th, .section td{ border: 1px solid rgba(255,255,255,.12); padding: 10px; color: var(--muted); vertical-align: top; }
.section th{ color: rgba(255,255,255,.92); background: rgba(255,255,255,.04); font-weight: 900; }

.section p a,
.section li a{
  color: var(--accent2);
  text-decoration: underline;
  font-weight: 800;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.section p a:hover,
.section li a:hover{
  color: #93c5fd;
  text-decoration-color: transparent;
}

/* ── BANNER (emoji edition) ── */
.banner{ padding: 24px 0; }
.banner__inner{
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10,22,40,.98) 0%, rgba(30,58,138,.45) 100%);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}
.banner__inner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(37,99,235,.28), transparent 55%),
              radial-gradient(ellipse at 90% 20%, rgba(96,165,250,.18), transparent 55%);
  pointer-events: none;
}
.banner__content{
  position: relative;
  padding: 32px;
  display: grid;
  gap: 24px;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.banner__bonus{
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 20px;
  max-width: 540px;
}
.banner__bonus_type{ color: var(--muted); font-size: 14px; }
.banner__bonus_name{ font-size: 30px; font-weight: 900; letter-spacing: -0.3px; margin-top: 4px; }
.banner__bonus_add{ color: var(--muted); margin-top: 8px; line-height: 1.65; }
.banner_link_btn a{
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  transition: filter .2s ease;
  border: 0;
}
.banner_link_btn a:hover{ filter: brightness(1.12); }

/* Emoji images */
.banner__emoji{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  user-select: none;
  filter: drop-shadow(0 0 28px rgba(59,130,246,.5));
}
.banner__emoji img{
  width: 120px;
  height: auto;
  display: block;
}

@media (max-width: 900px){
  .banner__content{ grid-template-columns: 1fr; }
  .banner__emoji{ padding: 8px 16px; }
  .banner__emoji img{ width: 80px; }
  .banner__bonus_name{ font-size: 22px; }
}

/* ── FAQ ── */
.faq__title{ margin: 0 0 12px; font-size: 20px; font-weight: 900; letter-spacing: -0.2px; }
.faq__block{ border-radius: var(--radius-lg); background: rgba(0,0,0,.12); padding: 10px; }
.faq__list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.faq__item{ border-radius: var(--radius-md); background: var(--card); overflow: hidden; }
.faq__question{ display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 12px; font-weight: 900; cursor: pointer; }
.faq__btn{ width: 34px; height: 34px; border-radius: 12px; background: rgba(255,255,255,.03); position: relative; flex: 0 0 auto; }
.faq__btn::before, .faq__btn::after{ content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: rgba(255,255,255,.75); transform: translate(-50%,-50%); border-radius: 2px; }
.faq__btn::after{ width: 2px; height: 14px; }
.faq__answer{ padding: 0 12px 12px; color: var(--muted); line-height: 1.75; display: none; }
.faq__answer p{ margin: 0; max-width: none; }
.faq__question.open{ background: linear-gradient(90deg, rgba(59,130,246,.22), rgba(59,130,246,.08)); border-bottom: 1px solid rgba(59,130,246,.25); }
.faq__question.open .faq__btn{ background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.35); }
.faq__question.open .faq__btn::after{ display: none; }
.faq__question.open + .faq__answer{ display: block; }

/* ── FOOTER ── */
footer{
  border-top: 1px solid var(--border);
  background: rgba(10,22,40,.65);
  margin-top: 32px;
}
.footer-responsible{
  padding: 24px 0 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.rg-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
}
.rg-badge a{ color: inherit; }
.rg-badge a:hover{ text-decoration: underline; }
.rg-badge--age{
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.35);
  color: #fca5a5;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.footer-disclaimer{
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.75;
  max-width: 920px;
}
.footer-disclaimer p{ margin: 0; }
.footer-disclaimer a{ color: rgba(255,255,255,.55); text-decoration: underline; }
.footer-row{
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-brand{ display: flex; align-items: center; gap: 10px; }
.footer-links{ display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a{
  color: rgba(255,255,255,.52);
  font-size: 13px;
  transition: color .15s ease;
}
.footer-links a:hover{ color: rgba(255,255,255,.85); }

@media (max-width: 600px){
  .footer-row{ flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; }
}
