/* =============================================
   22BET LANDING PAGE – STYLES
   Primary: #2EB255, #0B636B, #FFFFFF
   Secondary: #0B636B, #FFFFFF
   Fonts: Oswald (headings) + Nunito (body)
   ============================================= */

/* === 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: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #e8f5e9;
  background-color: #071a1c;
  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 {
  --green: #2EB255;
  --green-dark: #239944;
  --green-light: #4fc870;
  --teal: #0B636B;
  --teal-dark: #084a51;
  --teal-light: #0e7a84;
  --white: #ffffff;
  --bg-dark: #071a1c;
  --bg-mid: #0d2b2f;
  --bg-card: #0f3035;
  --bg-card2: #102e33;
  --text-main: #e8f5e9;
  --text-muted: #8bbcbf;
  --border: rgba(46,178,85,0.2);
  --border-teal: rgba(11,99,107,0.5);
  --shadow-green: 0 4px 24px rgba(46,178,85,0.35);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --container-width: 1200px;
  --header-h: 70px;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  overflow-wrap: anywhere;
  word-break: break-word;
}

p {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.highlight {
  color: var(--green);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  min-height: 48px;
  padding: 12px 24px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(46,178,85,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  border: 2px solid var(--green-light);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(46,178,85,0.65), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(46,178,85,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  box-shadow: 0 2px 12px rgba(46,178,85,0.2);
}

.btn--ghost:hover {
  background: rgba(46,178,85,0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,178,85,0.3);
  color: var(--white);
  border-color: var(--white);
}

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

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

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

.btn--xl {
  font-size: 1.2rem;
  padding: 16px 40px;
  min-height: 56px;
  border-radius: var(--radius);
}

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

.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;
  gap: 16px;
  height: var(--header-h);
}

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

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

.main-nav {
  flex: 1;
  overflow: hidden;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-link {
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--green);
  background: rgba(46,178,85,0.1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

.burger-btn span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

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

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.mobile-nav-link {
  display: block;
  color: var(--text-main);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-link:hover {
  background: rgba(46,178,85,0.15);
  color: var(--green);
}

.mobile-cta {
  display: flex;
  gap: 10px;
}

.mobile-cta .btn {
  flex: 1;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  padding-top: var(--header-h);
  background: linear-gradient(180deg, var(--bg-dark) 0%, #091f23 100%);
}

.hero-banner-link {
  display: block;
  width: 100%;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

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

.hero-content {
  padding: 48px 20px 56px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(46,178,85,0.15);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-highlight {
  color: var(--green);
  text-shadow: 0 0 40px rgba(46,178,85,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #a8d5b5;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   MEDIA CARDS (images in sections)
   ============================================= */
.media-link {
  display: block;
  margin-bottom: 40px;
}

.media, .mediaCard {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  max-height: 420px;
}

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

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

/* =============================================
   ADVANTAGES SECTION
   ============================================= */
.advantages-section {
  background: linear-gradient(180deg, #091f23 0%, var(--bg-mid) 100%);
}

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

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
  border-color: var(--green);
}

.adv-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.adv-title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.adv-text {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* =============================================
   BONUS SECTION
   ============================================= */
.bonus-section {
  background: var(--bg-dark);
}

.bonus-hero-card {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a2e32 50%, var(--bg-card) 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 0 60px rgba(46,178,85,0.2), var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.bonus-hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(46,178,85,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.bonus-crown {
  font-size: 3rem;
  margin-bottom: 16px;
}

.bonus-main-title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--green);
  text-shadow: 0 0 30px rgba(46,178,85,0.5);
  margin-bottom: 14px;
  line-height: 1.2;
}

.bonus-detail {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.bonus-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 32px;
  text-align: left;
}

.bonus-steps li {
  color: var(--text-main);
  font-size: 0.97rem;
  padding: 8px 16px;
  background: rgba(46,178,85,0.1);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green);
}

