/* ================================================================
   FieryPlay Online – style.css
   Theme: Modern Neon Casino – Neon Red & Sleek Dark
   ================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  --bg-base:          #080810;
  --bg-card:          rgba(255, 23, 68, 0.08);
  --accent-primary:   #ff1744;
  --accent-hover:     #ff6584;
  --accent-glow:      rgba(255, 23, 68, 0.45);
  --accent-glow-soft: rgba(255, 23, 68, 0.20);
  --text-white:       #ffffff;
  --text-muted:       rgba(255, 255, 255, 0.65);
  --text-dim:         rgba(255, 255, 255, 0.40);
  --border-red:       rgba(255, 23, 68, 0.45);
  --header-bg:        rgba(8, 8, 16, 0.95);
  --header-height:    68px;
  --radius-sm:        6px;
  --radius-md:        10px;
  --radius-lg:        16px;
  --transition:       0.25s ease;
  --font-main:        'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY HELPERS
   ---------------------------------------------------------------- */
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.neon-underline {
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.neon-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--accent-primary);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-primary), 0 0 20px var(--accent-glow);
}

/* ----------------------------------------------------------------
   BUTTON SYSTEM
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

/* Primary – bright red */
.btn-primary {
  background: var(--accent-primary);
  color: var(--text-white);
  border-color: var(--accent-primary);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 18px var(--accent-glow);
  transform: translateY(-1px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border-color: var(--accent-primary);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--bg-card);
  box-shadow: 0 0 12px var(--accent-glow-soft);
  transform: translateY(-1px);
}

/* Ghost – minimal */
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-white);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

/* Hero CTA – larger */
.btn-hero {
  background: var(--accent-primary);
  color: var(--text-white);
  border-color: var(--accent-primary);
  padding: 14px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-hero:hover,
.btn-hero:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 36px var(--accent-glow);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   GLASS CARD MIXIN (reusable with multiple selectors)
   ---------------------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 18px var(--accent-glow-soft), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--header-bg);
  border-bottom: 2px solid var(--accent-primary);
  box-shadow: 0 2px 20px var(--accent-glow);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-flame { font-size: 1.5rem; }
.logo-text  { font-size: 1.25rem; font-weight: 800; letter-spacing: 0.05em; }
.logo-fiery { color: var(--accent-primary); }
.logo-play  { color: var(--text-white); }

/* Main Nav */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav ul::-webkit-scrollbar { display: none; }
.main-nav a {
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover {
  color: var(--text-white);
  background: rgba(255,23,68,0.12);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(8, 8, 16, 0.98);
  border-top: 1px solid var(--border-red);
  padding: 16px 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav.open {
  display: flex;
  max-height: 600px;
}
.mobile-nav ul { flex-direction: column; gap: 0; }
.mobile-nav li a {
  display: block;
  padding: 11px 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,23,68,0.1);
  transition: color var(--transition);
}
.mobile-nav li a:hover { color: var(--accent-primary); }
.mobile-nav-auth {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.mobile-nav-auth .btn { flex: 1; justify-content: center; }

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 580px;
  background: url('img/Fieryplay_Hero_Banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 16, 0.60);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Glass CTA Box */
.hero-cta-box {
  background: rgba(8, 8, 16, 0.72);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px var(--accent-glow-soft);
  padding: 40px 44px;
  max-width: 480px;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-subtitle strong { color: var(--text-white); }

/* Hero Character Image (desktop right side) */
.hero-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-character-img {
  max-height: 460px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px var(--accent-glow));
}

/* ----------------------------------------------------------------
   SECTION SEPARATOR (thin red neon line)
   ---------------------------------------------------------------- */
.neon-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  margin: 0;
  border: none;
}

/* ----------------------------------------------------------------
   SEARCH & CATEGORY SECTION
   ---------------------------------------------------------------- */
.search-section {
  padding: 36px 0 30px;
  border-bottom: 1px solid rgba(255,23,68,0.15);
}

.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 0 16px var(--accent-glow-soft);
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 160px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  placeholder-color: var(--text-dim);
}
.search-input::placeholder { color: var(--text-dim); }

/* Category Tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.cat-tab {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.cat-tab:hover,
.cat-tab.active {
  background: var(--accent-primary);
  color: var(--text-white);
  border-color: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Promo Row */
.promo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(255,23,68,0.10);
  border: 1px solid var(--border-red);
  transition: background var(--transition), box-shadow var(--transition);
}
.promo-pill:hover {
  background: rgba(255,23,68,0.22);
  box-shadow: 0 0 10px var(--accent-glow-soft);
}

/* ----------------------------------------------------------------
   TOP GAMES SECTION
   ---------------------------------------------------------------- */
.top-games-section {
  padding: 50px 0;
  border-top: 1px solid rgba(255,23,68,0.15);
}

.top-games-link {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-red);
  transition: transform var(--transition), box-shadow var(--transition);
}
.top-games-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.top-games-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------------------------------
   TEXT BLOCK SECTION
   ---------------------------------------------------------------- */
.text-block-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255,23,68,0.15);
}

.text-block-inner p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 800px;
}

.text-block-cta {
  margin-top: 28px;
}

/* ----------------------------------------------------------------
   WINNERS SECTION
   ---------------------------------------------------------------- */
.winners-section {
  padding: 56px 0;
  border-top: 3px solid var(--accent-primary);
  background: rgba(255,23,68,0.04);
  box-shadow: inset 0 2px 20px rgba(255,23,68,0.08);
}

