:root {
  --navy: #0a0e27;
  --navy-deep: #060815;
  --purple: #2d1b4e;
  --purple-mid: #3d2a6d;
  --purple-light: #4a3384;
  --violet-bg: #241546;
  --gold: #f4c542;
  --gold-deep: #d4a017;
  --green: #4ade80;
  --green-bright: #39e75f;
  --text: #f2eefc;
  --text-dim: #b9aed6;
  --radius: 16px;
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.45);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--navy-deep);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand__logo, .eyebrow {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, #6be88a, var(--green-bright));
  color: #06210f;
  box-shadow: 0 8px 24px rgba(57, 231, 95, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(57, 231, 95, 0.45); }
.btn--ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn--ghost:hover { background: rgba(244, 197, 66, 0.1); transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--header { padding: 10px 22px; font-size: 0.88rem; }

.text-gold { color: var(--gold); }
.text-green { color: var(--green-bright); }

/* Ticker */
.ticker {
  background: var(--navy);
  border-bottom: 1px solid rgba(244, 197, 66, 0.25);
  overflow: hidden;
  padding: 8px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: scroll-ticker 22s linear infinite;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  white-space: nowrap;
}
.ticker__track span { padding-right: 8px; }
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244, 197, 66, 0.18);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}
.brand__logo {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold), 0 6px 18px rgba(0,0,0,0.4);
}
.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.site-nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(74, 51, 132, 0.55), transparent),
    linear-gradient(180deg, var(--navy) 0%, var(--purple) 55%, var(--violet-bg) 100%);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.18), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--gold), 0 25px 55px rgba(0,0,0,0.55);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}
.eyebrow--center { text-align: center; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 18px;
  max-width: 780px;
  line-height: 1.15;
}
.hero__subtitle {
  max-width: 620px;
  color: var(--text-dim);
  font-size: 1.05rem;
  margin: 0 0 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(244, 197, 66, 0.2);
  padding-top: 28px;
  width: 100%;
  max-width: 640px;
}
.hero__stats li { display: flex; flex-direction: column; align-items: center; }
.hero__stats strong { font-size: 1.5rem; color: var(--gold); font-family: 'Baloo 2', sans-serif; }
.hero__stats span { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* Decorative background flair (poker chips + card suits) */
.decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.chip {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--navy) 0 36%, transparent 37%),
    repeating-conic-gradient(var(--gold) 0deg 18deg, var(--purple-mid) 18deg 36deg);
  border: 5px dashed rgba(244, 197, 66, 0.55);
  opacity: 0.16;
}
.chip--green {
  background:
    radial-gradient(circle at center, var(--navy) 0 36%, transparent 37%),
    repeating-conic-gradient(var(--green-bright) 0deg 18deg, var(--purple-mid) 18deg 36deg);
  border-color: rgba(74, 222, 128, 0.5);
}
.chip--small { width: 80px; height: 80px; }
.chip--tl { top: 8%; left: 4%; transform: rotate(-12deg); }
.chip--tr { top: 12%; right: 6%; transform: rotate(10deg); }
.chip--bl { bottom: 6%; left: 10%; width: 90px; height: 90px; transform: rotate(20deg); }
.decor-symbol {
  position: absolute;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  user-select: none;
}
.decor-symbol--slot { top: 14%; right: 12%; font-size: 4.5rem; opacity: 0.14; filter: grayscale(1) brightness(1.6); }
.decor-symbol--spade { bottom: 10%; left: 6%; color: var(--text); }
.decor-symbol--diamond { top: 55%; right: 4%; color: var(--green-bright); font-size: 5rem; }
.decor-symbol--club { top: 20%; right: 8%; color: var(--gold); font-size: 5rem; }

@media (max-width: 760px) {
  .decor { display: none; }
}

/* Sections general */
section { padding: 80px 0; }
.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 14px;
}
.section-lead {
  text-align: center;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 48px;
}

/* Promotions */
.promotions { background: var(--violet-bg); }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.promo-card {
  background: linear-gradient(180deg, var(--purple-mid), var(--purple));
  border: 1px solid rgba(244, 197, 66, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.promo-card:hover { transform: translateY(-4px); }
.promo-card img { width: 100%; height: 190px; object-fit: cover; }
.promo-card--featured { grid-column: span 2; }
.promo-card--featured img { height: 260px; }
.promo-card__body { padding: 26px 28px 28px; }
.promo-card__tag {
  display: inline-block;
  background: rgba(244, 197, 66, 0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.promo-card h3 { margin: 0 0 6px; font-size: 1.35rem; }
.promo-card__value {
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.promo-card p { color: var(--text-dim); margin: 0 0 12px; font-size: 0.95rem; }
.promo-card__tc { font-size: 0.72rem; color: rgba(185, 174, 214, 0.65); text-transform: uppercase; letter-spacing: 0.05em; }
.promotions__cta { text-align: center; margin-top: 48px; }

/* Providers */
.providers { position: relative; background: linear-gradient(180deg, var(--violet-bg), var(--navy)); overflow: hidden; }
.providers > .container { position: relative; z-index: 1; }
.providers__banner {
  border-radius: var(--radius);
  margin-bottom: 56px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(244, 197, 66, 0.25);
}
.provider-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.provider-chip {
  background: var(--purple-mid);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.provider-chip:hover {
  background: rgba(74, 222, 128, 0.15);
  border-color: var(--green-bright);
  transform: translateY(-2px);
}

/* FAQ */
.faq { background: var(--navy); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--purple-mid);
  border: 1px solid rgba(244, 197, 66, 0.2);
  border-radius: 12px;
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--text-dim); margin: 0 0 18px; font-size: 0.93rem; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(244, 197, 66, 0.18);
  padding: 48px 0 32px;
  text-align: center;
}
.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 2px var(--gold);
}
.footer__disclaimer {
  max-width: 560px;
  margin: 0 auto 16px;
  color: var(--text-dim);
  font-size: 0.82rem;
}
.footer__link {
  color: var(--green-bright);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
}
.footer__copy { color: rgba(185, 174, 214, 0.5); font-size: 0.78rem; margin: 0; }

/* Responsive */
@media (max-width: 760px) {
  .site-nav { display: none; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card--featured { grid-column: span 1; }
  .promo-card--featured img { height: 190px; }
  section { padding: 56px 0; }
  .hero { padding: 48px 0 64px; }
}

/* Floating support contact (WhatsApp + Telegram) */
.contact-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-fab__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: fab-pulse 2.4s ease-in-out infinite;
}
.contact-fab__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}
.contact-fab__btn--whatsapp {
  background: linear-gradient(180deg, #2fe873, #1fb855);
}
.contact-fab__btn--telegram {
  background: linear-gradient(180deg, #4bc4f0, #0088cc);
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45); }
  50% { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(47, 232, 115, 0.12); }
}
.contact-fab__btn--telegram { animation-delay: 1.2s; }
@media (max-width: 760px) {
  .contact-fab {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .contact-fab__btn {
    width: 48px;
    height: 48px;
  }
}
