/* =============================================
   assets/styles.css – Stake India Landing Page
   ============================================= */

/* ---- 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', system-ui, -apple-system, sans-serif;
  background-color: #121F27;
  color: #F7FAFC;
  line-height: 1.6;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

a { color: inherit; text-decoration: none; }

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

/* ---- MEDIA WRAPPER ---- */
.media {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(247,250,252,0.08);
  max-width: 100%;
}

.media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.media:hover img { transform: scale(1.02); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  overflow-wrap: anywhere;
  min-width: 0;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, #1a8ede 0%, #0f70b8 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(26,142,222,0.45), 0 2px 6px rgba(0,0,0,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(26,142,222,0.6), 0 3px 10px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #22a0f0 0%, #1480d0 100%);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(26,142,222,0.35);
}

.btn--ghost {
  background: transparent;
  color: #1a8ede;
  border: 2px solid #1a8ede;
  box-shadow: 0 2px 8px rgba(26,142,222,0.18);
}

.btn--ghost:hover {
  background: rgba(26,142,222,0.1);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(26,142,222,0.28);
}

.btn--ghost:active {
  transform: translateY(0) scale(0.98);
}

/* ---- SECTIONS ---- */
.section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #F7FAFC;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #a0b4bf;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #0d1a22;
  border-bottom: 1px solid rgba(247,250,252,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  min-width: 0;
}

.logo-link { flex-shrink: 0; display: flex; align-items: center; }

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }

