/* ==========================================================
   Kent Casino — landing styles
   ========================================================== */

:root {
  --bg: #0b0b14;
  --bg-2: #141424;
  --bg-3: #1d1d33;
  --surface: #1a1a2e;
  --border: rgba(255, 180, 0, .18);
  --accent: #ffb400;
  --accent-2: #e11d48;
  --accent-3: #7c3aed;
  --text: #f4f4f8;
  --muted: #a0a0b8;
  --success: #10b981;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-lg: 0 20px 50px -12px rgba(0,0,0,.7);
  --shadow-gold: 0 10px 35px -8px rgba(255,180,0,.45);
  --grad-gold: linear-gradient(135deg, #ffb400 0%, #ff8a00 50%, #e11d48 100%);
  --grad-dark: linear-gradient(135deg, #0b0b14 0%, #1d1d33 100%);
  --grad-purple: linear-gradient(135deg, #7c3aed 0%, #e11d48 100%);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: #000; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(124,58,237,.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(225,29,72,.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(255,180,0,.12) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: #ffd24d; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

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

.section {
  padding: 80px 0;
  position: relative;
}
.section--tight { padding: 50px 0; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.5px;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-gold);
  color: #1a0f00;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #1a0f00;
}
.btn--ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn--ghost:hover {
  background: rgba(255, 180, 0, .1);
  color: #ffd24d;
}
.btn--sm { min-height: 40px; padding: 8px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ==========================================================
   HEADER
   ========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 11, 20, .78);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  line-height: 0;
}
.logo__img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(225, 29, 72, .35));
  transition: transform .25s ease;
}
.logo:hover .logo__img { transform: scale(1.04); }
.footer .logo__img { height: 40px; }

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-menu a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s ease;
  position: relative;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-menu a:hover::after { width: 100%; }

.trust-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); }

.burger-menu {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--grad-gold);
  border-radius: 10px;
  z-index: 9999;
}
.burger-menu span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #1a0f00;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger-menu.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-menu.is-open span:nth-child(2) { opacity: 0; }
.burger-menu.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* mobile drawer (hidden on desktop) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  padding: 80px 24px 30px;
  z-index: 200;
  transition: right .3s ease;
  overflow-y: auto;
}
.mobile-drawer.is-open { right: 0; }
.mobile-drawer__head {
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer__head img { height: 34px; width: auto; }
.mobile-drawer a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}
.mobile-drawer a:hover { color: var(--accent); }
.mobile-drawer .btn { margin-top: 20px; width: 100%; }

.backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,180,0,.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 180, 0, .12);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero__eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat b {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.hero__stat span {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin-left: auto;
}
.hero__card {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__card--1 {
  top: 0; left: 0;
  width: 55%; height: 55%;
  background: var(--grad-gold);
  animation: float 6s ease-in-out infinite;
}
.hero__card--2 {
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  background: var(--grad-purple);
  animation: float 6s ease-in-out infinite 2s;
}
.hero__card--3 {
  top: 30%; right: 15%;
  width: 40%; height: 40%;
  background: var(--grad-dark);
  border: 2px solid var(--accent);
  animation: float 6s ease-in-out infinite 4s;
}
.hero__card svg {
  width: 60%; height: 60%;
  margin: 20% auto;
  color: rgba(0,0,0,.5);
}
.hero__card--2 svg, .hero__card--3 svg { color: rgba(255,255,255,.85); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ==========================================================
   FEATURES
   ========================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-gold);
}
.feature > * { position: relative; z-index: 1; }
.feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #1a0f00;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.feature p {
  color: var(--muted);
  font-size: .95rem;
}

/* ==========================================================
   BONUSES
   ========================================================== */
.bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bonus::after {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,180,0,.08) 0%, transparent 50%);
  pointer-events: none;
}
.bonus--featured {
  background: var(--grad-purple);
  border-color: transparent;
  transform: scale(1.03);
}
.bonus--featured .bonus__title { color: #fff; }
.bonus--featured .bonus__desc { color: rgba(255,255,255,.85); }
.bonus:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bonus--featured:hover { transform: scale(1.03) translateY(-5px); }

.bonus__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,180,0,.15);
  color: var(--accent);
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.bonus--featured .bonus__tag {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.bonus__amount {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bonus--featured .bonus__amount {
  background: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.bonus__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.bonus__desc {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 20px;
  min-height: 44px;
}
.bonus__list {
  list-style: none;
  margin-bottom: 24px;
}
.bonus__list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
  font-size: .9rem;
}
.bonus--featured .bonus__list li { color: rgba(255,255,255,.9); }
.bonus__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}
.bonus--featured .bonus__list li::before { color: #fff; }

/* ==========================================================
   GAMES GRID
   ========================================================== */
.games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.game {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.game:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-gold);
}
.game__thumb {
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-3);
}
.game__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.game:hover .game__thumb img { transform: scale(1.08); }
.game__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.game__rtp {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0,0,0,.7);
  color: var(--accent);
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.game__body {
  padding: 16px;
}
.game__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.game__provider {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

/* thumb variants */
.thumb-1 { background: linear-gradient(135deg, #ff8a00, #e11d48); }
.thumb-2 { background: linear-gradient(135deg, #7c3aed, #e11d48); }
.thumb-3 { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.thumb-4 { background: linear-gradient(135deg, #ffb400, #ff8a00); }
.thumb-5 { background: linear-gradient(135deg, #0ea5e9, #7c3aed); }
.thumb-6 { background: linear-gradient(135deg, #e11d48, #ffb400); }
.thumb-7 { background: linear-gradient(135deg, #1d1d33, #7c3aed); }
.thumb-8 { background: linear-gradient(135deg, #10b981, #ffb400); }
.thumb-9 { background: linear-gradient(135deg, #ff8a00, #7c3aed); }
.thumb-10 { background: linear-gradient(135deg, #0ea5e9, #10b981); }
.thumb-11 { background: linear-gradient(135deg, #e11d48, #1d1d33); }
.thumb-12 { background: linear-gradient(135deg, #ffb400, #e11d48); }

/* ==========================================================
   LIVE CASINO
   ========================================================== */
.live {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.live__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grad-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.live__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,.5) 80%);
}
.live__visual svg {
  width: 45%;
  color: rgba(255,255,255,.9);
  position: relative;
  z-index: 1;
}
.live__badge {
  position: absolute;
  top: 20px; left: 20px;
  padding: 6px 14px;
  background: var(--accent-2);
  color: #fff;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.live__badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s infinite;
}

.live h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.live h2 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.live p {
  color: var(--muted);
  margin-bottom: 20px;
}
.live__games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 28px;
}
.live__game {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease;
}
.live__game:hover { border-color: var(--accent); }
.live__game svg {
  width: 24px; height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}
.live__game span {
  font-weight: 600;
  font-size: .95rem;
}

/* ==========================================================
   APP
   ========================================================== */
.app {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.app__phone {
  position: relative;
  aspect-ratio: 9/16;
  max-width: 320px;
  margin: 0 auto;
  background: var(--grad-dark);
  border: 8px solid #222;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 20px 14px;
}
.app__phone::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 20px;
  background: #111;
  border-radius: 0 0 16px 16px;
}
.app__screen {
  width: 100%; height: 100%;
  background: var(--grad-gold);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.app__screen img {
  max-width: 75%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.25));
}
.app h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.app h2 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.app p {
  color: var(--muted);
  margin-bottom: 24px;
}
.app__list {
  list-style: none;
  margin-bottom: 28px;
}
.app__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
}
.app__list svg {
  width: 22px; height: 22px;
  color: var(--success);
  flex-shrink: 0;
}
.app__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================
   SEO TEXT
   ========================================================== */
.seo-text {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 40px;
}
.seo-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--accent);
}
.seo-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}
.seo-text p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: .98rem;
  line-height: 1.8;
}
.seo-text p strong { color: var(--text); font-weight: 700; }
.seo-text ul {
  list-style: none;
  margin: 14px 0;
}
.seo-text ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--muted);
}
.seo-text ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s ease;
}
.review:hover { transform: translateY(-4px); }
.review__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #1a0f00;
}
.review__author {
  font-weight: 700;
  font-size: 1rem;
}
.review__date {
  color: var(--muted);
  font-size: .8rem;
}
.review__stars {
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 1rem;
  letter-spacing: 2px;
}
.review__text {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* ==========================================================
   TAG CLOUD
   ========================================================== */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.tag-cloud a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 25px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
  transition: all .2s ease;
}
.tag-cloud a:hover {
  background: var(--grad-gold);
  color: #1a0f00;
  border-color: transparent;
  transform: translateY(-2px);
}
.tag-cloud a:nth-child(3n+1) { font-size: .95rem; }
.tag-cloud a:nth-child(4n+2) { font-size: 1.05rem; font-weight: 700; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: var(--accent); }
.faq__summary {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__summary::after {
  transform: rotate(45deg);
}
.faq__body {
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 60px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand p {
  color: var(--muted);
  margin: 14px 0 18px;
  font-size: .9rem;
  max-width: 380px;
}
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer__payments span {
  padding: 6px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}
.footer__col h4 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  color: var(--muted);
  font-size: .9rem;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .85rem;
}
.footer__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  border-radius: 6px;
  font-weight: 900;
  font-size: .85rem;
}

/* ==========================================================
   MODAL
   ========================================================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.8);
  z-index: 300;
  padding: 20px;
}
.modal.is-open {
  display: flex;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.modal__box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.modal__close:hover { background: var(--accent); color: #1a0f00; }
.modal__icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1a0f00;
}
.modal__icon svg { width: 40px; height: 40px; }
.modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.modal__text {
  color: var(--muted);
  margin-bottom: 24px;
}
.modal .btn { width: 100%; }

/* ==========================================================
   MOBILE (≤ 768px)
   ========================================================== */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin: 0 auto; max-width: 360px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .bonuses { grid-template-columns: 1fr; }
  .bonus--featured { transform: none; }
  .bonus--featured:hover { transform: translateY(-5px); }
  .games { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .live, .app { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 10px 15px; margin: 0 auto; }
  .section { padding: 50px 0; }

  .nav-menu { display: none; }
  .trust-badges { display: none; }
  .burger-menu {
    display: flex;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }
  .header__inner { padding: 10px 0; }

  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero__desc { font-size: 1rem; }
  .hero__cta .btn { flex: 1; min-width: 160px; }
  .hero__stats { gap: 20px; }
  .hero__stat b { font-size: 1.4rem; }

  .features { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 22px 20px; }

  .games {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .game__body { padding: 12px; }
  .game__title { font-size: .9rem; }

  .reviews { grid-template-columns: 1fr; }
  .seo-text { padding: 24px 20px; }
  .seo-text p { font-size: .92rem; line-height: 1.7; }

  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: .95rem; margin-bottom: 34px; }

  .btn { min-height: 48px; font-size: .95rem; padding: 10px 20px; }
}

@media (max-width: 420px) {
  .games { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .bonus__amount { font-size: 2rem; }
  .live__games { grid-template-columns: 1fr; }
}

/* ==========================================================
   LIGHT MODE (optional toggle, reserved)
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
