/* =========================================================
   ASSETS/STYLES.CSS – MyStake Casino Argentina
   ========================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Trebuchet MS', 'Segoe UI', Tahoma, sans-serif;
  background-color: #1B1B21;
  color: #e8e8f0;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

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

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

ul { list-style: none; }

/* 2. CSS VARIABLES
   --------------------------------------------------------- */
:root {
  --clr-primary: #00AAEB;
  --clr-primary-dark: #007fc0;
  --clr-primary-glow: rgba(0, 170, 235, 0.35);
  --clr-white: #FFFFFF;
  --clr-black: #000000;
  --clr-bg-dark: #1B1B21;
  --clr-bg-card: #2A2A31;
  --clr-bg-light: #22222a;
  --clr-text: #e8e8f0;
  --clr-text-muted: #9999b0;
  --clr-gold: #f0c040;
  --clr-border: rgba(0, 170, 235, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-btn: 0 4px 20px rgba(0, 170, 235, 0.5), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.22s ease;
  --header-h: 68px;
  --container-max: 1200px;
  --container-pad: clamp(16px, 4vw, 40px);
}

/* 3. UTILITY
   --------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  width: 100%;
}

.highlight {
  color: var(--clr-primary);
}

overflow-wrap: anywhere;
word-break: break-word;

/* 4. BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  line-height: 1.2;
  white-space: normal;
}

.btn--primary {
  background: linear-gradient(135deg, #00c8ff 0%, var(--clr-primary) 50%, #0088cc 100%);
  color: var(--clr-white);
  box-shadow: var(--shadow-btn);
  border: 2px solid rgba(255,255,255,0.15);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 170, 235, 0.7), 0 4px 10px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, #10d8ff 0%, #00BBFF 50%, #0099dd 100%);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 170, 235, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn--ghost:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-btn);
  transform: translateY(-2px);
}

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

.btn--sm {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn--lg {
  min-height: 52px;
  padding: 14px 36px;
  font-size: 1.05rem;
}

.btn--xl {
  min-height: 58px;
  padding: 16px 40px;
  font-size: 1.15rem;
}

/* 5. HEADER
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 20, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  height: var(--header-h);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.header__logo {
  flex-shrink: 0;
  display: block;
}

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

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--clr-text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--clr-primary);
}

.nav-cta {
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Burger active state */
.burger.is-active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* 6. SECTION COMMONS
   --------------------------------------------------------- */
.section {
  padding-block: clamp(48px, 8vw, 96px);
}

.section--dark {
  background-color: var(--clr-bg-dark);
}

.section--light {
  background-color: var(--clr-bg-light);
}

.section--cta {
  background: linear-gradient(135deg, #0d1520 0%, #0a1e35 50%, #0d1520 100%);
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,170,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section__subtitle {
  text-align: center;
  color: var(--clr-text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

/* 7. MEDIA / IMAGE CONTAINERS
   --------------------------------------------------------- */
.media {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--clr-border);
  margin-bottom: 40px;
  max-height: 480px;
  background: var(--clr-bg-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.media:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,170,235,0.25);
}

.media__img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
}

/* 8. HERO
   --------------------------------------------------------- */
.hero {
  padding-top: var(--header-h);
}

.hero__banner {
  width: 100%;
  overflow: hidden;
  max-height: 540px;
  background: var(--clr-bg-card);
  border-bottom: 3px solid var(--clr-primary);
}

.hero__banner-link {
  display: block;
}

.hero__banner-img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.hero__banner-link:hover .hero__banner-img {
  transform: scale(1.02);
}

.hero__content {
  background: linear-gradient(180deg, #0d1520 0%, var(--clr-bg-dark) 100%);
  padding-block: clamp(40px, 7vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero__content::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-primary), #0066aa);
  color: var(--clr-white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(1.4rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 36px;
  max-width: 900px;
  margin-inline: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: var(--clr-white);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* 9. BENEFITS GRID
   --------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.benefit-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--clr-primary);
}

.benefit-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.benefit-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.benefit-card__text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 10. PROMO
   --------------------------------------------------------- */
.promo-highlight {
  background: linear-gradient(135deg, #0a1e35 0%, #0d2940 100%);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.promo-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,170,235,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.promo-highlight__badge {
  display: inline-block;
  background: var(--clr-gold);
  color: var(--clr-black);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.promo-highlight__text {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--clr-white);
  max-width: 700px;
  margin: 0 auto 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
  position: relative;
  z-index: 1;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.promo-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--clr-primary);
}

.promo-card__header {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--clr-primary);
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.promo-card__amount {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 900;
  color: var(--clr-white);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.promo-card__desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 11. STEPS
   --------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,170,235,0.2);
  border-color: var(--clr-primary);
}

.step-card__number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.step-card__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 12. SPORT GRID
   --------------------------------------------------------- */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.sport-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), border-color var(--transition);
  min-width: 0;
  cursor: pointer;
}

.sport-item:hover {
  transform: translateY(-3px);
  border-color: var(--clr-primary);
  box-shadow: 0 4px 16px rgba(0,170,235,0.2);
}

.sport-item__icon {
  font-size: 2rem;
}

.sport-item__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.content-block {
  background: var(--clr-bg-card);
  border-left: 4px solid var(--clr-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-block: 24px;
  min-width: 0;
}

.content-block__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.content-block p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.content-block p:last-child { margin-bottom: 0; }

/* 13. CASINO CATS
   --------------------------------------------------------- */
.casino-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.casino-cat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}

.casino-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--clr-primary);
}

