/* ============================================================
   DragonSlots Casino — styles.css
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --yellow: #FFF72E;
  --green: #4DB63A;
  --white: #FFFFFF;
  --bg: #130404;
  --bg2: #1e0606;
  --bg3: #2a0808;
  --bg-card: #1f0707;
  --border: rgba(255,247,46,0.15);
  --border-hover: rgba(255,247,46,0.5);
  --text: #e8e0d0;
  --text-muted: #a89880;
  --accent: #FFF72E;
  --accent2: #4DB63A;
  --red: #e53e3e;
  --shadow-btn: 0 4px 20px rgba(255,247,46,0.4), 0 2px 8px rgba(0,0,0,0.5);
  --shadow-btn-hover: 0 8px 30px rgba(255,247,46,0.6), 0 4px 12px rgba(0,0,0,0.6);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --header-h: 70px;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Rajdhani', 'Arial', sans-serif;
  --font-text: 'Inter', 'Arial', sans-serif;
  --max-w: 1200px;
  --pad-x: clamp(16px, 4vw, 48px);
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ─── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── Typography helpers ─────────────────────────────────── */
.text-accent { color: var(--accent); }
overflow-wrap { overflow-wrap: anywhere; }

/* ─── Section Base ───────────────────────────────────────── */
.section {
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
}
.section--dark {
  background: var(--bg2);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 1px;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.section__sub {
  font-family: var(--font-text);
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-muted);
  text-align: center;
  max-width: 740px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ─── Media / Image wrapper ──────────────────────────────── */
.media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-height: 480px;
  margin-bottom: 40px;
}
.media__img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.media:hover .media__img { transform: scale(1.02); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffd700 100%);
  color: #1a0505;
  border-color: var(--yellow);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-btn-hover);
  background: linear-gradient(135deg, #fff945 0%, #ffe500 100%);
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(255,247,46,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 0 0 transparent;
}
.btn--ghost:hover {
  background: rgba(255,247,46,0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,247,46,0.2);
}
.btn--ghost:active {
  transform: translateY(0);
}
.btn--green {
  background: linear-gradient(135deg, var(--green) 0%, #3da329 100%);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(77,182,58,0.4);
}
.btn--green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(77,182,58,0.55);
}

/* ─── EXIT POPUP ──────────────────────────────────────────── */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.exit-popup.is-open { display: flex; }
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.exit-popup__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #200808 0%, #2e0a0a 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 48px);
  max-width: 520px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 0 60px rgba(255,247,46,0.25), 0 16px 48px rgba(0,0,0,0.7);
  animation: popIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.2s;
}
.exit-popup__close:hover { color: var(--yellow); }
.exit-popup__dragon { font-size: 56px; margin-bottom: 8px; }
.exit-popup__label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.exit-popup__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 40px);
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 12px;
}
.exit-popup__sub {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.exit-popup__cta { width: 100%; }

/* ─── CATFISH ──────────────────────────────────────────────── */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: linear-gradient(90deg, #1a0404 0%, #2a0808 50%, #1a0404 100%);
  border-top: 2px solid var(--yellow);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(255,247,46,0.2);
  transition: transform 0.4s ease;
}
.catfish.is-hidden { transform: translateY(110%); }
.catfish__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  flex-wrap: wrap;
}
.catfish__text {
  font-family: var(--font-body);
  font-size: clamp(12px, 2.5vw, 15px);
  font-weight: 700;
  color: var(--yellow);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 180px);
  flex: 1;
  min-width: 0;
}
.catfish__cta {
  flex-shrink: 0;
  min-height: 38px;
  padding: 8px 18px;
  font-size: 13px;
}
.catfish__close {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.catfish__close:hover { color: var(--yellow); }

/* ─── HEADER ──────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 7000;
  background: rgba(19,4,4,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
  width: 100%;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.header__logo { flex-shrink: 0; }
.header__logo-img {
  height: clamp(36px, 5vw, 52px);
  width: auto;
  object-fit: contain;
  max-width: 180px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.header__nav::-webkit-scrollbar { display: none; }
.header__navlink {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  padding: 4px 0;
  white-space: nowrap;
}
.header__navlink:hover { color: var(--yellow); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__cta {
  min-height: 40px;
  padding: 8px 20px;
  font-size: 14px;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,247,46,0.08);
  border: 1px solid var(--border);
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-bottom: 8px;
}
.header__mobile-menu.is-open { display: flex; }
.header__mobile-link {
  padding: 14px var(--pad-x);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.header__mobile-link:hover { color: var(--yellow); background: rgba(255,247,46,0.05); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__banner {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  line-height: 0;
}
.hero__banner-link { display: block; }
.hero__banner-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}
.hero__content {
  text-align: center;
  padding-top: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(20px, 3vw, 40px);
}
.hero__badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(77,182,58,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(77,182,58,0); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 12vw, 110px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.hero__highlight {
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(255,247,46,0.5);
}
.hero__extras {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 28px;
}
.hero__extra-item {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 44px);
  color: var(--white);
  letter-spacing: 1px;
}
.hero__free-spins { color: var(--yellow); }
.hero__divider {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 36px);
  color: var(--green);
}
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__btn { min-width: clamp(160px, 40vw, 220px); }
.hero__disclaimer {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.hero__ticker {
  background: rgba(255,247,46,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 10px 0;
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker__item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── ADVANTAGES ─────────────────────────────────────────── */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.advantages__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  min-width: 0;
}
.advantages__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.advantages__icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.advantages__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
}
.advantages__text {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── BONUSES ─────────────────────────────────────────────── */
.bonuses__hero-img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-height: 400px;
  margin-bottom: 36px;
}
.bonuses__hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.bonuses__hero-img-link:hover .bonuses__hero-img { transform: scale(1.02); }
.bonuses__main-offer {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #2a0a0a 0%, #3d1010 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.bonuses__fire { font-size: 64px; flex-shrink: 0; }
.bonuses__offer-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.bonuses__offer-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 44px);
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 12px;
}
.bonuses__offer-desc {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.bonuses__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  min-width: 0;
}
.bonuses__card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.bonuses__num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--yellow);
  margin-bottom: 4px;
}
.bonuses__dep-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.bonuses__dep-text {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.bonuses__extra-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.bonuses__extra-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.bonuses__extra-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.bonuses__extra-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.bonuses__extra-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.bonuses__extra-card p {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.bonuses__cta-wrap {
  text-align: center;
}
.bonuses__cta { min-width: 280px; }

/* ─── HOW TO START ───────────────────────────────────────── */
.howto__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 40px;
  position: relative;
}
.howto__steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--yellow), var(--green));
}
.howto__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  min-width: 0;
}
.howto__step-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--yellow);
  background: var(--bg2);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.howto__step-content { min-width: 0; padding-top: 16px; }
