@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --clr-bg: #282845;
  --clr-surface: #30305a;
  --clr-surface2: #1e1e38;
  --clr-accent: #f5c842;
  --clr-accent2: #e07b3a;
  --clr-text: #f0eeff;
  --clr-text-muted: #b0aed0;
  --clr-btn-primary: #f5c842;
  --clr-btn-primary-text: #1a1a30;
  --clr-btn-secondary: #30305a;
  --clr-border: rgba(245,200,66,.18);
  --clr-card: #23233f;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(0,0,0,.35);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #ffd966; }
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 700; color: var(--clr-text); }
p { margin-bottom: .85rem; }
ul { list-style: none; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.box { background: var(--clr-surface); border-radius: var(--radius); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.3); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--clr-btn-primary); color: var(--clr-btn-primary-text); }
.btn--primary:hover { background: #ffd966; color: var(--clr-btn-primary-text); }
.btn--secondary { background: var(--clr-btn-secondary); color: var(--clr-text); border: 1px solid var(--clr-border); }
.btn--secondary:hover { background: #3a3a6a; color: var(--clr-text); }
.btn--outline { background: transparent; color: var(--clr-accent); border: 1px solid var(--clr-accent); }
.btn--outline:hover { background: var(--clr-accent); color: var(--clr-btn-primary-text); }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--danger { background: #c0392b; color: #fff; }

.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title span.accent { color: var(--clr-accent); }

.s7hk2 { display: none; }
.xp9m4 { visibility: hidden; position: absolute; }
.f3n8r { opacity: 0; pointer-events: none; }

.site-header {
  background: var(--clr-surface2);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}
.header-logo img { height: 46px; width: auto; object-fit: contain; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition);
}
.header-nav a:hover, .header-nav a.active { background: rgba(245,200,66,.1); color: var(--clr-accent); }
.header-nav a svg { flex-shrink: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.online-count {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--clr-text-muted);
  background: rgba(245,200,66,.07);
  border: 1px solid var(--clr-border);
  padding: 5px 10px;
  border-radius: 50px;
}
.online-dot { width: 7px; height: 7px; background: #2ecc71; border-radius: 50%; animation: pulse-dot 1.8s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(46,204,113,.5)} 50%{box-shadow:0 0 0 5px rgba(46,204,113,0)} }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,20,40,.97);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 32px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; animation: fadeIn .2s ease; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
}
.mobile-menu a:hover { background: rgba(245,200,66,.08); color: var(--clr-accent); }
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

@keyframes fadeIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:none} }

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/stellar-spins-casino-hero.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(28,28,60,.92) 0%, rgba(40,40,69,.6) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,66,.15);
  border: 1px solid rgba(245,200,66,.4);
  color: var(--clr-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-title .gold { color: var(--clr-accent); }
.hero-subtitle {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-surface);
  border: 1px dashed var(--clr-accent);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  margin-bottom: 24px;
}
.hero-promo-label { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; }
.hero-promo-code { font-size: 18px; font-weight: 800; color: var(--clr-accent); letter-spacing: .12em; cursor: pointer; position: relative; }
.hero-promo-copy { font-size: 12px; color: var(--clr-accent); cursor: pointer; text-decoration: underline; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--clr-text-muted);
}
.stars { color: var(--clr-accent); letter-spacing: 2px; }

.breadcrumb-bar {
  background: var(--clr-surface2);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb .sep { color: var(--clr-border); }
.breadcrumb .current { color: var(--clr-accent); }

.main-content { flex: 1; padding: 40px 0 60px; }

.content-block {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 28px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}

.tournaments-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.tournaments-grid::-webkit-scrollbar { height: 5px; }
.tournaments-grid::-webkit-scrollbar-track { background: var(--clr-surface2); border-radius: 4px; }
.tournaments-grid::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 4px; }