.step-num {
  color: var(--green);
  font-weight: 800;
  margin-right: 6px;
}

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

.promo-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.promo-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.promo-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.promo-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.promo-text {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* =============================================
   HOW TO START SECTION
   ============================================= */
.howto-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.howto-step {
  display: grid;
  grid-template-columns: 60px auto 1fr;
  gap: 0 20px;
  align-items: start;
  min-width: 0;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
  z-index: 1;
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
}

.step-connector {
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
  min-height: 60px;
  margin: 4px auto;
  grid-row: span 1;
  grid-column: 1;
  align-self: stretch;
  justify-self: center;
}

.step-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
  transition: border-color var(--transition);
}

.step-body:hover {
  border-color: var(--green);
}

.step-title {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 8px;
}

.step-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   SPORT SECTION
   ============================================= */
.sport-section {
  background: var(--bg-dark);
}

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

.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: block;
}

.sport-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

.sport-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.sport-name {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.sport-info {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.live-banner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 50%, #1a1a0a 100%);
  border: 2px solid #e53935;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.live-badge {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ff5252;
  animation: livePulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.live-text {
  flex: 1;
  color: var(--text-main);
  font-size: 0.97rem;
  min-width: 0;
}

/* =============================================
   CASINO SECTION
   ============================================= */
.casino-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, #0a1e22 100%);
}

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

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

.casino-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.casino-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.casino-info {
  min-width: 0;
}

.casino-name {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.casino-text {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.jackpot-banner {
  background: linear-gradient(135deg, #1a1000 0%, #2d2000 50%, #1a1500 100%);
  border: 2px solid #f9a825;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.jackpot-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #f9a825;
  flex-shrink: 0;
}

.jackpot-amount {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #ffd54f;
  text-shadow: 0 0 20px rgba(249,168,37,0.5);
  flex: 1;
  text-align: center;
  min-width: 0;
}

/* =============================================
   MOBILE SECTION
   ============================================= */
.mobile-section {
  background: var(--bg-dark);
}

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

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

.mobile-feature:hover {
  border-color: var(--green);
}

.mf-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.mf-body {
  min-width: 0;
}

.mf-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.mf-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* =============================================
   PAYMENTS SECTION
   ============================================= */
.payments-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

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

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.payment-item:hover {
  transform: translateY(-3px);
  border-color: var(--green);
}

.pay-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.pay-name {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.pay-info {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.payment-note {
  background: rgba(46,178,85,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 8px;
}

.payment-note p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.payment-note strong {
  color: var(--green);
}

/* =============================================
   SUPPORT SECTION
   ============================================= */
.support-section {
  background: var(--bg-dark);
}

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

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}

.support-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.support-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.support-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.support-social {
  text-align: center;
}

.social-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(46,178,85,0.1);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition), background var(--transition);
  min-width: 0;
}

.faq-question:hover {
  background: rgba(46,178,85,0.08);
  color: var(--green);
}

.faq-question[aria-expanded="true"] {
  color: var(--green);
  border-bottom: 1px solid var(--border);
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 0.8rem;
  color: var(--green);
}

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

.faq-answer {
  display: none;
  padding: 18px 24px;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--bg-dark) 50%, #0a2520 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46,178,85,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(11,99,107,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.final-badge {
  display: inline-block;
  background: rgba(229,57,53,0.15);
  border: 1px solid #e53935;
  color: #ff5252;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(229,57,53,0); }
}

.final-cta-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.final-highlight {
  color: var(--green);
  text-shadow: 0 0 40px rgba(46,178,85,0.5);
}

.final-cta-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.final-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #040e10;
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

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

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--green);
}

.footer-payments {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 28px;
  text-align: center;
}

.footer-pay-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-pay-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-bottom {
  text-align: center;
}

.footer-legal {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.7;
  margin-bottom: 12px;
  opacity: 0.65;
}

.footer-responsible {
  color: var(--text-muted);
  font-size: 0.83rem;
  margin-bottom: 8px;
}

.footer-responsible strong {
  color: var(--green);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* =============================================
   CATFISH BAR
   ============================================= */
.catfish-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--bg-dark) 100%);
  border-top: 2px solid var(--green);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(46,178,85,0.25);
  transition: transform 0.3s ease;
}

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

