@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
  --clr-nav: #1a0a2e;
  --clr-nav-border: #2e1050;
  --clr-bg: #0f051e;
  --clr-bg2: #160828;
  --clr-card: #1e0d36;
  --clr-card2: #250f40;
  --clr-btn-primary: #e8510a;
  --clr-btn-primary-h: #ff6a1f;
  --clr-btn-secondary: #c0392b;
  --clr-btn-secondary-h: #e74c3c;
  --clr-btn-green: #1a8c3c;
  --clr-btn-green-h: #21a849;
  --clr-accent: #f5a623;
  --clr-accent2: #e8510a;
  --clr-text: #f0e6ff;
  --clr-text-muted: #a98fc0;
  --clr-text-dark: #6b4f8a;
  --clr-border: #3a1a60;
  --clr-star: #f5a623;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-card: 0 6px 32px rgba(0,0,0,0.6);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: var(--clr-text);
  text-wrap: balance;
}

a { color: var(--clr-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-btn-primary-h); }

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

.x7k2m { display: none; }
.qp9f3 { visibility: hidden; position: absolute; }
.wc1n8 { opacity: 0; pointer-events: none; position: absolute; left: -9999px; }

.c-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.c-flex { display: flex; align-items: center; }
.c-flex-between { display: flex; align-items: center; justify-content: space-between; }
.c-flex-col { display: flex; flex-direction: column; }
.c-flex-center { display: flex; align-items: center; justify-content: center; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-nav);
  border-bottom: 1px solid var(--clr-nav-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.hdr-logo a { display: flex; align-items: center; gap: 10px; }
.hdr-logo img { height: 70px; width: auto; object-fit: contain; }
.hdr-logo-txt {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--clr-accent);
  white-space: nowrap;
}

.hdr-nav { display: flex; align-items: center; gap: 4px; }
.hdr-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.hdr-nav a:hover, .hdr-nav a.active {
  color: var(--clr-text);
  background: rgba(255,255,255,0.06);
}
.hdr-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.hdr-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid var(--clr-border);
}
.hdr-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.lang-dropdown { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,0.1); }
.lang-btn svg { width: 14px; height: 14px; transition: transform var(--transition); }
.lang-dropdown.open .lang-btn svg { transform: rotate(180deg); }
.lang-flag { font-size: 1.1rem; }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  min-width: 140px;
  box-shadow: var(--shadow);
  z-index: 100;
  overflow: hidden;
}
.lang-dropdown.open .lang-menu { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--clr-text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}
.lang-menu a:hover { background: rgba(255,255,255,0.08); color: var(--clr-text); }

.hdr-btns { display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn-demo {
  background: rgba(255,255,255,0.08);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}
.btn-demo:hover { background: rgba(255,255,255,0.14); color: var(--clr-text); }

.btn-play {
  background: var(--clr-btn-primary);
  color: #fff;
}
.btn-play:hover { background: var(--clr-btn-primary-h); color: #fff; }

.btn-register {
  background: var(--clr-btn-secondary);
  color: #fff;
}
.btn-register:hover { background: var(--clr-btn-secondary-h); color: #fff; }

.btn-bonus {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-btn-primary));
  color: #fff;
}
.btn-bonus:hover { filter: brightness(1.1); color: #fff; }

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

.btn-xl {
  padding: 16px 40px;
  font-size: 1.15rem;
  border-radius: var(--radius);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-nav);
  z-index: 999;
  flex-direction: column;
  padding: 90px 24px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu .hdr-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.mobile-menu .hdr-nav a {
  width: 100%;
  font-size: 1rem;
  padding: 12px 16px;
}
.mobile-menu .hdr-btns {
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  gap: 10px;
}
.mobile-menu .hdr-btns .btn {
  width: 100%;
  padding: 13px 20px;
  font-size: 0.95rem;
  justify-content: center;
}
.mobile-menu .lang-dropdown { width: 100%; margin-top: 12px; }
.mobile-menu .lang-btn { width: 100%; }
.mobile-menu .lang-menu { position: static; width: 100%; margin-top: 6px; }
.mobile-menu .hdr-online { width: 100%; justify-content: center; margin-top: 16px; }

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hot-fruits-100-hero-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.45);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,5,30,0.92) 0%, rgba(15,5,30,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232,81,10,0.25);
  border: 1px solid rgba(232,81,10,0.5);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  text-wrap: balance;
}
.hero h1 span { color: var(--clr-accent); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(240,230,255,0.85);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-val {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--clr-accent);
}
.hero-stat-lbl { font-size: 0.78rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.breadcrumbs {
  padding: 14px 0;
  background: var(--clr-bg2);
  border-bottom: 1px solid var(--clr-border);
}
.bc-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 0.82rem;
}
.bc-list li { display: flex; align-items: center; gap: 6px; }
.bc-list a { color: var(--clr-text-muted); }
.bc-list a:hover { color: var(--clr-accent); }
.bc-list .bc-sep { color: var(--clr-text-dark); }
.bc-list .bc-current { color: var(--clr-text); font-weight: 600; }

