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

:root {
  --c-bg: #16151f;
  --c-header: #292737;
  --c-login: #78e7d6;
  --c-signup: #9853db;
  --c-text: #e8e6f0;
  --c-text-muted: #a09ab8;
  --c-border: #3a3650;
  --c-card: #1e1c2e;
  --c-card2: #221f32;
  --c-accent: #78e7d6;
  --c-purple: #9853db;
  --c-gold: #f5c842;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-login); }
ul { list-style: none; }

.xw9f2 { display: none; }
.qz71m { visibility: hidden; height: 0; overflow: hidden; }

.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-section { padding: 60px 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.12); box-shadow: 0 6px 22px rgba(0,0,0,0.35); }
.btn:active { transform: translateY(0); }
.btn--login { background: var(--c-login); color: #16151f; }
.btn--signup { background: var(--c-signup); color: #fff; }
.btn--bonus { background: linear-gradient(90deg, #9853db, #78e7d6); color: #fff; }
.btn--outline { background: transparent; border: 2px solid var(--c-login); color: var(--c-login); }
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.8rem; }

.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.lp-header__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.lp-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-header__nav a {
  color: var(--c-text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.lp-header__nav a:hover { background: rgba(120,231,214,0.1); color: var(--c-accent); }
.lp-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.lp-header__online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cffb0;
  box-shadow: 0 0 6px #4cffb0;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.lp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.lp-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--transition);
}
.lp-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.active span:nth-child(2) { opacity: 0; }
.lp-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lp-mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-header);
  z-index: 999;
  flex-direction: column;
  padding: 28px 24px;
  gap: 12px;
  overflow-y: auto;
}
.lp-mobile-nav.open { display: flex; }
.lp-mobile-nav a {
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}
.lp-mobile-nav a:last-of-type { border-bottom: none; }

.lp-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0e0d17 0%, #1a1730 60%, #211a35 100%);
}
.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/izzi-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,21,31,0.92) 40%, rgba(22,21,31,0.4) 100%);
  z-index: 1;
}
.lp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  animation: fadeInUp 0.7s ease both;
}
.lp-hero__badge {
  display: inline-block;
  background: rgba(120,231,214,0.15);
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.lp-hero h1 span { color: var(--c-accent); }
.lp-hero__desc {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.lp-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-breadcrumbs {
  background: var(--c-card);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.lp-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.lp-breadcrumbs__list a { color: var(--c-accent); }
.lp-breadcrumbs__sep { color: var(--c-border); }

.lp-toc {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.lp-toc h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-toc ol {
  list-style: decimal;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.lp-toc ol li a {
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 500;
}
.lp-toc ol li a:hover { color: var(--c-accent); }

.lp-block-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.lp-block-subtitle {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.lp-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}
.lp-adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c-accent); }
.lp-adv-card__icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.lp-adv-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.lp-adv-card__text { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.6; }

.lp-jackpots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-jackpot-card {
  background: linear-gradient(135deg, #1e1c2e, #2a1e45);
  border: 1px solid rgba(152,83,219,0.4);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.lp-jackpot-card::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(152,83,219,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-jackpot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(152,83,219,0.25); }
.lp-jackpot-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.lp-jackpot-card__amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-gold);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(245,200,66,0.4);
}
.lp-jackpot-card__game { font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: 18px; }

.lp-winners {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-winners__header {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 120px;
  padding: 14px 20px;
  background: var(--c-card2);
  border-bottom: 1px solid var(--c-border);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
}
.lp-winners__row {
  display: grid;
  grid-template-columns: 40px 1fr 1fr 120px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(58,54,80,0.5);
  align-items: center;
  transition: background var(--transition);
  font-size: 0.9rem;
}
.lp-winners__row:last-child { border-bottom: none; }
.lp-winners__row:hover { background: rgba(120,231,214,0.04); }
.lp-winners__pos {
  font-weight: 800;
  color: var(--c-text-muted);
}
.lp-winners__row:nth-child(2) .lp-winners__pos { color: #ffd700; }
.lp-winners__row:nth-child(3) .lp-winners__pos { color: #c0c0c0; }
.lp-winners__row:nth-child(4) .lp-winners__pos { color: #cd7f32; }
.lp-winners__nick { font-weight: 600; color: var(--c-text); }
.lp-winners__game { color: var(--c-text-muted); font-size: 0.85rem; }
.lp-winners__amount { font-weight: 800; color: var(--c-gold); text-align: right; }

.lp-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-game-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.lp-game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lp-game-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #1e1c2e, #2a1e45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.lp-game-card__img img { width: 100%; height: 100%; object-fit: cover; }
.lp-game-card__body { padding: 16px; }
.lp-game-card__name { font-weight: 700; font-size: 0.95rem; color: var(--c-text); margin-bottom: 6px; }
.lp-game-card__provider { font-size: 0.78rem; color: var(--c-text-muted); margin-bottom: 14px; }

.lp-slot {
  background: linear-gradient(135deg, #1a1730, #221f32);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.lp-slot__reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 28px 0;
}
.lp-slot__reel {
  width: 80px;
  height: 96px;
  background: var(--c-card);
  border: 2px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s;
}
.lp-slot__reel.spin { border-color: var(--c-accent); animation: reel-blur 0.6s infinite alternate; }
@keyframes reel-blur { from { filter: blur(2px); } to { filter: blur(0); } }
.lp-slot__result {
  display: none;
  background: linear-gradient(135deg, rgba(152,83,219,0.2), rgba(120,231,214,0.1));
  border: 1px solid var(--c-purple);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin: 16px 0;
  animation: fadeInUp 0.4s ease;
}
.lp-slot__result.show { display: block; }
.lp-slot__result-title { font-weight: 800; font-size: 1.1rem; color: var(--c-gold); margin-bottom: 6px; }
.lp-slot__result-bonus { font-size: 0.9rem; color: var(--c-text-muted); }
.lp-slot__controls { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.lp-content-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.lp-content-block h2 { font-size: 1.4rem; font-weight: 800; color: var(--c-accent); margin: 28px 0 12px; }
.lp-content-block h3 { font-size: 1.15rem; font-weight: 700; color: var(--c-text); margin: 22px 0 10px; }
.lp-content-block h4 { font-size: 1rem; font-weight: 700; color: var(--c-text); margin: 18px 0 8px; }
.lp-content-block p { color: var(--c-text-muted); margin-bottom: 14px; line-height: 1.7; font-size: 0.95rem; }
.lp-content-block ul, .lp-content-block ol { padding-left: 22px; margin-bottom: 14px; }
.lp-content-block ul { list-style: disc; }
.lp-content-block ol { list-style: decimal; }
.lp-content-block li { color: var(--c-text-muted); margin-bottom: 6px; font-size: 0.93rem; line-height: 1.65; }
.lp-content-block a { color: var(--c-accent); }
.lp-content-block strong, .lp-content-block b { color: var(--c-text); font-weight: 700; }
.lp-content-block em, .lp-content-block i { font-style: italic; }
.lp-content-block blockquote { border-left: 3px solid var(--c-accent); padding: 12px 20px; background: rgba(120,231,214,0.07); border-radius: 0 8px 8px 0; margin: 16px 0; }
.lp-content-block table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.9rem; }
.lp-content-block th { background: var(--c-card2); color: var(--c-accent); padding: 12px 16px; text-align: left; font-weight: 700; border: 1px solid var(--c-border); }
.lp-content-block td { padding: 10px 16px; text-align: left; border: 1px solid var(--c-border); color: var(--c-text-muted); }
.lp-content-block tr:hover td { background: rgba(120,231,214,0.04); }
.lp-content-block img { border-radius: var(--radius-sm); margin: 12px 0; }
.lp-content-block hr { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }

.lp-faq { display: flex; flex-direction: column; gap: 10px; }
.lp-faq__item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.lp-faq__item.open { border-color: var(--c-accent); }
.lp-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-text);
  user-select: none;
}
.lp-faq__q:hover { color: var(--c-accent); }
.lp-faq__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(120,231,214,0.1);
  border: 1px solid var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1rem;
  transition: transform var(--transition);
}
.lp-faq__item.open .lp-faq__icon { transform: rotate(45deg); }
.lp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 22px;
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.lp-faq__item.open .lp-faq__a { max-height: 600px; padding: 0 22px 18px; }

.lp-author {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.lp-author__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-accent);
  background: var(--c-card2);
}
.lp-author__name { font-size: 1.1rem; font-weight: 800; color: var(--c-text); margin-bottom: 4px; }
.lp-author__role { font-size: 0.82rem; color: var(--c-accent); font-weight: 600; margin-bottom: 12px; }
.lp-author__bio { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.7; margin-bottom: 14px; }
.lp-author__socials { display: flex; gap: 10px; }
.lp-author__social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-accent);
  padding: 6px 14px;
  border: 1px solid var(--c-accent);
  border-radius: 50px;
  transition: background var(--transition);
}
.lp-author__social:hover { background: rgba(120,231,214,0.12); }

.lp-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 28px;
  margin-top: 60px;
}
.lp-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.lp-footer__logo img { height: 38px; width: auto; margin-bottom: 14px; }
.lp-footer__desc { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.65; }
.lp-footer__col-title { font-size: 0.88rem; font-weight: 700; color: var(--c-text); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.lp-footer__links { display: flex; flex-direction: column; gap: 8px; }
.lp-footer__links a { font-size: 0.88rem; color: var(--c-text-muted); }
.lp-footer__links a:hover { color: var(--c-accent); }
.lp-footer__divider { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }
.lp-footer__payments { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.lp-footer__payment-badge {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}
.lp-footer__providers { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 24px; }
.lp-footer__provider-badge {
  background: rgba(30,28,46,0.7);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--c-text-muted);
}
.lp-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer__copyright { font-size: 0.78rem; color: var(--c-text-muted); line-height: 1.6; }
.lp-footer__license { font-size: 0.72rem; color: rgba(160,154,184,0.6); max-width: 460px; line-height: 1.6; text-align: right; }

.lp-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #1e1840 0%, #2a1e45 50%, #1e1840 100%);
  border-top: 2px solid var(--c-purple);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -4px 24px rgba(152,83,219,0.25);
}
.lp-widget__text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.lp-widget__bonus {
  font-size: 1rem;
  font-weight: 900;
  color: var(--c-gold);
}
.lp-widget__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 8px;
}
.lp-widget a { text-decoration: none; }

