/* =============================================
   AZUR CASINO — Professional Casino CSS
   Dark Navy Premium Theme
   ============================================= */

/* === CSS VARIABLES === */
:root {
  --primary:      #6C73F5;
  --primary-lt:   #9EA4FF;
  --primary-dk:   #4A51D0;
  --navy:         #151840;
  --dark:         #0A0B1E;
  --dark2:        #0F1030;
  --dark3:        #141638;
  --card:         #181A45;
  --card2:        #1E2158;
  --gold:         #F4C430;
  --gold2:        #E8A000;
  --gold-lt:      #FFD966;
  --green:        #27AE60;
  --green-lt:     #2ECC71;
  --red:          #E74C3C;
  --text:         #C8CCF0;
  --text-lt:      #E8EAF6;
  --text-muted:   #7880B8;
  --white:        #FFFFFF;
  --border:       rgba(108,115,245,0.18);
  --border2:      rgba(108,115,245,0.08);
  --radius-xs:    6px;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow:       0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.6);
  --shadow-glow:  0 8px 32px rgba(108,115,245,0.35);
  --transition:   0.25s ease;
  --transition-slow: 0.4s ease;
  --font:         'Inter', 'Segoe UI', -apple-system, Arial, sans-serif;
  --header-h:     68px;
}

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

/* === ACCESSIBILITY — focus-visible === */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.faq-question:focus-visible,
.cat-btn:focus-visible,
.social-btn:focus-visible,
.store-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary-lt); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; font-family: var(--font); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--white); }
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 0.9rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--dark2); }

/* === SECTION HEADINGS === */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,115,245,0.12);
  border: 1px solid rgba(108,115,245,0.28);
  color: var(--primary-lt);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  margin-bottom: 14px;
}
.section-title span { color: var(--primary-lt); }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 12px auto 36px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  box-shadow: 0 4px 20px rgba(244,196,48,0.4);
}
.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(244,196,48,0.55);
  transform: translateY(-2px);
  color: #111;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108,115,245,0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(108,115,245,0.55);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary-lt);
  border: 2px solid rgba(108,115,245,0.5);
}
.btn-outline:hover {
  background: rgba(108,115,245,0.1);
  border-color: var(--primary);
  color: var(--white);
}
.btn-lg  { padding: 17px 42px; font-size: 1rem; }
.btn-sm  { padding: 10px 22px; font-size: 0.82rem; }
.btn-xs  { padding: 8px 16px;  font-size: 0.78rem; }

/* === BADGES === */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-gold    { background: rgba(244,196,48,0.15); color: var(--gold); border: 1px solid rgba(244,196,48,0.3); }
.badge-green   { background: rgba(39,174,96,0.15);  color: var(--green-lt); border: 1px solid rgba(39,174,96,0.3); }
.badge-primary { background: rgba(108,115,245,0.15); color: var(--primary-lt); border: 1px solid rgba(108,115,245,0.3); }
.badge-new     { background: var(--green); color: #fff; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,11,30,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  display: block;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(108,115,245,0.12); }
.main-nav a.active { color: var(--primary-lt); background: rgba(108,115,245,0.15); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 8px;
  background: rgba(108,115,245,0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.lang-switch:hover { border-color: var(--primary); color: var(--primary-lt); }
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 8px;
  background: none;
  border: none;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   MOBILE NAV DRAWER
   =========================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(10,11,30,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.mobile-nav a:hover { background: rgba(108,115,245,0.12); color: var(--white); }
.mobile-nav .btn {
  margin-top: 8px;
  border-radius: 12px;
  width: 100%;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,11,30,0.15) 0%,
    rgba(10,11,30,0.5)  60%,
    rgba(10,11,30,1)    100%
  );
}
.hero-content {
  position: relative;
  padding: 56px 0 72px;
  text-align: center;
  background: linear-gradient(to bottom, transparent, var(--dark) 10%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,115,245,0.1);
  border: 1px solid rgba(108,115,245,0.3);
  color: var(--primary-lt);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 18px;
  line-height: 1.2;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary-lt), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-bonus-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(108,115,245,0.12), rgba(21,24,64,0.6));
  border: 1px solid rgba(108,115,245,0.3);
  border-radius: 20px;
  padding: 24px 40px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.hero-bonus-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.bonus-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.bonus-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(21,24,64,0.5);
  backdrop-filter: blur(8px);
}
.hero-stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--primary-lt); }
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

