/* ============================================
   BET365 CASINO ITALIA — assets/styles.css
   ============================================ */

/* ---- RESET & ROOT ---- */
*, *::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: #1a1a1a;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS VARIABLES ---- */
:root {
  --green-deep:   #1E4D3E;
  --green-dark:   #203B32;
  --green-mid:    #2a6349;
  --green-light:  #3a7d5c;
  --green-bright: #4CAF50;
  --gold:         #f5c842;
  --gold-dark:    #d4a800;
  --white:        #FFFFFF;
  --gray-light:   #f5f5f5;
  --gray-mid:     #cccccc;
  --dark-bg:      #121212;
  --dark-card:    #1e1e1e;
  --dark-border:  #2e2e2e;
  --secondary:    #222222;
  --text-muted:   #aaaaaa;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-btn:   0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-card:  0 2px 12px rgba(0,0,0,0.3);
  --transition:   0.22s ease;
  --max-w:        1200px;
  --container-px: clamp(16px, 4vw, 40px);
}

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

/* ============================================
   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-family: inherit;
  font-weight: 900;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  border: 2px solid transparent;
  box-shadow: var(--shadow-btn);
  text-decoration: none;
}
.btn:active { transform: scale(0.97) translateY(1px); }

/* Primary */
.btn--primary {
  background: linear-gradient(135deg, #f5c842 0%, #d4a800 60%, #b88a00 100%);
  color: #1a1000;
  border-color: #d4a800;
  box-shadow: 0 4px 20px rgba(213,168,0,0.45), 0 2px 6px rgba(0,0,0,0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ffe066 0%, #f5c842 60%, #d4a800 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(213,168,0,0.6), 0 4px 10px rgba(0,0,0,0.4);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.15);
}

/* White */
.btn--white {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3), 0 2px 6px rgba(0,0,0,0.25);
}
.btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255,255,255,0.45);
}

/* Outline White */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Sizes */
.btn--xl { min-height: 56px; padding: 16px 36px; font-size: clamp(0.9rem, 2.2vw, 1.1rem); }
.btn--sm { min-height: 40px; padding: 9px 18px; font-size: 0.82rem; }

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(14, 14, 14, 0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: clamp(32px, 5vw, 44px); width: auto; max-width: 160px; object-fit: contain; }