.catfish-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 20px);
  margin: 0 auto;
  flex-wrap: nowrap;
}

.catfish-text {
  flex: 1;
  color: var(--text-main);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.catfish-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.catfish-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: color var(--transition);
  line-height: 1;
}

.catfish-close:hover {
  color: var(--white);
}

/* =============================================
   EXIT POPUP
   ============================================= */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.exit-popup {
  background: linear-gradient(135deg, var(--bg-mid) 0%, #0a2a2e 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 80px rgba(46,178,85,0.3), 0 20px 60px rgba(0,0,0,0.5);
  animation: popupIn 0.35s ease forwards;
}

@keyframes popupIn {
  from { transform: scale(0.88); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

.exit-close:hover {
  color: var(--white);
}

.exit-crown {
  font-size: 3.5rem;
  margin-bottom: 14px;
}

.exit-title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.exit-bonus {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}

.exit-sub {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 28px;
}

.exit-cta-btn {
  width: 100%;
  margin-bottom: 12px;
}

.exit-skip {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.83rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
}

.exit-skip:hover {
  color: var(--white);
}

/* =============================================
   HOWTO STEP – GRID FIX
   ============================================= */
.howto-step {
  display: grid;
  grid-template-areas:
    "circle . body"
    "line . .";
  grid-template-columns: 60px 16px 1fr;
  grid-template-rows: auto auto;
}

.howto-step:last-child .step-connector {
  display: none;
}

.step-circle { grid-area: circle; }
.step-connector {
  grid-area: line;
  width: 2px;
  background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
  min-height: 40px;
  justify-self: center;
  align-self: stretch;
  margin: 4px 0;
}
.step-body { grid-area: body; }

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

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

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

  .footer-top {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }

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

/* =============================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .main-nav, .header-cta {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .site-header {
    height: auto;
    min-height: var(--header-h);
  }

  .header-inner {
    height: auto;
    min-height: var(--header-h);
    padding: 0 16px;
  }

  .logo-img {
    height: 34px;
  }

  .hero-banner {
    max-height: 260px;
  }

  .hero-banner-img {
    max-height: 260px;
    object-fit: cover;
  }

  .hero-content {
    padding: 32px 16px 48px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

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

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

  .bonus-hero-card {
    padding: 32px 20px;
  }

  .howto-steps {
    max-width: 100%;
  }

  .howto-step {
    grid-template-columns: 44px 12px 1fr;
    grid-template-areas:
      "circle . body"
      "line . .";
  }

  .step-circle {
    width: 44px;
    height: 44px;
  }

  .step-number {
    font-size: 1.1rem;
  }

  .step-body {
    padding: 18px 16px;
  }

  .sport-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

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

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

  .live-banner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px 16px;
  }

  .jackpot-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 16px;
  }

  .jackpot-amount {
    font-size: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

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

  .section-cta .btn {
    width: 100%;
  }

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

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

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

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

  .media, .mediaCard {
    max-height: 260px;
  }

  .media-img {
    max-height: 260px;
  }
}

/* =============================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    flex-direction: column;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .bonus-steps {
    max-width: 100%;
  }

  .howto-step {
    grid-template-columns: 40px 10px 1fr;
  }

  .step-circle {
    width: 40px;
    height: 40px;
  }

  .footer-pay-icons {
    gap: 6px;
  }
}

/* =============================================
   UTILITIES
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Body padding for catfish */
body {
  padding-bottom: 80px;
}

body.catfish-hidden {
  padding-bottom: 0;
}