.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}
.section-hd { margin-bottom: 40px; }

.divider-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.divider-wave svg { display: block; }

.adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.adv-card {
  flex: 1 1 220px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  animation: fadeInUp 0.5s ease both;
}
.adv-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent2);
  box-shadow: 0 8px 32px rgba(232,81,10,0.2);
}
.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,81,10,0.25), rgba(245,166,35,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-icon svg { width: 24px; height: 24px; color: var(--clr-accent); }
.adv-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-text);
}
.adv-text { font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.6; }

.demo-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  background: var(--clr-card2);
  border-bottom: 1px solid var(--clr-border);
}
.demo-title-row { display: flex; align-items: center; gap: 12px; }
.demo-title-row h2 { font-size: 1.25rem; margin: 0; }
.demo-badge {
  padding: 4px 10px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.4);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #2ecc71;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px;
  background: var(--clr-card2);
  border-top: 1px solid var(--clr-border);
}
.demo-meta { display: flex; flex-wrap: wrap; gap: 16px; }
.demo-meta-item { display: flex; flex-direction: column; gap: 2px; }
.demo-meta-lbl { font-size: 0.7rem; color: var(--clr-text-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.demo-meta-val { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--clr-text); }

.bonus-slider-wrap { position: relative; }
.bonus-grid {
  display: flex;
  gap: 16px;
  overflow: visible;
}
.bonus-card {
  flex: 1 1 300px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-color: var(--clr-accent);
}
.bonus-card-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--clr-card2), rgba(40,15,70,0.8));
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.bonus-casino-logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  flex-shrink: 0;
}
.bonus-casino-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--clr-text); }
.bonus-casino-rating { display: flex; align-items: center; gap: 4px; margin-top: 3px; }
.bonus-casino-rating svg { width: 13px; height: 13px; color: var(--clr-star); }
.bonus-casino-rating span { font-size: 0.78rem; color: var(--clr-text-muted); }

.bonus-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.bonus-amount {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bonus-amount-val {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-btn-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bonus-amount-lbl { font-size: 0.8rem; color: var(--clr-text-muted); }
.bonus-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}
.bonus-feature svg { width: 14px; height: 14px; color: #2ecc71; flex-shrink: 0; }
.bonus-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bonus-tag-hot {
  background: rgba(231,76,60,0.25);
  border: 1px solid rgba(231,76,60,0.5);
  color: #e74c3c;
}
.bonus-tag-new {
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.4);
  color: #2ecc71;
}
.bonus-tag-top {
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--clr-accent);
}
.bonus-card-footer { padding: 16px 20px; border-top: 1px solid var(--clr-border); }
.bonus-card-footer .btn { width: 100%; }
.bonus-terms { font-size: 0.7rem; color: var(--clr-text-dark); text-align: center; margin-top: 8px; }

.slider-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active { background: var(--clr-accent); width: 24px; border-radius: 4px; }

.review-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.review-updated {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--clr-text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-updated svg { width: 13px; height: 13px; }

.review-body { padding: 28px; }

.review-body h1, .review-body h2, .review-body h3 {
  color: var(--clr-text);
  margin-top: 28px;
  margin-bottom: 12px;
}
.review-body h2 { font-size: 1.4rem; }
.review-body h3 { font-size: 1.15rem; }
.review-body p { color: var(--clr-text-muted); margin-bottom: 16px; line-height: 1.7; }
.review-body ul, .review-body ol { padding-left: 24px; margin-bottom: 16px; color: var(--clr-text-muted); line-height: 1.8; }
.review-body li { margin-bottom: 6px; }
.review-body a { color: var(--clr-accent); text-decoration: underline; }
.review-body a:hover { color: var(--clr-btn-primary-h); }
.review-body strong, .review-body b { color: var(--clr-text); font-weight: 700; }
.review-body em, .review-body i { font-style: italic; color: var(--clr-text-muted); }
.review-body blockquote {
  border-left: 3px solid var(--clr-accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(245,166,35,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.review-body hr { border: none; border-top: 1px solid var(--clr-border); margin: 28px 0; }
.review-body img { border-radius: var(--radius-sm); margin: 16px 0; max-width: 200px; margin: 0 auto; background-color: var(--clr-text-dark);}
.review-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}
.review-body table th {
  background: var(--clr-card2);
  color: var(--clr-text);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--clr-border);
  white-space: nowrap;
}
.review-body table td {
  padding: 10px 16px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  vertical-align: top;
}
.review-body table tr:nth-child(even) td { background: rgba(255,255,255,0.025); }

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.review-card {
  flex: 1 1 280px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--clr-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-border);
  flex-shrink: 0;
}
.review-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; }
.review-date { font-size: 0.72rem; color: var(--clr-text-dark); margin-top: 2px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; color: var(--clr-star); }
.review-text { font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.65; }