/* Nav */
.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; white-space: nowrap; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-mid);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link--cta {
  background: linear-gradient(135deg, #f5c842, #d4a800);
  color: #1a1000 !important;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-weight: 900;
  box-shadow: 0 2px 10px rgba(213,168,0,0.4);
}
.nav-link--cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(213,168,0,0.6); background: linear-gradient(135deg,#ffe066,#f5c842); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; flex-shrink: 0; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(14,14,14,0.99);
  border-top: 1px solid var(--dark-border);
  padding: 12px 0;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 0 var(--container-px); }
.mobile-nav .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
.mobile-nav .nav-link--cta { margin-top: 8px; text-align: center; justify-content: center; display: flex; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { margin-top: 64px; background: var(--dark-bg); overflow: hidden; }
.hero-image-wrap {
  width: 100%;
  max-height: clamp(200px, 40vw, 480px);
  overflow: hidden;
  background: var(--green-deep);
}
.hero-img-link { display: block; width: 100%; }
.hero-img { width: 100%; max-width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-content { background: linear-gradient(180deg, var(--dark-bg) 0%, #0d2318 100%); }
.hero-container {
  padding-top: clamp(28px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}
.hero-logo-top { display: flex; justify-content: center; }
.hero-logo { height: clamp(36px, 6vw, 60px); width: auto; object-fit: contain; }
.hero-bonus-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--gold-dark);
}
.hero-bonus-text {
  font-size: clamp(1.4rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(245,200,66,0.35);
  text-transform: uppercase;
  max-width: 860px;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}
.hero-cta-group .btn { flex: 1 1 200px; }
.hero-disclaimer { font-size: 0.75rem; color: var(--text-muted); max-width: 600px; line-height: 1.5; }

/* ============================================
   SECTIONS — BASE
   ============================================ */
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--dark { background: var(--dark-bg); }
.section--light { background: #f4f4f4; color: #111; }
.section--green { background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 60%, #162a22 100%); }
.section--cta { background: linear-gradient(135deg, var(--green-deep) 0%, #0d1f18 100%); }

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
  margin-bottom: clamp(12px, 2vw, 20px);
  line-height: 1.2;
}
.section-title--dark { color: #111; }
.section-title--light { color: var(--white); }
.section-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-muted);
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  line-height: 1.7;
}
.section-sub--dark { color: #444; }
.section-sub--light { color: rgba(255,255,255,0.8); }
.section-cta-center { text-align: center; margin-top: clamp(28px, 4vw, 48px); }

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.adv-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.adv-icon { font-size: 2rem; margin-bottom: 12px; }
.adv-title { font-size: 1rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.adv-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   BONUS / PROMO
   ============================================ */
.bonus-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.bonus-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bonus-card-title {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.bonus-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.bonus-features li { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.bonus-card-media { border-radius: var(--radius-md); overflow: hidden; border: 2px solid rgba(255,255,255,0.1); min-width: 0; }
.bonus-img { width: 100%; max-height: 320px; object-fit: contain; display: block; }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.promo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition: transform var(--transition);
}
.promo-card:hover { transform: translateY(-3px); }
.promo-icon { font-size: 1.8rem; }
.promo-title { font-size: 0.95rem; font-weight: 800; color: var(--white); }
.promo-desc { font-size: 0.84rem; color: rgba(255,255,255,0.72); line-height: 1.6; flex: 1; }

/* ============================================
   HOW TO START
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  position: relative;
}
.step-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.step-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-title { font-size: 1.05rem; font-weight: 800; color: var(--white); }
.step-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

/* ============================================
   SPORT
   ============================================ */
.sport-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.sport-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.sport-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: border-color var(--transition);
  min-width: 0;
}
.sport-item:hover { border-color: var(--green-light); }
.sport-ico { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.sport-info h4 { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.sport-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.sport-media { border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--dark-border); min-width: 0; }
.sport-img { width: 100%; max-height: 400px; object-fit: contain; display: block; }

/* ============================================
   CASINO
   ============================================ */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.casino-category {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition: transform var(--transition), border-color var(--transition);
}
.casino-category:hover { transform: translateY(-3px); border-color: var(--green-light); }
.casino-cat-header { display: flex; align-items: center; gap: 10px; }
.casino-cat-icon { font-size: 1.5rem; }
.casino-category h3 { font-size: 1rem; font-weight: 800; color: var(--white); }
.casino-category p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.casino-media { border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--dark-border); min-width: 0; margin-bottom: 24px; }
.casino-img { width: 100%; max-height: 360px; object-fit: contain; display: block; }
.casino-cta-wrap { text-align: center; }

/* ============================================
   MOBILE FEATURES
   ============================================ */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.mobile-feat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.5vw, 28px);
  min-width: 0;
  transition: transform var(--transition);
}
.mobile-feat:hover { transform: translateY(-3px); }
.mobile-feat-icon { font-size: 2rem; margin-bottom: 12px; }
.mobile-feat h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.mobile-feat p { font-size: 0.86rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ============================================
   PAYMENTS
   ============================================ */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: 28px;
}
.payment-group {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  min-width: 0;
}
.payment-group-title { font-size: 0.9rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; line-height: 1.3; }
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-method {
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
}
.pay-name { font-size: 0.92rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.pay-detail { font-size: 0.78rem; color: var(--text-muted); }
.payments-info {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
  border: 1px solid var(--dark-border);
}
.payments-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; text-align: center; }

/* ============================================
   SUPPORT
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.support-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.support-card:hover { transform: translateY(-4px); border-color: var(--green-light); }
.support-icon { font-size: 2.2rem; }
.support-card h3 { font-size: 0.95rem; font-weight: 800; color: #111; }
.support-card p { font-size: 0.83rem; color: #555; line-height: 1.6; flex: 1; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  font-weight: 700;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
  min-width: 0;
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
}
.final-cta-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1000;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
}
.final-cta-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.final-cta-bonus {
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  max-width: 800px;
  line-height: 1.25;
  text-shadow: 0 2px 16px rgba(245,200,66,0.35);
}
.final-cta-media { border-radius: var(--radius-md); overflow: hidden; border: 2px solid rgba(255,255,255,0.15); width: 100%; max-width: 640px; min-width: 0; }
.final-cta-img { width: 100%; max-height: 320px; object-fit: contain; display: block; }
.final-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}
.final-cta-buttons .btn { flex: 1 1 200px; }
.final-cta-terms { font-size: 0.75rem; color: rgba(255,255,255,0.5); max-width: 600px; }
.final-cta-terms a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #0a0a0a; border-top: 1px solid var(--dark-border); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(36px, 6vw, 64px) 0 clamp(24px, 4vw, 40px);
}
.footer-logo-link { display: inline-flex; margin-bottom: 16px; }
.footer-logo { height: clamp(32px, 5vw, 48px); width: auto; object-fit: contain; }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-top: 8px; }
.footer-links h4 { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-middle { border-top: 1px solid var(--dark-border); padding: 18px 0; }
.footer-bonus-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  justify-content: center;
  text-align: center;
}
.footer-bonus-strip strong { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding: clamp(18px, 3vw, 28px) 0; text-align: center; }
.footer-legal { font-size: 0.73rem; color: #555; line-height: 1.7; margin-bottom: 12px; max-width: 900px; margin-left: auto; margin-right: auto; }
.footer-legal a { color: #777; text-decoration: underline; }
.footer-copyright { font-size: 0.75rem; color: #444; margin-bottom: 14px; }
.footer-badges { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.badge-18, .badge-adm, .badge-ssl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #333;
  color: #888;
}
.badge-18 { border-color: #c0392b; color: #c0392b; }

/* ============================================
   CATFISH
   ============================================ */
.catfish {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0d2318 0%, var(--green-deep) 50%, #0d2318 100%);
  border-top: 2px solid var(--gold-dark);
  padding: 10px var(--container-px);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.catfish-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: nowrap;
}
.catfish-text {
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  font-weight: 700;
  color: var(--white);
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.catfish-close {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.catfish-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.catfish-hidden { display: none !important; }

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-overlay.active { opacity: 1; pointer-events: all; }
.exit-modal {
  background: linear-gradient(135deg, var(--green-deep) 0%, #0d1f18 100%);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  max-width: 580px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.exit-close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.exit-badge {
  display: inline-block;
  background: var(--gold);
  color: #1a1000;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.exit-title { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.exit-bonus {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 24px;
}
.exit-modal .btn { width: 100%; margin-bottom: 14px; }
.exit-terms { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ============================================
   RESPONSIVE — TABLET 1024px
   ============================================ */
@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — TABLET 768px
   ============================================ */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .burger { display: flex; }

  .sport-layout { grid-template-columns: 1fr; }
  .sport-media { order: -1; }
  .sport-img { max-height: 280px; }

  .bonus-hero-card { grid-template-columns: 1fr; }
  .bonus-card-media { order: -1; }

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

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

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

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

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

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { grid-column: auto; }

  .catfish-text { font-size: 0.7rem; }

  .hero-cta-group .btn { flex: 1 1 100%; }
  .final-cta-buttons .btn { flex: 1 1 100%; }

  .hero-image-wrap { max-height: clamp(160px, 50vw, 300px); }
}

/* ============================================
   RESPONSIVE — MOBILE 480px
   ============================================ */
@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }

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

  .hero-bonus-text { font-size: clamp(1.15rem, 5.5vw, 1.8rem); }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; flex: none; }

  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn { width: 100%; flex: none; }

  .catfish-inner { flex-wrap: wrap; gap: 8px; }
  .catfish-text { white-space: normal; font-size: 0.68rem; }
  .catfish .btn { width: 100%; order: 3; }
  .catfish-close { order: 4; margin-left: auto; }

  .bonus-card-title { font-size: 1rem; }
  .footer-bonus-strip { flex-direction: column; align-items: center; gap: 8px; }
  .footer-bonus-strip .btn { width: auto; }
}

/* ============================================
   RESPONSIVE — MOBILE 320px
   ============================================ */
@media (max-width: 360px) {
  :root { --container-px: 12px; }
  .btn { font-size: 0.78rem; padding: 11px 16px; }
  .btn--xl { font-size: 0.82rem; padding: 13px 20px; }
  .hero-image-wrap { max-height: 140px; }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: #1a1000; }