.nav-link {
  font-weight: 600;
  font-size: 0.93rem;
  color: #c8d8e0;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}

.nav-link:hover {
  background: rgba(26,142,222,0.12);
  color: #1a8ede;
}

.header-cta { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F7FAFC;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  background: #0d1a22;
  border-top: 1px solid rgba(247,250,252,0.07);
}

.mobile-menu.open { display: flex; }

.mobile-nav-link {
  font-weight: 600;
  color: #c8d8e0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}

.mobile-nav-link:hover {
  background: rgba(26,142,222,0.1);
  color: #1a8ede;
}

.mobile-cta {
  margin-top: 8px;
  width: 100%;
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  background: linear-gradient(180deg, #0d1a22 0%, #121F27 100%);
  padding: 0;
}

.hero-media-link { display: block; }

.hero-media {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(247,250,252,0.06);
  max-height: 480px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  background: linear-gradient(180deg, #0d1a22 0%, #121F27 100%);
  padding: 48px 0 64px;
  text-align: center;
}

.hero-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a8ede;
  margin-bottom: 16px;
}

.hero-bonus {
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 900;
  color: #F7FAFC;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(26,142,222,0.35);
  margin-bottom: 32px;
}

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

/* =============================================
   ADVANTAGES
   ============================================= */
.advantages-section { background: #1B2E39; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.advantage-card {
  background: #121F27;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.22s, box-shadow 0.22s;
  min-width: 0;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.adv-icon { font-size: 2rem; margin-bottom: 14px; }

.advantage-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #F7FAFC;
}

.advantage-card p {
  font-size: 0.93rem;
  color: #a0b4bf;
  line-height: 1.65;
}

/* =============================================
   PROMO
   ============================================= */
.promo-section { background: #121F27; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.promo-card {
  background: #1B2E39;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.promo-card--featured {
  border-color: rgba(26,142,222,0.3);
  background: linear-gradient(140deg, #1B2E39 60%, #0f1e30 100%);
}

.promo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #1a8ede;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

.promo-name { font-size: 1.15rem; font-weight: 800; color: #F7FAFC; }

.promo-bonus-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1a8ede;
  text-shadow: 0 0 20px rgba(26,142,222,0.4);
}

.promo-desc { font-size: 0.92rem; color: #a0b4bf; line-height: 1.65; flex: 1; }

.promo-media { margin-top: 8px; }

/* =============================================
   HOW TO START
   ============================================= */
.howto-section { background: #1B2E39; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.step-card {
  background: #121F27;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  min-width: 0;
  transition: transform 0.22s;
}

.step-card:hover { transform: translateY(-3px); }

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26,142,222,0.25);
  line-height: 1;
  margin-bottom: 14px;
}

.step-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: #F7FAFC; }
.step-card p { font-size: 0.93rem; color: #a0b4bf; line-height: 1.65; }

.howto-cta { text-align: center; }

/* =============================================
   SPORTS
   ============================================= */
.sports-section { background: #121F27; }

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.sport-card {
  background: #1B2E39;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.22s, box-shadow 0.22s;
}

.sport-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.sport-media {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(247,250,252,0.06);
}

.sport-media img {
  max-height: 200px;
  object-fit: cover;
  width: 100%;
}

.sport-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.sport-info h3 { font-size: 1.05rem; font-weight: 800; color: #F7FAFC; }
.sport-info p { font-size: 0.9rem; color: #a0b4bf; line-height: 1.65; flex: 1; }

.sports-extra {
  font-size: 0.95rem;
  color: #a0b4bf;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   CASINO
   ============================================= */
.casino-section { background: #1B2E39; }

.casino-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.casino-cat {
  background: #121F27;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.22s, box-shadow 0.22s;
}

.casino-cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.casino-media {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(247,250,252,0.06);
}

.casino-media img {
  max-height: 200px;
  object-fit: cover;
  width: 100%;
}

.casino-cat h3 { font-size: 1.05rem; font-weight: 800; color: #F7FAFC; padding: 18px 20px 8px; }
.casino-cat p { font-size: 0.9rem; color: #a0b4bf; line-height: 1.65; padding: 0 20px; flex: 1; }
.casino-cat .btn { margin: 16px 20px 20px; align-self: flex-start; }

.casino-extra {
  font-size: 0.95rem;
  color: #a0b4bf;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   MOBILE
   ============================================= */
.mobile-section { background: #121F27; }

.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.mob-feature {
  background: #1B2E39;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  min-width: 0;
  transition: transform 0.22s;
}

.mob-feature:hover { transform: translateY(-3px); }

.mob-icon { font-size: 2rem; margin-bottom: 14px; }
.mob-feature h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; color: #F7FAFC; }
.mob-feature p { font-size: 0.93rem; color: #a0b4bf; line-height: 1.65; }

/* =============================================
   PAYMENTS
   ============================================= */
.payments-section { background: #1B2E39; }

.payments-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(247,250,252,0.08);
  margin-bottom: 24px;
}

.payments-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 480px;
}

.payments-table th,
.payments-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.93rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.payments-table th {
  background: #0d1a22;
  color: #1a8ede;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.payments-table tr:nth-child(even) td { background: rgba(247,250,252,0.025); }
.payments-table tr:nth-child(odd) td { background: #121F27; }
.payments-table td { color: #c8d8e0; border-bottom: 1px solid rgba(247,250,252,0.05); }

.payments-note {
  font-size: 0.93rem;
  color: #a0b4bf;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 8px;
  line-height: 1.7;
}

/* =============================================
   SUPPORT
   ============================================= */
.support-section { background: #121F27; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.support-card {
  background: #1B2E39;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  transition: transform 0.22s;
}

.support-card:hover { transform: translateY(-3px); }

.sup-icon { font-size: 2rem; }
.support-card h3 { font-size: 1.05rem; font-weight: 800; color: #F7FAFC; }
.support-card p { font-size: 0.93rem; color: #a0b4bf; line-height: 1.65; flex: 1; }
.support-card .btn { align-self: flex-start; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: #1B2E39; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #121F27;
  border: 1px solid rgba(247,250,252,0.07);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #F7FAFC;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.18s;
  overflow-wrap: anywhere;
}

.faq-question:hover { color: #1a8ede; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: #1a8ede;
}

.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: #a0b4bf;
  line-height: 1.7;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta-section {
  background: linear-gradient(135deg, #0d1a22 0%, #0f1e30 100%);
  border-top: 1px solid rgba(26,142,222,0.15);
}

.final-cta-inner { text-align: center; }

.final-cta-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #F7FAFC;
  margin-bottom: 16px;
}

.final-cta-bonus {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #1a8ede;
  text-shadow: 0 0 30px rgba(26,142,222,0.5);
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 1rem;
  color: #a0b4bf;
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.final-cta-media { max-width: 860px; margin: 0 auto; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0d1a22;
  border-top: 1px solid rgba(247,250,252,0.07);
  padding: 56px 0 24px;
}

.footer-inner { display: flex; flex-direction: column; gap: 48px; }

.footer-top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-logo-link { flex-shrink: 0; }

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a8ede;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.88rem;
  color: #7a9bad;
  transition: color 0.18s;
  overflow-wrap: anywhere;
}

.footer-col a:hover { color: #F7FAFC; }

.footer-bottom {
  border-top: 1px solid rgba(247,250,252,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal { font-size: 0.82rem; color: #556b77; line-height: 1.6; overflow-wrap: anywhere; }
.footer-legal a { color: #7a9bad; text-decoration: underline; }
.footer-legal a:hover { color: #1a8ede; }
.footer-copy { font-size: 0.82rem; color: #3d5560; }

/* =============================================
   EXIT POPUP
   ============================================= */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-overlay.active { display: flex; }

.exit-popup {
  background: #1B2E39;
  border: 1px solid rgba(26,142,222,0.25);
  border-radius: 18px;
  padding: 40px 32px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #7a9bad;
  cursor: pointer;
  line-height: 1;
  transition: color 0.18s;
}

.exit-close:hover { color: #F7FAFC; }

.exit-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a8ede;
  margin-bottom: 12px;
}

.exit-bonus {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 900;
  color: #F7FAFC;
  text-shadow: 0 0 20px rgba(26,142,222,0.4);
  margin-bottom: 14px;
}

.exit-sub {
  font-size: 0.95rem;
  color: #a0b4bf;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* =============================================
   CATFISH
   ============================================= */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, #0d1a22 0%, #1B2E39 100%);
  border-top: 2px solid #1a8ede;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  display: block;
}

.catfish.hidden { display: none; }

.catfish-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.catfish-text {
  flex: 1;
  font-size: clamp(0.82rem, 2.5vw, 1rem);
  color: #F7FAFC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.catfish-btn {
  min-height: 40px;
  padding: 10px 22px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.catfish-close {
  background: none;
  border: none;
  color: #7a9bad;
  font-size: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px 8px;
  transition: color 0.18s;
  line-height: 1;
}

.catfish-close:hover { color: #F7FAFC; }

/* =============================================
   RESPONSIVE – TABLET (max 900px)
   ============================================= */
@media (max-width: 900px) {
  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sports-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .casino-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .header-cta { display: none; }
  .main-nav { display: none; }
  .burger { display: flex; margin-left: auto; }
}

/* =============================================
   RESPONSIVE – MOBILE (max 600px)
   ============================================= */
@media (max-width: 600px) {
  .section { padding: 48px 0; }

  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .promo-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .sports-grid { grid-template-columns: 1fr; gap: 16px; }
  .casino-categories { grid-template-columns: 1fr; gap: 16px; }
  .mobile-features { grid-template-columns: 1fr; gap: 16px; }
  .support-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-top { flex-direction: column; gap: 24px; }

  .hero-media img { max-height: 240px; }

  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; }

  .final-cta-btns { flex-direction: column; align-items: stretch; }
  .final-cta-btns .btn { width: 100%; }

  .btn { min-height: 44px; padding: 12px 16px; font-size: 0.95rem; }

  .catfish-text { font-size: 0.78rem; }
  .catfish-inner { gap: 10px; }

  .exit-popup { padding: 32px 20px; }

  .casino-cat .btn { align-self: stretch; }
  .support-card .btn { align-self: stretch; }
}

/* =============================================
   RESPONSIVE – VERY SMALL (max 380px)
   ============================================= */
@media (max-width: 380px) {
  .footer-cols { grid-template-columns: 1fr; }
  .logo-img { max-width: 120px; height: 36px; }
  .footer-logo { max-width: 130px; height: 38px; }
}