.tournament-card {
  flex: 0 0 260px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  padding: 22px 18px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.tournament-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent2));
}
.tournament-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.tournament-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245,200,66,.12);
  color: var(--clr-accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
  width: fit-content;
}
.tournament-name { font-size: 15px; font-weight: 700; color: var(--clr-text); }
.tournament-desc { font-size: 13px; color: var(--clr-text-muted); line-height: 1.5; flex: 1; }
.tournament-prize { font-size: 22px; font-weight: 800; color: var(--clr-accent); }
.tournament-prize span { font-size: 13px; font-weight: 500; color: var(--clr-text-muted); }
.tournament-timer { display: flex; gap: 6px; }
.timer-unit {
  background: var(--clr-surface2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.timer-unit .num { font-size: 18px; font-weight: 700; color: var(--clr-text); line-height: 1; }
.timer-unit .lbl { font-size: 9px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .06em; }

.games-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.games-grid::-webkit-scrollbar { height: 5px; }
.games-grid::-webkit-scrollbar-track { background: var(--clr-surface2); border-radius: 4px; }
.games-grid::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 4px; }

.game-card {
  flex: 0 0 170px;
  background: var(--clr-surface);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.game-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: var(--clr-surface2);
}
.game-thumb-placeholder {
  width: 100%;
  height: 110px;
  background: linear-gradient(135deg, var(--clr-surface2) 0%, #3a3a6a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.game-thumb-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.game-info { padding: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.game-name { font-size: 13px; font-weight: 600; color: var(--clr-text); }
.game-provider { font-size: 11px; color: var(--clr-text-muted); }

.wheel-section { text-align: center; }
.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.wheel-container { position: relative; width: 300px; height: 300px; margin: 0 auto; }
#wheelCanvas { border-radius: 50%; box-shadow: 0 0 0 6px var(--clr-surface2), 0 0 0 8px var(--clr-accent), 0 8px 40px rgba(0,0,0,.5); }
.wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 24px solid var(--clr-accent);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}
.wheel-result {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 600;
  display: none;
}
.wheel-result.show { display: block; animation: fadeIn .4s ease; }
.wheel-result.win { border-color: #2ecc71; color: #2ecc71; }
.wheel-result.lose { border-color: #e74c3c; color: #e74c3c; }

.review-block .review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--clr-surface);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid var(--clr-border);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-accent);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 15px; }
.author-info .title { font-size: 12px; color: var(--clr-text-muted); }
.author-info .bio { font-size: 12px; color: var(--clr-text-muted); margin-top: 4px; line-height: 1.5; }
.author-links { display: flex; gap: 8px; margin-top: 6px; }
.author-links a { font-size: 11px; color: var(--clr-accent); }

.review-content h1,.review-content h2,.review-content h3,.review-content h4 { color: var(--clr-text); margin: 1.4em 0 .5em; }
.review-content h1 { font-size: 1.7em; }
.review-content h2 { font-size: 1.4em; border-bottom: 1px solid var(--clr-border); padding-bottom: .4em; }
.review-content h3 { font-size: 1.15em; color: var(--clr-accent); }
.review-content p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: 1em; }
.review-content ul,.review-content ol { margin: .8em 0 1em 1.2em; display: flex; flex-direction: column; gap: .35em; }
.review-content ul li { list-style: disc; color: var(--clr-text-muted); }
.review-content ol li { list-style: decimal; color: var(--clr-text-muted); }
.review-content table { width: 100%; border-collapse: collapse; margin: 1.2em 0; text-align: left; overflow-x: auto; display: block; }
.review-content table th { background: var(--clr-surface2); color: var(--clr-accent); font-weight: 600; padding: 10px 14px; border: 1px solid var(--clr-border); font-size: 13px; }
.review-content table td { padding: 9px 14px; border: 1px solid var(--clr-border); color: var(--clr-text-muted); font-size: 13px; }
.review-content table tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.review-content a { color: var(--clr-accent); text-decoration: underline; }
.review-content blockquote { border-left: 3px solid var(--clr-accent); padding: .6em 1em; margin: 1em 0; color: var(--clr-text-muted); font-style: italic; background: rgba(245,200,66,.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.review-content strong, .review-content b { color: var(--clr-text); font-weight: 600; }
.review-content em { color: var(--clr-text-muted); }
.review-content code { background: var(--clr-surface2); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.review-content img { border-radius: var(--radius-sm); margin: .8em 0; }

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--clr-surface);
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(245,200,66,.06); }
.faq-q.active { color: var(--clr-accent); }
.faq-icon { font-size: 18px; color: var(--clr-accent); transition: transform var(--transition); flex-shrink: 0; }
.faq-q.active .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  background: var(--clr-card);
}
.faq-a.open { max-height: 500px; padding: 16px 20px; }
.faq-a p { color: var(--clr-text-muted); font-size: 14px; line-height: 1.7; margin: 0; }
.faq-a p + p { margin-top: .6em; }

.comments-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.comment-card {
  background: var(--clr-surface);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border: 1px solid var(--clr-border);
  display: flex;
  gap: 14px;
}
.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.comment-body { flex: 1; }
.comment-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; flex-wrap: wrap; }
.comment-name { font-size: 14px; font-weight: 600; color: var(--clr-text); }
.comment-date { font-size: 12px; color: var(--clr-text-muted); }
.comment-stars { color: var(--clr-accent); font-size: 12px; }
.comment-text { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; }

