/* ============================================
   assets/styles.css – MyStake Casino Landing
   ============================================ */

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

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #151519;
  color: #e8eaf0;
  line-height: 1.65;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #00AAEB;
  --primary-dark: #0088C7;
  --primary-glow: rgba(0,170,235,0.35);
  --white: #FFFFFF;
  --bg-deep: #151519;
  --bg-card: #1B1B21;
  --bg-card2: #202028;
  --border: rgba(0,170,235,0.18);
  --text: #e8eaf0;
  --text-muted: #9098b0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-btn: 0 6px 20px rgba(0,170,235,0.4);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  white-space: nowrap;
  overflow-wrap: normal;
}

.btn--primary {
  background: linear-gradient(135deg, #00AAEB 0%, #0077C8 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
  border: 2px solid rgba(255,255,255,0.15);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(0,170,235,0.55);
  background: linear-gradient(135deg, #00BBFF 0%, #0088e0 100%);
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 12px rgba(0,170,235,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0,170,235,0.15);
}
.btn--ghost:hover {
  background: rgba(0,170,235,0.12);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,170,235,0.28);
}
.btn--ghost:active {
  transform: translateY(0) scale(0.98);
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) { background: var(--bg-card); }
.section:nth-child(odd) { background: var(--bg-deep); }

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 4px;
  margin: 14px auto 0;
}

.section__sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(21,21,25,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.header__logo img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-shrink: 1;
  min-width: 0;
}
.header__nav::-webkit-scrollbar { display: none; }