.review-form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 30px;
}
.review-form-title { font-size: 1.3rem; margin-bottom: 6px; }
.review-form-sub { font-size: 0.875rem; color: var(--clr-text-muted); margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--clr-text); }
.form-group input,
.form-group textarea {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--clr-text);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: var(--radius-sm);
  color: #2ecc71;
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

.site-footer {
  background: var(--clr-nav);
  border-top: 1px solid var(--clr-nav-border);
  padding: 48px 0 24px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand { flex: 1 1 220px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start;}
.footer-brand img { height: 70px; width: auto; object-fit: contain; }
.footer-brand-txt { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.65; max-width: 280px; }

.footer-col { flex: 1 1 160px; display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.875rem; color: var(--clr-text); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { font-size: 0.85rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--clr-accent); }

.footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 60px;
  text-align: center;
}
.footer-logo-item img { height: 22px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.6); transition: filter var(--transition); }
.footer-logo-item:hover img { filter: grayscale(0) opacity(1); }

.footer-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.footer-provider img { height: 28px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.6); background-color: var(--clr-text);border-radius: 5px;}
.footer-provider img:hover {filter: opacity(1);}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: var(--clr-text-dark); }
.footer-legal { font-size: 0.73rem; color: var(--clr-text-dark); max-width: 700px; line-height: 1.6; }
.footer-legal a { color: var(--clr-text-dark); text-decoration: underline; }

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #1a0a2e, #230d3c);
  border-top: 1px solid rgba(232,81,10,0.5);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-widget.visible { transform: translateY(0); }
.widget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.widget-text { display: flex; flex-direction: column; gap: 2px; }
.widget-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
}
.widget-bonus {
  font-size: 0.8rem;
  color: var(--clr-accent);
  font-weight: 700;
}
.widget-actions { display: flex; align-items: center; gap: 10px; }
.widget-close {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}
.widget-close:hover { color: var(--clr-text); background: rgba(255,255,255,0.1); }
.widget-reg-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--clr-btn-secondary), #a93226);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.widget-reg-btn:hover { filter: brightness(1.12); color: #fff; transform: translateY(-1px); }
.widget-reg-btn svg { width: 16px; height: 16px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in-up { animation: fadeInUp 0.55s ease both; }
.fade-in { animation: fadeIn 0.55s ease both; }

[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-group { display: block; }
.elementor-widget-container { display: block; }
.wp-content { display: block; }
.entry-content { display: block; }
.yoast-breadcrumb { display: none; }
.wp-caption { display: none; }
.attachment-post-thumbnail { display: none; }
.post-thumbnail { display: none; }
.woocommerce-breadcrumb { display: none; }
.site-content { display: block; }
.elementor-section-wrap { display: block; }
.wp-widget-area { display: none; }
#secondary { display: none; }
.wp-post-nav { display: none; }
.wpcf7 { display: none; }
.wpforms-container { display: none; }

.info-table-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.info-table tr:not(:last-child) { border-bottom: 1px solid var(--clr-border); }
.info-table td {
  padding: 11px 18px;
  font-size: 0.875rem;
  vertical-align: middle;
}
.info-table td:first-child { color: var(--clr-text-muted); font-weight: 600; width: 42%; }
.info-table td:last-child { color: var(--clr-text); font-weight: 700; }
.info-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--clr-text);
  transition: background var(--transition);
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--clr-accent); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 20px 18px;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.game-card {
  flex: 1 1 200px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--clr-card2);
}
.game-card-body { padding: 14px 16px; }
.game-card-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--clr-text); margin-bottom: 4px; }
.game-card-provider { font-size: 0.75rem; color: var(--clr-text-muted); }

.scroll-pad { height: 72px; }

@media (max-width: 900px) {
  .hdr-nav { display: none; }
  .burger { display: flex; }
  .hdr-online { display: none; }
  .lang-dropdown.hdr-lang-desktop { display: none; }
  .mobile-menu .hdr-nav {display: flex;}
}

@media (max-width: 768px) {
  .section { padding: 44px 0; }
  .hero-content { padding: 44px 0; }
  .bonus-grid { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .bonus-grid::-webkit-scrollbar { height: 4px; }
  .bonus-grid::-webkit-scrollbar-track { background: var(--clr-border); border-radius: 2px; }
  .bonus-grid::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 2px; }
  .bonus-card { flex: 0 0 94vw; scroll-snap-align: start; }
  .slider-nav { display: flex; }
  .reviews-grid { flex-direction: column; }
  .footer-top { gap: 28px; }
  .widget-inner { justify-content: center; text-align: center; }
  .widget-text { align-items: center; }
  .adv-card { flex: 1 1 160px; }
  .demo-meta {display: none;}
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-stats { gap: 16px; }
  .demo-header { flex-direction: column; align-items: flex-start; }
  .demo-footer { flex-direction: column; align-items: flex-start; }
  .review-form-wrap { padding: 20px 16px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .hdr-btns .btn-demo { display: none; }
}