.comment-form { display: flex; flex-direction: column; gap: 14px; }
.comment-form label { font-size: 13px; font-weight: 500; color: var(--clr-text-muted); margin-bottom: 4px; display: block; }
.form-row { display: flex; gap: 14px; }
.form-row .form-field { flex: 1; }
.form-field { display: flex; flex-direction: column; gap: 4px; }
.form-field input, .form-field textarea, .form-field select {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--clr-text);
  width: 100%;
  transition: border-color var(--transition);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--clr-text-muted); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--clr-accent); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-success { background: rgba(46,204,113,.1); border: 1px solid #2ecc71; color: #2ecc71; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; display: none; }
.form-success.show { display: block; }

.site-footer {
  background: var(--clr-surface2);
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
  margin-top: auto;
}
.footer-inner { display: flex; flex-direction: column; gap: 32px; }
.footer-top { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-brand { flex: 0 0 220px; }
.footer-brand-link {display: block;width: fit-content;}
.footer-logo-img { height: 50px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 14px; }
.footer-flag { font-size: 24px; margin-bottom: 8px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--clr-accent); color: var(--clr-btn-primary-text); }
.footer-nav-col { flex: 1; min-width: 140px; }
.footer-nav-col h5 { font-size: 13px; font-weight: 700; color: var(--clr-accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-nav-col ul li a { font-size: 13px; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-nav-col ul li a:hover { color: var(--clr-accent); }
.footer-logos-row { display: flex; flex-direction: column; gap: 16px; }
.footer-logos-label { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-logo-badge {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-logo-badge svg { flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-legal { font-size: 11px; color: var(--clr-text-muted); line-height: 1.7; }
.footer-copy { font-size: 12px; color: var(--clr-text-muted); }

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a1a35 0%, #23234a 100%);
  border-top: 2px solid var(--clr-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.widget-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.widget-promo-text { font-size: 13px; font-weight: 600; color: var(--clr-text); white-space: nowrap; }
.widget-promo-code {
  background: rgba(245,200,66,.12);
  border: 1px dashed var(--clr-accent);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  color: var(--clr-accent);
  letter-spacing: .1em;
  cursor: pointer;
  white-space: nowrap;
}
.widget-btns { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.widget-close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.widget-close:hover { color: var(--clr-text); }

.info-page-content { padding: 40px 0 60px; }
.info-page-content .content-block h1 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--clr-accent); }
.info-page-content .content-block h2 { font-size: 1.25rem; margin: 1.4em 0 .5em; color: var(--clr-text); }
.info-page-content .content-block p { color: var(--clr-text-muted); line-height: 1.75; margin-bottom: .9em; }
.info-page-content .content-block ul { margin: .8em 0 1em 1.2em; }
.info-page-content .content-block ul li { list-style: disc; color: var(--clr-text-muted); font-size: 14px; margin-bottom: .35em; }
.info-page-content .content-block a { color: var(--clr-accent); text-decoration: underline; }

.bonus-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(245,200,66,.1) 0%, rgba(224,123,58,.07) 100%);
  border: 1px solid rgba(245,200,66,.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.bonus-highlight .bonus-icon { font-size: 24px; flex-shrink: 0; }
.bonus-highlight .bonus-text { font-size: 14px; font-weight: 600; color: var(--clr-text); }
.bonus-highlight .bonus-sub { font-size: 12px; color: var(--clr-text-muted); }

.payments-grid { display: flex; flex-direction: column; gap: 20px; }
.payment-group-label { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; font-weight: 600; }

.k8p2x { font-size: 0; line-height: 0; }
.q4r7z { width: 0; height: 0; overflow: hidden; }
.m6t1n { pointer-events: none; }

@media (min-width: 769px) {
  .tournaments-grid { flex-wrap: nowrap; overflow-x: auto; }
  .games-grid { flex-wrap: nowrap; overflow-x: auto; }
  .form-row { flex-direction: row; }
}

@media (max-width: 900px) {
  .footer-top { flex-direction: column; }
  .footer-brand { flex: none; }
  .footer-nav-col { min-width: 120px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .online-count { display: none; }
  .burger { display: flex; }
  .hero-section { min-height: 420px; padding: 40px 0; }
  .hero-btns .btn--lg { padding: 11px 22px; font-size: 14px; }
  .content-block { padding: 20px 16px; }
  .form-row { flex-direction: column; }
  .sticky-widget { flex-wrap: wrap; gap: 8px; padding: 10px 14px; }
  .widget-promo-text { display: none; }
  .tournament-card { flex: 0 0 220px; }
  .game-card { flex: 0 0 140px; }
  .footer-nav-col { min-width: 110px; }
  .wheel-container { width: 250px; height: 250px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .hero-promo { flex-direction: column; align-items: flex-start; gap: 4px; }
  .section-title { font-size: 1.15rem; }
  .footer-logos { gap: 7px; }
  .footer-logo-badge { padding: 5px 10px; font-size: 11px; }
  .review-block .review-author {flex-direction: column;}
}
@media (max-width: 420px) {
.bonus-highlight {flex-direction: column;}
.section-title { font-size: 1rem; }
}