.winners-inner {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.winners-content {
  flex: 1;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.winner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  cursor: pointer;
}
.winner-card:hover {
  transform: translateX(4px);
  box-shadow: 0 0 20px var(--accent-glow-soft);
  border-color: var(--accent-primary);
}
.winner-card.highlight {
  border-color: var(--accent-primary);
  box-shadow: 0 0 22px var(--accent-glow);
}

.winner-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-primary);
  min-width: 70px;
  flex-shrink: 0;
}

.winner-info {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.winner-info strong { color: var(--text-white); }

/* Lucky Cat */
.winners-mascot {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
.lucky-cat-img {
  width: 200px;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px var(--accent-glow));
}

/* ----------------------------------------------------------------
   PROMO BANNER
   ---------------------------------------------------------------- */
.promo-banner-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d0015 0%, #0a0008 50%, #100008 100%);
  border-top: 1px solid rgba(255,23,68,0.2);
  border-bottom: 1px solid rgba(255,23,68,0.2);
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.promo-banner-content {
  text-align: center;
  flex: 1;
}

.promo-banner-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.promo-banner-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.promo-banner-text strong { color: var(--text-white); }

.promo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--accent-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.promo-arrow:hover {
  background: rgba(255,23,68,0.2);
  box-shadow: 0 0 14px var(--accent-glow);
}

/* ----------------------------------------------------------------
   TWO-COLUMN SECTION
   ---------------------------------------------------------------- */
.two-col-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255,23,68,0.15);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.two-col-text p {
  color: var(--text-muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-list li:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-glow-soft);
  color: var(--text-white);
}

.feature-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   JACKPOT CTA
   ---------------------------------------------------------------- */
.jackpot-cta-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255,23,68,0.15);
}

.jackpot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 40px var(--accent-glow-soft), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 52px 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.jackpot-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-white);
}

.jackpot-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ----------------------------------------------------------------
   SEO SECTION
   ---------------------------------------------------------------- */
.seo-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255,23,68,0.15);
}

.seo-intro {
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 860px;
}
.seo-section p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 860px;
}

/* Info Table */
.info-table-wrap {
  overflow-x: auto;
  margin: 36px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-red);
  box-shadow: 0 0 20px var(--accent-glow-soft);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table th,
.info-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,23,68,0.12);
  text-align: left;
  vertical-align: top;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.info-table th {
  background: rgba(255,23,68,0.10);
  color: var(--accent-primary);
  font-weight: 600;
  white-space: nowrap;
  width: 210px;
}

.info-table td {
  background: rgba(8,8,16,0.6);
  color: var(--text-muted);
}

.info-table tr:hover th,
.info-table tr:hover td {
  background: rgba(255,23,68,0.06);
  color: var(--text-white);
}

/* SEO CTA Row */
.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin: 0 0 10px;
}

.faq-answer {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: rgba(4, 4, 10, 0.98);
  border-top: 2px solid var(--accent-primary);
  padding: 50px 0 30px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.footer-responsible {
  max-width: 680px;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-email a {
  color: var(--accent-primary);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-email a:hover { color: var(--accent-hover); }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.pay-icon {
  height: 28px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--transition), filter var(--transition);
}
.pay-icon:hover {
  opacity: 1;
  filter: drop-shadow(0 0 6px var(--accent-glow));
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent-primary); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ----------------------------------------------------------------
   LEGAL PAGES – Shared styles (breadcrumb, article, etc.)
   ---------------------------------------------------------------- */
.legal-page {
  padding: 50px 0 80px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,23,68,0.12);
}
.breadcrumb a {
  color: var(--accent-primary);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--accent-hover); }
.breadcrumb-sep { color: var(--text-dim); }
.breadcrumb-current { color: var(--text-muted); }

.legal-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-primary);
}

.legal-article h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin: 32px 0 12px;
}

.legal-article p,
.legal-article li {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
}

.legal-article ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-article strong { color: var(--text-white); }

.legal-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,23,68,0.15);
}

/* ----------------------------------------------------------------
   RESPONSIVE – TABLET (max 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-right .btn { display: none; }
  .hamburger { display: flex; }
  .hero-image-wrap { display: none; }
  .two-col-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ----------------------------------------------------------------
   RESPONSIVE – MOBILE (max 640px)
   ---------------------------------------------------------------- */
@media (max-width: 640px) {
  :root { --header-height: 58px; }

  .header-inner { gap: 12px; }
  .lang-badge { display: none; }

  .hero-section { min-height: 440px; }
  .hero-cta-box { padding: 28px 22px; max-width: 100%; }
  .hero-content { padding: 40px 16px; }

  .search-bar { flex-direction: column; }
  .search-input { min-width: 100%; }

  /* Winners – stack vertically */
  .winners-inner { flex-direction: column; align-items: center; }
  .winners-mascot { order: 2; }
  .lucky-cat-img { width: 150px; }

  /* Promo Banner */
  .promo-banner-inner { flex-direction: column; gap: 16px; }
  .promo-arrow { display: none; }

  /* Jackpot card */
  .jackpot-card { padding: 32px 20px; }

  /* Info table → stacked cards on mobile */
  .info-table-wrap {
    border: none;
    background: none;
    box-shadow: none;
    overflow: visible;
  }
  .info-table thead { display: none; }
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
  .info-table tr {
    background: var(--bg-card);
    border: 1px solid var(--border-red);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .info-table th {
    background: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0;
    width: auto;
  }
  .info-table td {
    background: none;
    padding: 0;
    font-size: 0.95rem;
    color: var(--text-white);
    border: none;
  }
  .info-table tr:last-child { border-bottom: 1px solid var(--border-red); }

  .seo-cta-row { flex-direction: column; }
  .seo-cta-row .btn { width: 100%; justify-content: center; }

  .footer-legal { gap: 8px 14px; }

  .faq-item { padding: 16px; }
}
