:root {
  --c-primary: #F05A22;
  --c-primary-d: #D94E1A;
  --c-primary-light: #FFF0EB;
  --c-accent: #FFB800;
  --c-bg: #FFFFFF;
  --c-bg-alt: #F5F5F5;
  --c-text: #1A1A1A;
  --c-text-muted: #666666;
  --c-border: #E0E0E0;
  --c-footer-bg: #1A1A1A;
  --c-footer-text: #CCCCCC;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.16);
  --max-w: 1160px;
  --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--c-text); background: var(--c-bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.25rem; }

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

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: var(--c-primary);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  letter-spacing: 0.01em;
}
.announce-bar a { color: #fff; text-decoration: underline; }

/* ─── HEADER ─── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; }
.header-logo .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-text);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--c-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  border-bottom: none !important;
}
.header-cta:hover { background: var(--c-primary-d); transform: translateY(-1px); }

.header-cta-mobile {
  display: none;
  align-items: center;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 5px;
  white-space: nowrap;
  transition: background 0.15s;
}
.header-cta-mobile:hover { background: var(--c-primary-d); }

.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(--c-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  transition: color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--c-primary); }
.mobile-nav .header-cta {
  margin-top: 12px;
  justify-content: center;
  border-bottom: none;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--c-primary-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(240,90,34,0.35); }
.btn-white {
  background: #fff;
  color: var(--c-primary);
}
.btn-white:hover { background: #FFF0EB; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #F05A22 0%, #D94E1A 40%, #B8400F 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: inherit;
}
.hero-title span { color: var(--c-accent); }
.hero-sub {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.8rem;
  opacity: 0.75;
}
.hero-trust span::before { content: '✓ '; font-weight: 700; }
.hero-img { position: relative; }
.hero-img img {
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-prize-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--c-accent);
  color: #1A1A1A;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.hero-prize-badge strong { display: block; font-size: 1.3rem; line-height: 1.1; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.trust-item .icon {
  width: 28px;
  height: 28px;
  background: var(--c-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ─── FEATURES SECTION ─── */
.section { padding: 60px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-sub {
  color: var(--c-text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 540px;
}
.section-header { margin-bottom: 36px; }
.section-header .section-sub { margin-bottom: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--c-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.55; }

/* ─── SLOTS GRID ─── */
.slots-section { padding: 56px 0; }
.slots-section .section-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.slot-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-bg-alt);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.slot-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-hover); }
.slot-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.slot-card:hover img { transform: scale(1.06); }
.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-overlay .play-btn {
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  padding: 7px 12px;
  border-radius: 5px;
  display: block;
}

/* ─── PROMO CARDS ─── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.promo-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.promo-img { position: relative; }
.promo-img img { width: 100%; height: 200px; object-fit: cover; }
.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.promo-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.promo-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.promo-body p { font-size: 0.88rem; color: var(--c-text-muted); line-height: 1.55; flex: 1; margin-bottom: 16px; }

/* ─── INFO CARDS (2-col) ─── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.info-grid.reversed { direction: rtl; }
.info-grid.reversed > * { direction: ltr; }
.info-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 16/10; }
.info-content { padding: 8px 0; }
.info-content .tag {
  display: inline-block;
  background: var(--c-primary-light);
  color: var(--c-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.info-content h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.info-content p { color: var(--c-text-muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 20px; }
.info-content ul { list-style: none; padding: 0; margin-bottom: 20px; }
.info-content ul li {
  padding: 6px 0 6px 22px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  position: relative;
  border-bottom: 1px solid var(--c-border);
}
.info-content ul li:last-child { border-bottom: none; }
.info-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--c-primary); font-weight: 700; }

/* ─── BONUS HIGHLIGHT ─── */
.bonus-highlight {
  background: linear-gradient(135deg, #F05A22 0%, #D94E1A 100%);
  color: #fff;
  border-radius: 14px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.bonus-highlight h2 { font-size: 1.8rem; margin-bottom: 10px; }
.bonus-highlight p { opacity: 0.9; font-size: 1rem; margin-bottom: 20px; }
.bonus-items { display: flex; gap: 24px; flex-wrap: wrap; }
.bonus-item { text-align: center; }
.bonus-item strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--c-accent); }
.bonus-item span { font-size: 0.8rem; opacity: 0.85; }