.casino-cat-card__icon {
  font-size: 2.4rem;
}

.casino-cat-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-white);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino-cat-card__text {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 14. MOBILE FEATURES
   --------------------------------------------------------- */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}

.mobile-feature {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-width: 0;
  transition: transform var(--transition), border-color var(--transition);
}

.mobile-feature:hover {
  transform: translateY(-2px);
  border-color: var(--clr-primary);
}

.mobile-feature__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.mobile-feature__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mobile-feature__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 15. PAYMENT GRID
   --------------------------------------------------------- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.payment-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  transition: transform var(--transition), border-color var(--transition);
}

.payment-item:hover {
  transform: translateY(-2px);
  border-color: var(--clr-primary);
}

.payment-item__icon {
  font-size: 1.8rem;
}

.payment-item__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payment-info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.payment-info-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  min-width: 0;
}

.payment-info-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payment-info-card__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 16. SUPPORT
   --------------------------------------------------------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.support-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--clr-primary);
}

.support-card__icon {
  font-size: 2.4rem;
}

.support-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-white);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support-card__text {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 17. FAQ
   --------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-width: 0;
  transition: border-color var(--transition);
}

.faq-item.is-open {
  border-color: var(--clr-primary);
}

.faq-item__question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  text-align: left;
  transition: color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-item__question:hover {
  color: var(--clr-primary);
}

.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-primary);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-inline: 24px;
}

.faq-item.is-open .faq-item__answer {
  max-height: 600px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 18. FINAL CTA
   --------------------------------------------------------- */
.final-cta-box {
  background: linear-gradient(135deg, rgba(0,170,235,0.1) 0%, rgba(0,100,180,0.15) 100%);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.final-cta-box__badge {
  display: inline-block;
  background: var(--clr-gold);
  color: var(--clr-black);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.final-cta-box__title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.final-cta-box__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--clr-text-muted);
  max-width: 680px;
  margin: 0 auto 28px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.final-cta-box__disclaimer {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 19. FOOTER
   --------------------------------------------------------- */
.site-footer {
  background: #0d0d14;
  border-top: 1px solid var(--clr-border);
  padding-block: clamp(40px, 6vw, 64px) 24px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
  min-width: 0;
}

.footer__brand {
  min-width: 0;
}

.footer__logo {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__links-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__links a:hover {
  color: var(--clr-primary);
}

.footer__bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__legal {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.footer__copyright {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__copyright a {
  color: var(--clr-primary);
}

/* 20. EXIT POPUP
   --------------------------------------------------------- */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup.is-visible {
  display: flex;
}

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
}

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0d1a2e 0%, #0a1520 100%);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(0,170,235,0.2);
  min-width: 0;
}

.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}

.exit-popup__close:hover {
  color: var(--clr-primary);
}

.exit-popup__badge {
  display: inline-block;
  background: var(--clr-gold);
  color: var(--clr-black);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.exit-popup__title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-popup__text {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 21. CATFISH
   --------------------------------------------------------- */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0a1e35 0%, #0d2940 100%);
  border-top: 2px solid var(--clr-primary);
  padding: 10px var(--container-pad);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,170,235,0.25);
  transition: transform 0.4s ease;
}

.catfish.is-hidden {
  transform: translateY(110%);
}

.catfish__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: 0;
}

.catfish__text {
  flex: 1;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  color: var(--clr-white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.catfish__close {
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}

.catfish__close:hover {
  color: var(--clr-white);
}

/* 22. RESPONSIVE
   --------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sport-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .payment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(13, 13, 20, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    padding: 20px var(--container-pad);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 999;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    background: var(--clr-bg-card);
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-cta {
    text-align: center;
    padding: 14px;
  }

  .hero__title {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta-group .btn {
    width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .sport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .casino-cats {
    grid-template-columns: 1fr;
  }

  .mobile-features {
    grid-template-columns: 1fr;
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-info-row {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .final-cta-box__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-box__buttons .btn {
    width: 100%;
  }

  .section__cta .btn {
    width: 100%;
  }

  .promo-highlight .btn {
    width: 100%;
  }

  .support-card .btn {
    width: 100%;
  }

  .catfish__text {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .sport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exit-popup__box {
    padding: 24px 20px;
  }

  .exit-popup__box .btn {
    width: 100%;
  }

  .media__img {
    max-height: 240px;
    object-fit: contain;
  }

  .hero__banner {
    max-height: 220px;
  }

  .hero__banner-img {
    max-height: 220px;
  }
}

/* Extra small */
@media (max-width: 360px) {
  .sport-grid {
    grid-template-columns: 1fr 1fr;
  }
  .payment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .btn--xl {
    font-size: 1rem;
    padding: 14px 20px;
  }
}