/* ===========================
   LIVE TICKER
   =========================== */
.live-ticker {
  background: var(--dark3);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ticker-item strong { color: var(--text-lt); }
.ticker-item .win   { color: var(--green-lt); font-weight: 700; }
.ticker-sep {
  color: var(--border);
  font-size: 1.2rem;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   STEPS SECTION
   =========================== */
.steps-banner {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  box-shadow: var(--shadow);
}
.steps-banner img { width: 100%; height: auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow-glow); }
.step-card:hover::before { opacity: 1; }
.step-num {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(108,115,245,0.5);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step-card p  { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ===========================
   BONUS SECTION
   =========================== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
.bonus-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-color: var(--border); }
.bonus-card-icon   { font-size: 2.2rem; margin-bottom: 16px; }
.bonus-card h3     { margin-bottom: 8px; font-size: 1.1rem; }
.bonus-card-amount { font-size: 1.9rem; font-weight: 900; color: var(--gold); line-height: 1.1; margin-bottom: 8px; }
.bonus-card p      { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.bonus-card-badge  { position: absolute; top: 14px; right: 14px; }

/* ===========================
   GAMES SECTION
   =========================== */
.games-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(108,115,245,0.06);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 40px;
  -webkit-tap-highlight-color: transparent;
}
.cat-btn:hover,
.cat-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(108,115,245,0.4);
  transform: translateY(-1px);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
}
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 3/2;
  background: var(--dark3);
  display: block;
  text-decoration: none;
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.game-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 40px rgba(0,0,0,0.6); }
.game-card:hover img { transform: scale(1.06); }
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,30,0.95) 0%, rgba(10,11,30,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }
.game-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.game-card-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  color: #fff;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.game-badge-rtp,
.game-badge-live,
.game-badge-new,
.game-badge-jackpot {
  position: absolute;
  top: 8px; right: 8px;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1.3;
}
.game-badge-rtp     { background: rgba(10,11,30,0.8); color: var(--primary-lt); border: 1px solid rgba(108,115,245,0.4); }
.game-badge-live    { background: var(--red); color: #fff; animation: blink 1.4s infinite; }
.game-badge-new     { background: var(--green); color: #fff; }
.game-badge-jackpot { background: var(--gold); color: var(--dark); }

/* Placeholder cards */
.game-card-placeholder { text-decoration: none; }
.game-placeholder-inner {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.game-placeholder-icon     { font-size: 2.2rem; }
.game-placeholder-name     { font-size: 0.85rem; font-weight: 700; color: #fff; text-align: center; }
.game-placeholder-provider { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* ===========================
   LIVE CASINO
   =========================== */
.live-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.live-game-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.live-game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-color: var(--border); }
.live-game-header {
  background: linear-gradient(135deg, var(--navy), var(--dark3));
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.live-game-icon { font-size: 2rem; flex-shrink: 0; }
.live-game-header h4 { margin: 0; font-size: 1rem; }
.live-game-body {
  padding: 18px 20px 20px;
}
.live-game-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 14px; }

/* ===========================
   PROMOTIONS
   =========================== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.promo-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.promo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border); }
.promo-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.promo-card-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.promo-card-body { padding: 22px 22px 24px; }
.promo-card-body h3 { margin: 8px 0; font-size: 1.05rem; }
.promo-card-body p  { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 12px; }
.promo-highlight {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 14px;
}

/* ===========================
   WINNERS
   =========================== */
.winners-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.winners-img-wrap img { width: 100%; }
.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.winners-col h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.winner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.winner-item:hover { border-color: var(--border); }
.winner-rank {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.winner-rank.gold   { background: linear-gradient(135deg,#F4C430,#E8A000); color: #111; }
.winner-rank.silver { background: linear-gradient(135deg,#C0C0C0,#909090); color: #111; }
.winner-rank.bronze { background: linear-gradient(135deg,#CD7F32,#A0522D); color: #fff; }
.winner-rank.other  { background: var(--card2); color: var(--text-muted); border: 1px solid var(--border); }
.winner-info       { flex: 1; min-width: 0; }
.winner-name       { font-weight: 600; font-size: 0.9rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.winner-game       { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }
.winner-amount     { font-weight: 800; color: var(--green-lt); font-size: 0.95rem; white-space: nowrap; }
.recent-winner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.recent-winner-img {
  width: 42px; height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--dark3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.recent-winner-info  { flex: 1; min-width: 0; }
.recent-winner-name  { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.recent-winner-amount{ color: var(--green-lt); font-weight: 700; font-size: 0.85rem; }

/* ===========================
   VIP PROGRAMME
   =========================== */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.vip-tier {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vip-tier:hover  { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-color: var(--border); }
.vip-tier.featured {
  background: linear-gradient(135deg, rgba(108,115,245,0.12), rgba(21,24,64,0.5));
  border-color: rgba(108,115,245,0.4);
}
.vip-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.vip-tier h4   { margin-bottom: 8px; font-size: 1rem; }
.vip-tier p    { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===========================
   PAYMENT METHODS
   =========================== */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.payment-item {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  min-width: 100px;
  cursor: default;
}
.payment-item:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.payment-icon  { font-size: 1.8rem; line-height: 1; }
.payment-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; }

/* ===========================
   INFO / TEXT BLOCKS
   =========================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}
.info-text h3 { margin-bottom: 14px; font-size: 1.2rem; color: var(--primary-lt); }
.info-text p  { font-size: 0.9rem; color: var(--text-muted); }
.info-list { margin: 12px 0; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 0.9rem;
  color: var(--text);
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before {
  content: '✓';
  color: var(--green-lt);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}

/* ===========================
   TABLES
   =========================== */
.info-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 28px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 420px;
}
.info-table thead tr {
  background: linear-gradient(135deg, var(--navy), var(--dark3));
}
.info-table th {
  padding: 13px 16px;
  text-align: left;
  color: var(--primary-lt);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border2);
  color: var(--text);
  vertical-align: middle;
  font-size: 0.87rem;
}
.info-table tbody tr:last-child td { border-bottom: none; }
.info-table tbody tr:hover { background: rgba(108,115,245,0.06); }
.td-gold  { color: var(--gold); font-weight: 700; }
.td-green { color: var(--green-lt); font-weight: 700; }
.td-red   { color: var(--red); font-weight: 700; }

/* ===========================
   TRUST / SECURITY
   =========================== */
.trust-grid, .rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card, .rg-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.trust-card:hover, .rg-card:hover { transform: translateY(-4px); border-color: var(--border); }
.trust-icon, .rg-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.trust-card h4, .rg-card h4 { margin-bottom: 8px; font-size: 0.95rem; }
.trust-card p, .rg-card p   { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ===========================
   SUPPORT
   =========================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.support-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.support-card:hover { transform: translateY(-4px); border-color: var(--border); }
.support-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.support-card h4 { margin-bottom: 8px; font-size: 1rem; }
.support-card p  { font-size: 0.84rem; color: var(--text-muted); margin: 0; }
.support-availability { font-size: 0.76rem; color: var(--green-lt); font-weight: 600; margin-top: 6px; display: block; }

/* ===========================
   APP SECTION
   =========================== */
.app-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app-features  { display: grid; gap: 14px; margin-bottom: 28px; }
.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.app-feature-icon  { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.app-feature h5    { margin-bottom: 4px; font-size: 0.95rem; }
.app-feature p     { font-size: 0.84rem; color: var(--text-muted); margin: 0; }
.app-store-btns    { display: flex; gap: 14px; flex-wrap: wrap; }

.app-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.app-mockup-inner {
  width: 260px;
  height: 440px;
  background: linear-gradient(135deg, var(--navy), var(--dark3));
  border: 2px solid var(--border);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 60px rgba(108,115,245,0.2);
  position: relative;
  overflow: hidden;
}
.app-mockup-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 30%; right: 30%;
  height: 3px;
  background: var(--border);
  border-radius: 0 0 4px 4px;
}
.app-mockup-logo { font-size: 3rem; }
.app-mockup-text { font-size: 1.1rem; font-weight: 700; color: var(--primary-lt); }

/* ===========================
   FAQ
   =========================== */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-lt);
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}
.faq-question:hover { color: var(--white); }
.faq-icon {
  width: 24px; height: 24px;
  background: rgba(108,115,245,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-lt);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(108,115,245,0.3); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border2);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1E2460 50%, var(--navy) 100%);
  border: 1px solid rgba(108,115,245,0.2);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(108,115,245,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner > p { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; font-size: 1rem; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--border2);
  padding: 64px 0 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--card);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border2);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pay-icon {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}
.age-warning {
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.age-warning-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(108,115,245,0.5);
  border: none;
  color: #fff;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover   { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(108,115,245,0.6); }

/* ===========================
   STICKY MOBILE CTA BAR
   =========================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(10,11,30,0.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  align-items: center;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-cta-bar .btn {
  flex: 1;
  min-height: 46px;
  font-size: 0.82rem;
  padding: 12px 10px;
  border-radius: 12px;
}

/* ===========================
   APP SECTION — PHONE MOCKUP
   =========================== */
.phone-mockup {
  width: 240px;
  height: 420px;
  background: linear-gradient(135deg, var(--navy), var(--dark3));
  border: 2px solid var(--border);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(108,115,245,0.2);
  position: relative;
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 30%; right: 30%;
  height: 3px;
  background: var(--border);
  border-radius: 0 0 4px 4px;
}
.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}
.phone-logo {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dk));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 16px rgba(108,115,245,0.4);
  margin-bottom: 4px;
}
.phone-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.phone-chip {
  background: rgba(108,115,245,0.15);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ===========================
   PK PAGE SPECIFIC
   =========================== */
.hero-banner-pk {
  min-height: 240px;
  background: linear-gradient(135deg, #013220 0%, #014d2e 30%, #0A0B1E 70%, #151840 100%);
  position: relative;
}
.pk-section-highlight {
  background: linear-gradient(135deg, rgba(1,102,68,0.08) 0%, rgba(10,11,30,0) 100%);
  border-left: 3px solid #01C44B;
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}
.pk-flag { display: inline-flex; align-items: center; gap: 8px; }
.pk-green { color: #01C44B; }
.pk-hero-badge {
  background: rgba(1,102,68,0.2) !important;
  border-color: rgba(1,102,68,0.4) !important;
  color: #48D88A !important;
}

/* ===========================
   UTILITY
   =========================== */
.text-center     { text-align: center; }
.text-primary    { color: var(--primary-lt); }
.text-gold       { color: var(--gold); }
.text-green      { color: var(--green-lt); }
.text-muted      { color: var(--text-muted); }
.fw-bold         { font-weight: 700; }
.d-flex          { display: flex; }
.align-center    { align-items: center; }
.justify-center  { justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8   { margin-top: 8px; }
.mt-12  { margin-top: 12px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-8   { margin-bottom: 8px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* --- Tablet 1024px --- */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .footer-main      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vip-grid         { grid-template-columns: repeat(3, 1fr); }
  .live-games-grid  { grid-template-columns: repeat(2, 1fr); }
  .trust-grid, .rg-grid, .support-grid { grid-template-columns: repeat(2, 1fr); }
  .app-section-inner { grid-template-columns: 1fr; gap: 36px; }
  .app-mockup       { display: none; }
  .winners-grid     { grid-template-columns: 1fr; gap: 28px; }
  .info-grid        { grid-template-columns: 1fr; gap: 28px; }
  .games-grid       { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
}

/* --- Mobile 768px --- */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .section   { padding: 52px 0; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 32px; }

  /* Header */
  .main-nav        { display: none !important; }
  .burger-btn      { display: flex; }
  .header-cta .btn         { display: none; }
  .header-cta .lang-switch { display: none; }
  .logo img        { height: 34px; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  .site-footer    { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .scroll-top     { bottom: calc(72px + 12px); }

  /* Hero */
  .hero-banner img {
    max-height: 240px;
    object-position: center top;
  }
  .hero-content { padding: 40px 0 56px; }
  .hero-eyebrow { font-size: 0.72rem; padding: 6px 14px; }
  h1 { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .hero-desc { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-bonus-box { padding: 20px 20px; width: 100%; max-width: 420px; }
  .bonus-amount   { font-size: 2rem; }
  .hero-cta-row   { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 32px; }
  .hero-cta-row .btn { width: 100%; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .hero-stat { padding: 16px 12px; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-top: 1px solid var(--border); }
  .hero-stat:nth-child(4) { border-right: none; }
  .hero-stat-num   { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.73rem; }

  /* Ticker */
  .ticker-item { padding: 0 20px; font-size: 0.78rem; }

  /* Steps */
  .steps-banner img { max-height: 100px; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card  { padding: 28px 20px; }

  /* Bonus */
  .bonus-grid { grid-template-columns: 1fr; gap: 14px; }
  .bonus-card { padding: 24px 20px; }

  /* Games */
  .games-categories { gap: 8px; }
  .cat-btn   { padding: 8px 14px; font-size: 0.8rem; }
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .game-card-overlay { opacity: 1; }
  .game-card:hover  { transform: none; }

  /* Promos */
  .promo-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Live casino */
  .live-games-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Winners */
  .winners-img-wrap { margin-bottom: 28px; }

  /* VIP */
  .vip-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vip-tier { padding: 22px 14px; }
  .vip-icon { font-size: 2rem; }

  /* Payments */
  .payments-grid { gap: 10px; }
  .payment-item  { padding: 14px 18px; min-width: 88px; }
  .payment-icon  { font-size: 1.5rem; }

  /* Trust / RG / Support */
  .trust-grid, .rg-grid, .support-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-card, .rg-card, .support-card { padding: 22px 14px; }
  .trust-icon, .rg-icon, .support-icon { font-size: 1.8rem; }

  /* Tables */
  .info-table th { padding: 10px 12px; font-size: 0.72rem; }
  .info-table td { padding: 10px 12px; font-size: 0.82rem; }

  /* FAQ */
  .faq-question     { padding: 15px 16px; font-size: 0.9rem; min-height: 52px; }
  .faq-answer-inner { padding: 0 16px 14px; font-size: 0.87rem; }

  /* CTA */
  .cta-banner { padding: 48px 20px; border-radius: var(--radius-lg); }
  .cta-banner h2 { font-size: 1.5rem; }

  /* Footer */
  .site-footer  { padding: 40px 0 20px; }
  .footer-main  { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .age-warning  { gap: 10px; font-size: 0.82rem; }

  /* Info lists */
  .info-list li { font-size: 0.87rem; }
}

/* --- Small Mobile 480px --- */
@media (max-width: 480px) {
  :root { --header-h: 56px; }

  html { font-size: 14px; }
  .container { padding: 0 14px; }
  .section   { padding: 44px 0; }

  h1 { font-size: clamp(1.3rem, 6.5vw, 1.9rem); line-height: 1.2; }
  h2 { font-size: clamp(1.25rem, 5vw, 1.7rem); }

  .hero-banner img { max-height: 200px; }
  .hero-content    { padding: 32px 0 48px; }
  .bonus-amount    { font-size: 1.8rem; }

  .btn-lg   { padding: 15px 26px; font-size: 0.92rem; }
  .btn      { padding: 12px 20px; font-size: 0.85rem; }

  .games-grid      { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .vip-grid        { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-grid, .rg-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid    { grid-template-columns: 1fr; }

  .info-table      { font-size: 0.78rem; }
  .info-table th   { padding: 8px 10px; }
  .info-table td   { padding: 8px 10px; }

  .cta-banner { padding: 36px 16px; }
  .hero-bonus-box  { padding: 18px 16px; }
  .steps-banner img { max-height: 80px; }
}

/* --- Very Small 360px --- */
@media (max-width: 360px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1.18rem; }
  .bonus-amount { font-size: 1.5rem; }
  .games-grid   { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .vip-grid     { grid-template-columns: 1fr; }
  .btn          { font-size: 0.8rem; padding: 11px 16px; }
  .btn-lg       { padding: 13px 20px; }
  .step-num     { width: 44px; height: 44px; font-size: 1.1rem; }
  .mobile-cta-bar .btn { font-size: 0.75rem; padding: 10px 8px; }
}

/* --- Landscape phones --- */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-banner img { max-height: 130px; }
  .hero-content    { padding: 20px 0 32px; }
  .section         { padding: 36px 0; }
  .steps-grid      { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .live-games-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-cta-bar  { padding: 7px 16px; }
  .mobile-cta-bar .btn { padding: 9px 8px; font-size: 0.78rem; }
}

/* --- Touch devices (no hover) --- */
@media (hover: none) and (pointer: coarse) {
  .btn, .cat-btn, .faq-question, .social-btn,
  .payment-item, .mobile-nav a, .main-nav a {
    min-height: 44px;
  }
  .bonus-card:hover,
  .step-card:hover,
  .promo-card:hover,
  .live-game-card:hover,
  .vip-tier:hover,
  .trust-card:hover,
  .support-card:hover,
  .payment-item:hover,
  .game-card:hover { transform: none !important; box-shadow: none !important; }
  .game-card-overlay      { opacity: 1 !important; }
  .game-card:hover img    { transform: none !important; }
  .ticker-inner:active    { animation-play-state: paused; }
}

/* --- Safe area (iPhone notch/home bar) --- */
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-cta-bar { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
  .site-footer    { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-inner { animation: none; }
  html { scroll-behavior: auto; }
}