.howto__step-content h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.howto__step-content p {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.howto__cta-wrap { text-align: center; }

/* ─── SPORTS ─────────────────────────────────────────────── */
.sports__media { max-width: 900px; margin: 0 auto 40px; }
.sports__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.sports__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-width: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.sports__card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.sports__icon { font-size: 36px; display: block; margin-bottom: 12px; }
.sports__card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.sports__card p { font-family: var(--font-text); font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.sports__cta-wrap { text-align: center; }

/* ─── CASINO ─────────────────────────────────────────────── */
.casino__media { max-width: 900px; margin: 0 auto 36px; }
.casino__categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.casino__cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  min-width: 0;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.casino__cat:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  background: rgba(255,247,46,0.05);
}
.casino__cat-icon { font-size: 28px; }
.casino__cat-name { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--white); }
.casino__cat-count { font-family: var(--font-text); font-size: 11px; color: var(--yellow); }
.casino__featured-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.casino__games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}
.casino__game {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  min-width: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.casino__game:hover { border-color: var(--yellow); transform: translateY(-2px); }
.casino__game-icon { font-size: 28px; flex-shrink: 0; }
.casino__game-info { min-width: 0; }
.casino__game-info strong { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--white); overflow-wrap: anywhere; word-break: break-word; }
.casino__game-info span { font-family: var(--font-text); font-size: 12px; color: var(--text-muted); }
.casino__cta-wrap { text-align: center; }