/* ─── PAYMENT METHODS ─── */
.payments-bar {
  background: var(--c-bg-alt);
  padding: 28px 0;
}
.payments-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.payment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.payment-logo {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-text);
}
.payment-logo.ideal { color: #cc0066; }
.payment-logo.paypal { color: #003087; }
.payment-logo.visa { color: #1a1f71; }
.payment-logo.mc { color: #eb001b; }

/* ─── SEO TEXT BLOCK ─── */
.seo-block {
  padding: 60px 0;
  border-top: 1px solid var(--c-border);
}
.seo-content { max-width: 860px; }
.seo-content h1 { font-size: 1.9rem; font-weight: 700; margin-bottom: 20px; line-height: 1.25; }
.seo-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 40px 0 14px;
  line-height: 1.3;
  padding-top: 8px;
  border-top: 2px solid var(--c-primary-light);
}
.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--c-text);
}
.seo-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 22px 0 8px;
  color: var(--c-text);
}
.seo-content p { font-size: 0.97rem; color: var(--c-text-muted); margin-bottom: 16px; line-height: 1.75; }
.seo-content ul, .seo-content ol {
  padding-left: 1.4rem;
  margin-bottom: 18px;
}
.seo-content li { font-size: 0.97rem; color: var(--c-text-muted); margin-bottom: 6px; line-height: 1.65; }
.seo-content strong { color: var(--c-text); font-weight: 700; }
.seo-content a { color: var(--c-primary); text-decoration: underline; }
.seo-content a:hover { color: var(--c-primary-d); }
.seo-content a.btn { text-decoration: none; }
.seo-content a.btn-primary { color: #fff; }
.seo-content a.btn-white { color: var(--c-primary); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--c-border); }
.seo-content table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.seo-content th {
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}
.seo-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-muted);
  vertical-align: top;
}
.seo-content tr:last-child td { border-bottom: none; }
.seo-content tr:nth-child(even) td { background: var(--c-bg-alt); }

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.15s;
  font-family: var(--font);
}
.faq-question:hover { background: var(--c-bg-alt); }
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--c-primary); transition: transform 0.2s; flex-shrink: 0; }
.faq-question.open::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  background: #fff;
}
.faq-answer.open { display: block; }

/* ─── STEPS LIST ─── */
.steps-list { list-style: none; padding: 0; counter-reset: steps; margin: 20px 0; }
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.steps-list li::before {
  content: counter(steps);
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, #F05A22 0%, #D94E1A 50%, #B8400F 100%);
  color: #fff;
  padding: 52px 0 48px;
  text-align: center;
}
.page-hero .hero-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto 24px; line-height: 1.6; }

/* ─── ICON LIST ─── */
.icon-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
  padding: 10px 14px;
  border-radius: 6px;
}
.icon-list li::before { content: '✓'; color: var(--c-primary); font-weight: 700; flex-shrink: 0; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}
.footer-brand .logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.65; color: var(--c-footer-text); max-width: 260px; }
.footer-brand .wla-logo { margin-top: 16px; border-radius: 6px; height: 48px; width: auto; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--c-footer-text); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--c-primary); }
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.footer-payments span {
  background: #2a2a2a;
  border: 1px solid #444;
  color: #ccc;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #888; }
.footer-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid #888;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: #888;
  flex-shrink: 0;
}
.footer-badges { display: flex; align-items: center; gap: 12px; }
.footer-disclaimer {
  background: #111;
  padding: 14px 0;
  text-align: center;
}
.footer-disclaimer p { font-size: 0.76rem; color: #666; max-width: 800px; margin: 0 auto; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb span { color: var(--c-text); font-weight: 600; }
.breadcrumb-sep { margin: 0 6px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none; }
  .header-cta-mobile { display: flex; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .hero { padding: 44px 0 40px; }
  .promo-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-grid.reversed { direction: ltr; }
  .bonus-highlight { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .bonus-items { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .icon-list { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 20px; }
  .section { padding: 40px 0; }
  .seo-block { padding: 40px 0; }
}

@media (max-width: 600px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .payments-inner { gap: 16px; }
}

@media (max-width: 400px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.5rem; }
}