.header__nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.header__nav-link:hover {
  color: var(--primary);
  background: rgba(0,170,235,0.1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__cta { font-size: 0.9rem; padding: 10px 20px; min-height: 40px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: #18181f;
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav.open {
  display: flex;
  max-height: 500px;
}
.mobile-nav__link {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__link:hover { background: rgba(0,170,235,0.12); color: var(--primary); }
.mobile-nav__cta { margin-top: 8px; width: 100%; }

/* ---------- HERO ---------- */
.hero { padding: 0; background: var(--bg-deep); }

.hero__image-wrap {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  background: #0d0d12;
}
.hero__image-wrap a { display: block; }
.hero__image {
  width: 100%;
  max-width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.hero__image-wrap:hover .hero__image { transform: scale(1.02); }

.hero__content {
  background: linear-gradient(180deg, rgba(21,21,25,0) 0%, #151519 30%, #151519 100%);
  margin-top: -80px;
  position: relative;
  z-index: 2;
  padding: 40px 0 64px;
}

.hero__inner { text-align: center; max-width: 780px; margin: 0 auto; }

.hero__eyebrow {
  display: inline-block;
  background: rgba(0,170,235,0.15);
  border: 1px solid rgba(0,170,235,0.4);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero__title span {
  background: linear-gradient(135deg, #00AAEB, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__btn { min-width: 200px; font-size: 1.05rem; padding: 15px 32px; min-height: 52px; }

.hero__disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ---------- ADVANTAGES ---------- */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.advantages__card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.advantages__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,170,235,0.18);
  border-color: rgba(0,170,235,0.4);
}
.advantages__icon { font-size: 2.2rem; margin-bottom: 14px; }
.advantages__card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.advantages__card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- PROMOS ---------- */
.promos__main {
  display: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #0e1927, #111a2a);
  border: 1px solid rgba(0,170,235,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 36px;
}
.promos__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #0066aa);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.promos__bonus-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.promos__bonus-desc { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.promos__list { margin-bottom: 28px; }
.promos__list li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.promos__list li:last-child { border-bottom: none; }

.promos__media { min-width: 0; }
.promos__media a { display: block; border-radius: var(--radius); overflow: hidden; }
.promos__media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.promos__media a:hover img { transform: scale(1.04); }

.promos__secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.promos__card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.promos__card:hover { border-color: rgba(0,170,235,0.4); transform: translateY(-3px); }
.promos__card-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.promos__card h4 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.promos__card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- HOW TO ---------- */
.howto__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  counter-reset: step;
}
.howto__step {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.howto__step:hover { border-color: rgba(0,170,235,0.4); transform: translateY(-4px); }
.howto__step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #0066cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(0,170,235,0.35);
}
.howto__step h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.howto__step p { font-size: 0.9rem; color: var(--text-muted); }

.howto__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- SPORT ---------- */
.sport__layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 400px);
  gap: 48px;
  align-items: center;
}
.sport__content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.sport__content p strong { color: var(--white); }
.sport__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 24px 0 32px;
}
.sport__feat {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color var(--transition);
}
.sport__feat:hover { border-color: var(--primary); }
.sport__media { min-width: 0; }
.sport__media a { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.sport__media img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sport__media a:hover img { transform: scale(1.04); }

/* ---------- CASINO ---------- */
.casino__layout {
  display: grid;
  grid-template-columns: minmax(0, 400px) 1fr;
  gap: 48px;
  align-items: center;
}
.casino__content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.casino__content p strong { color: var(--white); }
.casino__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.casino__cat {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  min-width: 0;
}
.casino__cat:hover {
  background: rgba(0,170,235,0.15);
  border-color: var(--primary);
  color: var(--primary);
}
.casino__media { min-width: 0; }
.casino__media a { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.casino__media img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.casino__media a:hover img { transform: scale(1.04); }

/* ---------- MOBILE SECTION ---------- */
.mobile__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.mobile__card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.mobile__card:hover { border-color: rgba(0,170,235,0.4); transform: translateY(-4px); }
.mobile__icon { font-size: 2.2rem; margin-bottom: 14px; }
.mobile__card h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.mobile__card p { font-size: 0.9rem; color: var(--text-muted); }
.mobile__cta-wrap { text-align: center; }

/* ---------- PAYMENTS ---------- */
.payments__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.payments__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 400px;
}
.payments__table th,
.payments__table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  border-bottom: 1px solid var(--border);
}
.payments__table th {
  background: rgba(0,170,235,0.12);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.payments__table tr:last-child td { border-bottom: none; }
.payments__table tr:hover td { background: rgba(0,170,235,0.05); }
.payments__table td { color: var(--text-muted); }
.payments__table td:first-child { color: var(--text); font-weight: 600; }

.payments__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.payments__info-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.payments__info-card h4 { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.payments__info-card p { font-size: 0.88rem; color: var(--text-muted); }
.payments__info-card strong { color: var(--primary); }
.payments__cta { text-align: center; }

/* ---------- SUPPORT ---------- */
.support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.support__card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.support__card:hover { border-color: rgba(0,170,235,0.4); transform: translateY(-4px); }
.support__icon { font-size: 2.4rem; margin-bottom: 16px; }
.support__card h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.support__card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 44px 20px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}
.faq__q:hover { color: var(--primary); }
.faq__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition);
}
.faq__q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.2s ease;
}
.faq__a.open {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq__a p { color: var(--text-muted); line-height: 1.75; font-size: 0.94rem; }

/* ---------- FINAL CTA ---------- */
.finalcta {
  background: linear-gradient(135deg, #0a1628 0%, #0e1a30 60%, #061020 100%) !important;
  border-top: 1px solid rgba(0,170,235,0.25);
  border-bottom: 1px solid rgba(0,170,235,0.25);
}
.finalcta__inner {
  display: grid;
  grid-template-columns: 1fr minmax(0,380px);
  gap: 48px;
  align-items: center;
}
.finalcta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.finalcta__sub { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.finalcta__bonus {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,170,235,0.2), rgba(0,170,235,0.08));
  border: 1px solid rgba(0,170,235,0.5);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.finalcta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.finalcta__disclaimer { font-size: 0.76rem; color: var(--text-muted); opacity: 0.65; }
.finalcta__media { min-width: 0; }
.finalcta__media a { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 60px rgba(0,0,0,0.5); }
.finalcta__media img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.finalcta__media a:hover img { transform: scale(1.04); }

/* ---------- FOOTER ---------- */
.footer { background: #0d0d11; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 60px 24px 40px;
}
.footer__logo { display: inline-block; margin-bottom: 16px; }
.footer__logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.footer__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 32px;
}
.footer__col h4 { font-size: 0.85rem; font-weight: 800; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--primary); }
.footer__mid {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
}
.footer__warning {
  background: rgba(255,160,0,0.06);
  border: 1px solid rgba(255,160,0,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.footer__warning p {
  font-size: 0.82rem;
  color: #a09060;
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer__warning p:last-child { margin-bottom: 0; }
.footer__warning strong { color: #d4a050; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__badges { display: flex; gap: 8px; }
.footer__badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ---------- CATFISH ---------- */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #0e1927, #0a1520);
  border-top: 2px solid var(--primary);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,170,235,0.25);
  display: none;
}
.catfish.visible { display: block; }
.catfish__inner {
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.catfish__text {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55ch;
}
.catfish__btn { font-size: 0.88rem; padding: 9px 20px; min-height: 40px; flex-shrink: 0; }
.catfish__close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.catfish__close:hover { background: rgba(255,255,255,0.2); }

/* ---------- EXIT POPUP ---------- */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.exit-popup.visible { display: flex; }
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.exit-popup__box {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #13213a, #0d1a2e);
  border: 1px solid rgba(0,170,235,0.4);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(0,170,235,0.1);
  animation: popIn 0.35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-popup__close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.exit-popup__close:hover { background: rgba(255,255,255,0.2); }
.exit-popup__logo img { height: 38px; margin: 0 auto 20px; }
.exit-popup__tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.exit-popup__title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.exit-popup__title span {
  background: linear-gradient(135deg, #00AAEB, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exit-popup__sub { color: var(--text-muted); margin-bottom: 28px; font-size: 0.94rem; }
.exit-popup__cta { width: 100%; font-size: 1.05rem; padding: 16px 24px; min-height: 52px; }
.exit-popup__disclaimer { font-size: 0.74rem; color: var(--text-muted); opacity: 0.6; margin-top: 14px; }

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

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .advantages__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .promos__secondary { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .support__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .payments__info { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
  .sport__layout { grid-template-columns: 1fr; gap: 32px; }
  .casino__layout { grid-template-columns: 1fr; gap: 32px; }
  .casino__media { order: -1; }
  .promos__main { grid-template-columns: 1fr; gap: 28px; }
  .finalcta__inner { grid-template-columns: 1fr; gap: 32px; }
  .finalcta__media { order: -1; }
  .howto__steps { grid-template-columns: 1fr; gap: 16px; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section__sub { margin-bottom: 32px; }

  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }

  .advantages__grid { grid-template-columns: 1fr; }
  .promos__secondary { grid-template-columns: 1fr; }
  .support__grid { grid-template-columns: 1fr; }
  .payments__info { grid-template-columns: 1fr; }
  .mobile__grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; gap: 20px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .hero__image-wrap { max-height: 260px; }
  .hero__image { max-height: 260px; }
  .hero__content { margin-top: -40px; padding: 24px 0 48px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__btn { width: 100%; max-width: 320px; }

  .howto__cta { flex-direction: column; align-items: center; }
  .howto__cta .btn { width: 100%; max-width: 320px; }
  .finalcta__actions { flex-direction: column; }
  .finalcta__actions .btn { width: 100%; }

  .btn { white-space: normal; min-height: 48px; }

  .catfish__text { white-space: normal; }
  .catfish__inner { flex-wrap: wrap; }
  .catfish__btn { width: 100%; }

  .sport__features { grid-template-columns: 1fr; }
  .exit-popup__box { padding: 36px 24px; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .hero__title { font-size: 1.7rem; }
  .header__logo img { height: 34px; }
}
.ms-guide-block {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #0e1320 0%, #141a2c 100%);
  color: #e6ebf5;
  padding: 64px 24px;
  border-radius: 18px;
  margin: 48px auto;
  max-width: 1200px;
  line-height: 1.7;
  box-sizing: border-box;
}

.ms-guide-block * {
  box-sizing: border-box;
}

.ms-guide-block__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 48px auto;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ms-guide-block__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd166;
  background: rgba(255, 209, 102, 0.1);
  padding: 8px 18px;
  border-radius: 100px;
  margin: 0 0 18px 0;
  border: 1px solid rgba(255, 209, 102, 0.25);
}

.ms-guide-block__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 22px 0;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.ms-guide-block__lead {
  font-size: 17px;
  color: #b9c2d4;
  margin: 0;
  line-height: 1.75;
}

.ms-guide-block__article {
  max-width: 980px;
  margin: 0 auto;
}

.ms-guide-block__h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin: 44px 0 18px 0;
  padding-left: 18px;
  border-left: 4px solid #ffd166;
  line-height: 1.35;
}

.ms-guide-block__article p {
  font-size: 16px;
  color: #c9d1e2;
  margin: 0 0 18px 0;
  line-height: 1.8;
}

.ms-guide-block__article p strong {
  color: #ffffff;
  font-weight: 700;
}

.ms-guide-block__article p em {
  color: #ffd166;
  font-style: italic;
}

.ms-guide-block__table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  font-size: 15px;
}

.ms-guide-block__table thead {
  background: linear-gradient(135deg, #ffd166 0%, #f4a73d 100%);
}

.ms-guide-block__table thead th {
  padding: 16px 14px;
  text-align: left;
  color: #1a1f2e;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: none;
}

.ms-guide-block__table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}

.ms-guide-block__table tbody tr:last-child {
  border-bottom: none;
}

.ms-guide-block__table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.ms-guide-block__table tbody tr:hover {
  background: rgba(255, 209, 102, 0.06);
}

.ms-guide-block__table tbody td {
  padding: 14px;
  color: #c9d1e2;
  vertical-align: top;
  border: none;
}

.ms-guide-block__table tbody td:first-child {
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 768px) {
  .ms-guide-block {
    padding: 40px 18px;
    margin: 32px 12px;
    border-radius: 14px;
  }

  .ms-guide-block__header {
    margin-bottom: 36px;
    padding-bottom: 24px;
  }

  .ms-guide-block__eyebrow {
    font-size: 11px;
    padding: 6px 14px;
  }

  .ms-guide-block__lead {
    font-size: 15px;
  }

  .ms-guide-block__h3 {
    margin: 32px 0 14px 0;
    padding-left: 14px;
    border-left-width: 3px;
  }

  .ms-guide-block__article p {
    font-size: 15px;
    line-height: 1.7;
  }

  .ms-guide-block__table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 13px;
  }

  .ms-guide-block__table thead th,
  .ms-guide-block__table tbody td {
    padding: 12px 10px;
  }
}

@media (max-width: 480px) {
  .ms-guide-block {
    padding: 32px 14px;
    margin: 24px 8px;
  }

  .ms-guide-block__article p {
    font-size: 14.5px;
  }
}