.lp-label {
  display: inline-block;
  background: rgba(152,83,219,0.18);
  border: 1px solid rgba(152,83,219,0.4);
  color: #c47dff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.lp-games-slider { position: relative; }
.lp-games-slider-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.wp-content-hidden { display: none; position: absolute; }
.elementor-widget { display: none; }
.yoast-schema-graph { display: none; }

@media (max-width: 1024px) {
  .lp-advantages { grid-template-columns: repeat(2, 1fr); }
  .lp-jackpots { grid-template-columns: repeat(2, 1fr); }
  .lp-games-slider-track { grid-template-columns: repeat(2, 1fr); }
  .lp-footer__top { grid-template-columns: 1fr 1fr; }
  .lp-toc ol { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lp-header__nav { display: none; }
  .lp-burger { display: flex; }
  .lp-header__inner { height: 62px; }
  .lp-advantages { grid-template-columns: 1fr; }
  .lp-jackpots { grid-template-columns: 1fr 1fr; }
  .lp-games-slider-track {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .lp-games-slider-track::-webkit-scrollbar { display: none; }
  .lp-game-card { min-width: 220px; scroll-snap-align: start; }
  .lp-winners__row { grid-template-columns: 36px 1fr 100px; }
  .lp-winners__game { display: none; }
  .lp-winners__header { grid-template-columns: 36px 1fr 100px; }
  .lp-winners__header > *:nth-child(3) { display: none; }
  .lp-footer__top { grid-template-columns: 1fr; }
  .lp-author { flex-direction: column; }
  .lp-slot__reel { width: 64px; height: 80px; font-size: 2.2rem; }
  .lp-hero { min-height: 420px; }
  .lp-footer__bottom { flex-direction: column; }
  .lp-footer__license { text-align: left; }
  .lp-widget { padding: 10px 16px; gap: 10px; }
  .lp-widget__text { font-size: 0.8rem; }
  .lp-content-block { padding: 24px 20px; }
  .lp-section { padding: 40px 0; }
  .lp-content-block table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .lp-jackpots { grid-template-columns: 1fr; }
  .lp-jackpot-card__amount { font-size: 1.6rem; }
  .lp-header__right .btn { padding: 8px 14px; font-size: 0.78rem; }
  .lp-hero h1 { font-size: 1.6rem; }
  .lp-slot__reels { gap: 8px; }
  .lp-slot__reel { width: 56px; height: 72px; font-size: 1.9rem; }
}

body { padding-bottom: 72px; }

.u-text-center { text-align: center; }
.u-mb-8 { margin-bottom: 8px; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-32 { margin-bottom: 32px; }
.u-mt-8 { margin-top: 8px; }
.u-mt-16 { margin-top: 16px; }
.u-mt-32 { margin-top: 32px; }
.u-accent { color: var(--c-accent); }
.u-gold { color: var(--c-gold); }
.u-muted { color: var(--c-text-muted); }

.p7x2q { opacity: 0; height: 0; position: absolute; pointer-events: none; }
.m3k9r { display: none; }

.animate-fade { animation: fadeInUp 0.5s ease both; }