/* ─── MOBILE ─────────────────────────────────────────────── */
.mobile__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.mobile__feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-width: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.mobile__feature:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.mobile__feature-icon { font-size: 36px; margin-bottom: 12px; }
.mobile__feature h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.mobile__feature p { font-family: var(--font-text); font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.mobile__steps {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 600px;
  margin: 0 auto 36px;
}
.mobile__steps-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
}
.mobile__ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile__ol li { font-family: var(--font-text); font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.mobile__cta-wrap { text-align: center; }

/* ─── PAYMENTS ───────────────────────────────────────────── */
.payments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.payments__category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  min-width: 0;
}
.payments__cat-title { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.payments__methods { display: flex; flex-wrap: wrap; gap: 8px; }
.payments__method {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}
.payments__info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.payments__info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 0;
}
.payments__info-icon { font-size: 24px; flex-shrink: 0; }
.payments__info-item strong { display: block; font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.payments__info-item p { font-family: var(--font-text); font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── SUPPORT ────────────────────────────────────────────── */
.support__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.support__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  min-width: 0;
  transition: border-color 0.3s, transform 0.3s;
}
.support__card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.support__icon { font-size: 40px; margin-bottom: 14px; }
.support__card h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--yellow); margin-bottom: 10px; }
.support__card p { font-family: var(--font-text); font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq__list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item.is-open { border-color: var(--yellow); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  gap: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.faq__q::after {
  content: '+';
  font-size: 22px;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a p {
  padding: 0 22px 18px;
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.finalcta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,247,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.finalcta__img-link {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-height: 360px;
  margin-bottom: 36px;
}
.finalcta__img { width: 100%; height: auto; max-height: 360px; object-fit: contain; display: block; }
.finalcta__dragon { font-size: 72px; margin-bottom: 16px; animation: dragonFloat 3s ease-in-out infinite; }
@keyframes dragonFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.finalcta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}
.finalcta__sub {
  font-family: var(--font-text);
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.finalcta__bonus {
  display: inline-block;
  background: linear-gradient(135deg, #2a0a0a, #3d1010);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 16px 32px;
  margin-bottom: 32px;
}
.finalcta__bonus-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 34px);
  color: var(--yellow);
  letter-spacing: 1px;
}
.finalcta__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.finalcta__btn { min-width: clamp(160px, 38vw, 220px); }
.finalcta__disclaimer {
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #0d0202;
  border-top: 2px solid var(--border);
  padding: clamp(40px, 6vw, 80px) 0 0;
}
.footer__inner {}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
  min-width: 0;
}
.footer__logo-link { display: inline-block; margin-bottom: 14px; }
.footer__logo {
  height: clamp(40px, 5vw, 60px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.footer__tagline {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer__links h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__cta-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}
.footer__cta-col p {
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.footer__bottom {
  padding-bottom: 32px;
  text-align: center;
}
.footer__legal {
  font-family: var(--font-text);
  font-size: 12px;
  color: #6b5555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 12px;
}
.footer__copy {
  font-family: var(--font-text);
  font-size: 12px;
  color: #6b5555;
  margin-bottom: 16px;
}
.footer__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 4px 14px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .casino__categories { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bonuses__extra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sports__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonuses__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile__features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payments__info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino__games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .casino__categories { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__cta { display: none; }
  .bonuses__main-offer { flex-direction: column; text-align: center; }
  .howto__steps::before { left: 32px; }
  .howto__step-num { width: 64px; height: 64px; font-size: 28px; }
  .casino__categories { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .advantages__grid,
  .sports__grid,
  .bonuses__grid,
  .bonuses__extra-grid,
  .mobile__features,
  .payments__grid,
  .payments__info,
  .support__grid,
  .casino__games-grid,
  .casino__categories { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__btn { width: 100%; }
  .finalcta__ctas { flex-direction: column; align-items: stretch; }
  .finalcta__btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
  .howto__steps::before { display: none; }
  .howto__step { flex-direction: column; gap: 12px; }
  .howto__step-content { padding-top: 0; }
  .catfish__text { max-width: calc(100% - 120px); }
  .catfish__cta { padding: 6px 12px; font-size: 12px; }
}

@media (max-width: 400px) {
  .hero__extras { flex-direction: column; gap: 6px; }
  .hero__divider { display: none; }
  .bonuses__fire { font-size: 44px; }
  .exit-popup__title { font-size: 24px; }
  .finalcta__bonus { padding: 12px 16px; }
}

/* Body padding for fixed elements */
body { padding-top: 0; }
main { padding-top: 0; }
.dragonslots-deepdive {
padding: clamp(48px, 7vw, 96px) 0;
background: linear-gradient(180deg, #160505 0%, #1a0606 100%);
color: #e8e0d0;
font-family: 'Rajdhani', 'Arial', sans-serif;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding-left: clamp(16px, 4vw, 48px);
padding-right: clamp(16px, 4vw, 48px);
border-top: 1px solid rgba(255, 247, 46, 0.12);
border-bottom: 1px solid rgba(255, 247, 46, 0.12);
}
.dragonslots-deepdive__intro {
max-width: 880px;
margin: 0 auto clamp(28px, 4vw, 44px);
text-align: left;
}
.dragonslots-deepdive__title {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: clamp(26px, 5vw, 44px);
letter-spacing: 1px;
color: #ffffff;
line-height: 1.15;
margin: 0 0 14px;
overflow-wrap: anywhere;
word-break: break-word;
}
.dragonslots-deepdive__title::before {
content: '🐉';
display: inline-block;
margin-right: 10px;
font-size: 0.85em;
vertical-align: middle;
}
.dragonslots-deepdive__lead {
font-family: 'Inter', 'Arial', sans-serif;
font-size: clamp(14px, 2vw, 16px);
color: #c9bfa8;
line-height: 1.75;
margin: 0 0 12px;
}
.dragonslots-deepdive__block {
background: rgba(31, 7, 7, 0.55);
border: 1px solid rgba(255, 247, 46, 0.12);
border-left: 3px solid #FFF72E;
border-radius: 12px;
padding: clamp(20px, 4vw, 30px);
margin: 0 0 18px;
}
.dragonslots-deepdive__block:hover {
border-color: rgba(255, 247, 46, 0.28);
border-left-color: #FFF72E;
transition: border-color 0.3s ease;
}
.dragonslots-deepdive__h3 {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: clamp(20px, 3vw, 26px);
letter-spacing: 1px;
color: #FFF72E;
margin: 0 0 12px;
line-height: 1.2;
overflow-wrap: anywhere;
word-break: break-word;
}
.dragonslots-deepdive__p {
font-family: 'Inter', 'Arial', sans-serif;
font-size: clamp(14px, 1.9vw, 15px);
color: #c9bfa8;
line-height: 1.75;
margin: 0 0 12px;
}
.dragonslots-deepdive__p:last-child {
margin-bottom: 0;
}
.dragonslots-deepdive__p strong {
color: #ffffff;
font-weight: 600;
}
.dragonslots-deepdive__list,
.dragonslots-deepdive__ol {
margin: 8px 0 14px;
padding: 0 0 0 1.2em;
list-style: none;
}
.dragonslots-deepdive__list li,
.dragonslots-deepdive__ol li {
position: relative;
padding: 0 0 0 12px;
margin: 0 0 10px;
font-family: 'Inter', 'Arial', sans-serif;
font-size: clamp(13px, 1.8vw, 15px);
color: #c9bfa8;
line-height: 1.7;
}
.dragonslots-deepdive__list li::before {
content: '';
position: absolute;
left: -8px;
top: 0.6em;
width: 7px;
height: 7px;
background: #FFF72E;
border-radius: 50%;
box-shadow: 0 0 8px rgba(255, 247, 46, 0.5);
}
.dragonslots-deepdive__ol {
counter-reset: dragonslots-deepdive-counter;
}
.dragonslots-deepdive__ol li {
counter-increment: dragonslots-deepdive-counter;
padding-left: 36px;
}
.dragonslots-deepdive__ol li::before {
content: counter(dragonslots-deepdive-counter);
position: absolute;
left: -4px;
top: 0;
width: 26px;
height: 26px;
background: linear-gradient(135deg, #FFF72E 0%, #ffd700 100%);
color: #1a0505;
border-radius: 50%;
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: 14px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
}
.dragonslots-deepdive__list li strong {
color: #ffffff;
font-weight: 600;
}
.dragonslots-deepdive__table {
width: 100%;
border-collapse: collapse;
margin: 14px 0 4px;
font-family: 'Inter', 'Arial', sans-serif;
font-size: clamp(13px, 1.7vw, 14px);
background: rgba(13, 2, 2, 0.4);
border: 1px solid rgba(255, 247, 46, 0.15);
border-radius: 10px;
overflow: hidden;
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.dragonslots-deepdive__table thead {
background: linear-gradient(135deg, #2a0a0a 0%, #3d1010 100%);
}
.dragonslots-deepdive__table th {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: clamp(13px, 1.8vw, 15px);
letter-spacing: 1px;
color: #FFF72E;
text-align: left;
padding: 12px 14px;
border-bottom: 1px solid rgba(255, 247, 46, 0.2);
white-space: nowrap;
}
.dragonslots-deepdive__table td {
padding: 12px 14px;
color: #c9bfa8;
border-bottom: 1px solid rgba(255, 247, 46, 0.08);
vertical-align: top;
line-height: 1.6;
}
.dragonslots-deepdive__table tbody tr:last-child td {
border-bottom: none;
}
.dragonslots-deepdive__table tbody tr:hover td {
background: rgba(255, 247, 46, 0.04);
color: #e8e0d0;
}
.dragonslots-deepdive__note {
margin: clamp(20px, 3vw, 32px) 0 0;
padding: clamp(20px, 4vw, 28px);
background: linear-gradient(135deg, rgba(42, 10, 10, 0.85) 0%, rgba(61, 16, 16, 0.85) 100%);
border: 1px dashed rgba(255, 247, 46, 0.4);
border-radius: 12px;
}
.dragonslots-deepdive__note-title {
font-family: 'Bebas Neue', 'Impact', sans-serif;
font-size: clamp(18px, 2.5vw, 22px);
letter-spacing: 1px;
color: #FFF72E;
margin: 0 0 10px;
}
.dragonslots-deepdive__note-p {
font-family: 'Inter', 'Arial', sans-serif;
font-size: clamp(13px, 1.8vw, 15px);
color: #c9bfa8;
line-height: 1.75;
margin: 0 0 10px;
}
.dragonslots-deepdive__note-p:last-child {
margin-bottom: 0;
}
.dragonslots-deepdive__link {
color: #FFF72E;
text-decoration: underline;
text-underline-offset: 3px;
text-decoration-color: rgba(255, 247, 46, 0.4);
transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.dragonslots-deepdive__link:hover {
color: #ffffff;
text-decoration-color: #ffffff;
}
@media (min-width: 720px) {
.dragonslots-deepdive__table {
display: table;
overflow: visible;
}
}
@media (min-width: 960px) {
.dragonslots-deepdive__block {
padding: 32px 36px;
}
.dragonslots-deepdive__intro {
margin-bottom: 48px;
}
}