/* =============================================
   SISAL LANDING – assets/styles.css
   Brand: Sisal | Domain: sisal-login.com
   Primary: #FF8E0E | White text | Dark text
   ============================================= */

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background: #ffffff;
  min-width: 320px;
}

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

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

ul {
  list-style: none;
}

/* === CSS VARIABLES === */
:root {
  --color-primary: #FF8E0E;
  --color-primary-dark: #e07800;
  --color-primary-light: #ffaa47;
  --color-green: #38963C;
  --color-green-dark: #2d7830;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-dark-2: #222222;
  --color-dark-3: #2d2d2d;
  --color-gray: #f5f5f5;
  --color-gray-mid: #e8e8e8;
  --color-gray-text: #666;
  --color-orange-bg: #FF8E0E;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-btn: 0 4px 16px rgba(255,142,14,0.4);
  --shadow-btn-hover: 0 8px 28px rgba(255,142,14,0.55);
  --header-h: 72px;
  --container-max: 1200px;
  --side-pad: clamp(16px, 4vw, 48px);
  --transition: 0.25s ease;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  position: relative;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #ff6b00 100%);
  color: var(--color-white);
  border-color: var(--color-green);
  box-shadow: var(--shadow-btn);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px) scale(1.01);
}

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

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(255,142,14,0.15);
}

.btn--ghost:hover {
  background: rgba(255,142,14,0.08);
  box-shadow: 0 4px 16px rgba(255,142,14,0.25);
  transform: translateY(-2px);
}

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

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-weight: 900;
}

.btn--white:hover {
  background: #fff3e0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.btn--sm {
  min-height: 40px;
  padding: 9px 20px;
  font-size: 0.9rem;
}

.btn--lg {
  min-height: 54px;
  padding: 15px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.btn--xl {
  min-height: 60px;
  padding: 18px 44px;
  font-size: 1.2rem;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
}

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

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

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

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

.nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  min-width: 0;
}

.nav-link:hover {
  color: var(--color-primary);
  background: rgba(255,142,14,0.1);
}

.nav-link--bonus {
  color: var(--color-primary) !important;
  font-weight: 800;
  border: 1.5px solid rgba(255,142,14,0.4);
}

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

/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.burger:hover { background: rgba(255,255,255,0.1); }

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--color-dark-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-nav.open {
  display: block;
  max-height: 500px;
}

.mobile-nav-list {
  padding: 12px 0 20px;
}

.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  padding: 12px var(--side-pad);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-link:hover {
  color: var(--color-primary);
  background: rgba(255,142,14,0.08);
}

.mobile-nav-link--bonus {
  color: var(--color-primary) !important;
  font-weight: 800;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px var(--side-pad) 4px;
}

.mobile-nav-actions .btn {
  width: 100%;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
}

.hero-media-link {
  display: block;
  width: 100%;
}

.hero-image-wrapper {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  border-bottom: 3px solid var(--color-primary);
}

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

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

.hero-content {
  padding: 40px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(26,26,26,0) 0%, var(--color-dark) 100%);
}

.hero-badge {
  display: inline-block;
  background: rgba(255,142,14,0.15);
  border: 1.5px solid rgba(255,142,14,0.4);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-highlight {
  color: var(--color-primary);
  text-shadow: 0 0 30px rgba(255,142,14,0.5);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  max-width: 500px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

/* =============================================
   SECTIONS BASE
   ============================================= */
.section {
  padding: clamp(48px, 7vw, 96px) 0;
}

.section--light { background: var(--color-gray); }
.section--white { background: var(--color-white); }
.section--dark { background: var(--color-dark); }
.section--orange { background: var(--color-primary); }
.section--review { background: var(--color-white); }

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--color-dark-2);
  text-align: center;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-title--white { color: var(--color-white); }

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--color-gray-text);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  overflow-wrap: anywhere;
}

.section-subtitle--white { color: rgba(255,255,255,0.85); }

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

/* =============================================
   MEDIA CARD (images in sections)
   ============================================= */
.media-card-link {
  display: block;
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.media-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(0,0,0,0.22);
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(255,142,14,0.25);
}

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

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

/* =============================================
   ADVANTAGES
   ============================================= */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}

.advantage-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--color-gray-mid);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}

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

.advantage-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.advantage-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-dark-2);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.advantage-card p {
  font-size: 0.85rem;
  color: var(--color-gray-text);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* =============================================
   BONUS TABLE
   ============================================= */
.bonus-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-bottom: 8px;
  max-width: 100%;
}

.bonus-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  table-layout: fixed;
}

.bonus-table th,
.bonus-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-gray-mid);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.bonus-table th {
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.bonus-table td {
  color: var(--color-dark-2);
}

.bonus-table tr:last-child td { border-bottom: none; }

.bonus-table tr:nth-child(even) td {
  background: rgba(255,142,14,0.04);
}

.bonus-featured td {
  background: rgba(255,142,14,0.1) !important;
  color: var(--color-dark) !important;
  font-weight: 600;
}

.bonus-disclaimer {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  text-align: center;
  margin-top: 12px;
  overflow-wrap: anywhere;
}

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

.step-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  border: 1.5px solid var(--color-gray-mid);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), #ff6b00);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: var(--shadow-btn);
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-dark-2);
  overflow-wrap: anywhere;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--color-gray-text);
  line-height: 1.6;
  flex: 1;
  overflow-wrap: anywhere;
}

.step-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.kyc-notice {
  background: rgba(255,142,14,0.1);
  border: 1.5px solid rgba(255,142,14,0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--color-dark-2);
  overflow-wrap: anywhere;
}

/* =============================================
   SPORT SECTION
   ============================================= */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sport-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition);
  min-width: 0;
}

.sport-feature:hover {
  background: rgba(255,142,14,0.08);
  border-color: rgba(255,142,14,0.4);
}

.sport-feature h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

.sport-feature p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

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

.casino-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--color-gray-mid);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}

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

.casino-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.casino-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-dark-2);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.casino-card p {
  font-size: 0.88rem;
  color: var(--color-gray-text);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.providers-strip {
  background: var(--color-gray);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  overflow-wrap: anywhere;
}

.providers-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-dark-2);
  white-space: nowrap;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.provider-badge {
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-mid);
  color: var(--color-dark-2);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}

.provider-badge:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* =============================================
   REVIEW SECTION
   ============================================= */
.review-block {
  background: var(--color-gray);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.review-block h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-dark-2);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.review-block p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}

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

/* =============================================
   MOBILE SECTION
   ============================================= */
.mobile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.mobile-feature {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
  min-width: 0;
}

.mobile-feature:hover {
  background: rgba(255,142,14,0.1);
  border-color: rgba(255,142,14,0.4);
}

.mobile-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.mobile-feature h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.mobile-feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

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

.payment-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid var(--color-gray-mid);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}

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

.payment-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-dark-2);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.payment-card p {
  font-size: 0.85rem;
  color: var(--color-gray-text);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.tax-notice {
  background: rgba(255,142,14,0.08);
  border: 1.5px solid rgba(255,142,14,0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  overflow-wrap: anywhere;
}

.tax-notice h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-dark-2);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.tax-notice p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

/* =============================================
   SUPPORT
   ============================================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.support-card {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  transition: background var(--transition), transform var(--transition);
  min-width: 0;
}

.support-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.support-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.support-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  overflow-wrap: anywhere;
}

.support-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  flex: 1;
  overflow-wrap: anywhere;
}

.responsible-gaming-box {
  background: rgba(0,0,0,0.25);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
  overflow-wrap: anywhere;
}

.responsible-gaming-box h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.responsible-gaming-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-gray-mid);
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-dark-2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition), background var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

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

.faq-question:hover {
  color: var(--color-primary);
  background: rgba(255,142,14,0.04);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 22px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-gray-text);
  line-height: 1.7;
  padding-top: 8px;
  border-top: 1px solid var(--color-gray-mid);
  overflow-wrap: anywhere;
}

/* =============================================
   FINAL CTA
   ============================================= */
.section--final-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1c1c1c 100%);
  text-align: center;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

.final-cta-content h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.final-cta-bonus {
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 16px !important;
  text-shadow: 0 0 20px rgba(255,142,14,0.4);
}

.final-cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  overflow-wrap: anywhere;
}

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

.final-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  overflow-wrap: anywhere;
  margin-bottom: 0 !important;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(1.1);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

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

.footer-col h4 {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  overflow-wrap: anywhere;
}

.footer-col li a:hover {
  color: var(--color-primary);
}

.footer-responsible {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  overflow-wrap: anywhere;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.responsible-badge {
  background: rgba(255,142,14,0.15);
  border: 1px solid rgba(255,142,14,0.3);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.responsible-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  max-width: 700px;
  margin: 0 auto 8px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.responsible-hotline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  overflow-wrap: anywhere;
}

.footer-legal {
  padding: 20px 0;
  text-align: center;
  overflow-wrap: anywhere;
}

.footer-legal p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.footer-copyright {
  font-size: 0.73rem !important;
  color: rgba(255,255,255,0.3) !important;
}

/* =============================================
   CATFISH BAR
   ============================================= */
.catfish-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-dark);
  border-top: 3px solid var(--color-primary);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  transition: transform 0.35s ease;
}

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

.catfish-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.catfish-text {
  flex: 1;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.catfish-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: color var(--transition);
  line-height: 1;
}

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

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

.exit-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  border-top: 4px solid var(--color-primary);
  animation: popupIn 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@keyframes popupIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.exit-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
  transition: color var(--transition);
}

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

.exit-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), #ff6b00);
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.exit-popup h2 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--color-dark-2);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.exit-popup-bonus {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.exit-popup p {
  font-size: 0.93rem;
  color: #555;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.exit-popup .btn {
  width: 100%;
  margin-bottom: 14px;
}

.exit-popup-disclaimer {
  font-size: 0.72rem !important;
  color: #aaa !important;
  margin-bottom: 0 !important;
  overflow-wrap: anywhere;
}

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

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mobile-grid,
  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Medium: ≤900px */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-actions .btn:not(.burger) {
    display: none;
  }
  .header-actions .btn.btn--primary:last-of-type {
    display: inline-flex;
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sport-grid {
    grid-template-columns: 1fr;
  }
  .casino-grid {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Small tablet: ≤768px */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta-group .btn {
    width: 100%;
    max-width: 360px;
  }
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .final-cta-buttons .btn {
    width: 100%;
    max-width: 360px;
  }
}

/* Mobile: ≤600px */
@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .mobile-grid {
    grid-template-columns: 1fr;
  }
  .payment-grid {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
  .step-card .btn { align-self: stretch; }
  .review-block {
    padding: 22px 18px;
  }
  .media-card-img {
    max-height: 240px;
  }
  .hero-image-wrapper {
    max-height: 280px;
  }
  .hero-img {
    max-height: 280px;
  }
}

/* Extra small: ≤400px */
@media (max-width: 400px) {
  :root { --side-pad: 14px; }
  .logo { height: 36px; }
  .advantage-card { padding: 20px 14px; }
  .step-card { padding: 20px 14px; }
  .review-block { padding: 18px 14px; }
  .bonus-table th,
  .bonus-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}
.sisal-matchpoint-guida{
  max-width:62.5rem;
  margin:0 auto;
  padding:2rem 1rem;
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  color:#1a1a1a;
  font-family:'Segoe UI','Helvetica Neue',Arial,sans-serif;
  background:#ffffff;
  border:1.5px solid #e8e8e8;
  border-radius:0.75rem;
  border-left:4px solid #FF8E0E;
}
.sisal-matchpoint-guida__title{
  margin:0;
  font-size:1.4rem;
  font-weight:900;
  line-height:1.25;
  color:#222222;
  letter-spacing:-0.01em;
}
.sisal-matchpoint-guida__lead{
  background:rgba(255,142,14,0.06);
  border:1.5px solid rgba(255,142,14,0.30);
  border-radius:0.75rem;
  padding:1rem;
}
.sisal-matchpoint-guida__lead p{
  margin:0;
  color:#333333;
  font-size:1rem;
  line-height:1.7;
}
.sisal-matchpoint-guida__lead em{
  color:#FF8E0E;
  font-style:italic;
  font-weight:600;
}
.sisal-matchpoint-guida__article{
  display:flex;
  flex-direction:column;
  gap:0.7rem;
  padding-top:0.5rem;
  border-top:1px solid #e8e8e8;
}
.sisal-matchpoint-guida__article:first-of-type{
  border-top:0;
  padding-top:0;
}
.sisal-matchpoint-guida__h3{
  margin:0;
  font-size:1.15rem;
  font-weight:800;
  color:#222222;
  line-height:1.3;
}
.sisal-matchpoint-guida__h3::before{
  content:"";
  display:inline-block;
  width:0.5rem;
  height:0.5rem;
  background:#FF8E0E;
  border-radius:50%;
  margin-right:0.6rem;
  vertical-align:middle;
  transform:translateY(-0.125rem);
}
.sisal-matchpoint-guida__h4{
  margin:0.5rem 0 0.1rem;
  font-size:1rem;
  font-weight:800;
  color:#FF8E0E;
}
.sisal-matchpoint-guida__article p,
.sisal-matchpoint-guida__aside p{
  margin:0;
  color:#444444;
  font-size:0.95rem;
  line-height:1.75;
}
.sisal-matchpoint-guida__article strong,
.sisal-matchpoint-guida__aside strong,
.sisal-matchpoint-guida__lead strong{
  color:#1a1a1a;
  font-weight:800;
}
.sisal-matchpoint-guida__article em,
.sisal-matchpoint-guida__aside em{
  color:#e07800;
  font-style:italic;
  font-weight:600;
}
.sisal-matchpoint-guida__list,
.sisal-matchpoint-guida__olist{
  margin:0;
  padding-left:1.25rem;
  display:flex;
  flex-direction:column;
  gap:0.45rem;
  color:#444444;
  font-size:0.95rem;
  line-height:1.7;
}
.sisal-matchpoint-guida__list{
  list-style:disc;
}
.sisal-matchpoint-guida__olist{
  list-style:decimal;
}
.sisal-matchpoint-guida__list li::marker,
.sisal-matchpoint-guida__olist li::marker{
  color:#FF8E0E;
  font-weight:800;
}
.sisal-matchpoint-guida__table{
  display:block;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  width:100%;
  margin:0.5rem 0 0;
  border-collapse:collapse;
  background:#ffffff;
  border:1px solid #e8e8e8;
  border-radius:0.625rem;
  font-size:0.85rem;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.sisal-matchpoint-guida__table thead{
  background:linear-gradient(135deg,#FF8E0E 0%,#e07800 100%);
}
.sisal-matchpoint-guida__table th,
.sisal-matchpoint-guida__table td{
  text-align:left;
  padding:0.65rem 0.75rem;
  border-bottom:1px solid #e8e8e8;
  vertical-align:top;
  color:#444444;
  line-height:1.5;
}
.sisal-matchpoint-guida__table th{
  color:#ffffff;
  font-weight:800;
  font-size:0.82rem;
  letter-spacing:0.03em;
  text-transform:uppercase;
  white-space:nowrap;
}
.sisal-matchpoint-guida__table tbody tr:last-child td{
  border-bottom:0;
}
.sisal-matchpoint-guida__table tbody tr:nth-child(even) td{
  background:rgba(255,142,14,0.04);
}
.sisal-matchpoint-guida__table tbody tr:hover td{
  background:rgba(255,142,14,0.10);
  color:#1a1a1a;
}
.sisal-matchpoint-guida__aside{
  background:linear-gradient(160deg,rgba(255,142,14,0.08) 0%,rgba(255,142,14,0.02) 100%);
  border:1.5px solid rgba(255,142,14,0.40);
  border-radius:0.75rem;
  padding:1rem;
  display:flex;
  flex-direction:column;
  gap:0.7rem;
}
.sisal-matchpoint-guida__aside .sisal-matchpoint-guida__h3{
  color:#222222;
}
.sisal-matchpoint-guida__aside .sisal-matchpoint-guida__h4{
  color:#e07800;
  margin-top:0.5rem;
}

@media (min-width:37.5em){
  .sisal-matchpoint-guida{
    padding:2.25rem 1.5rem;
    gap:1.75rem;
  }
  .sisal-matchpoint-guida__title{
    font-size:1.6rem;
  }
  .sisal-matchpoint-guida__lead{
    padding:1.15rem 1.25rem;
  }
  .sisal-matchpoint-guida__lead p{
    font-size:1.05rem;
  }
  .sisal-matchpoint-guida__h3{
    font-size:1.25rem;
  }
  .sisal-matchpoint-guida__h4{
    font-size:1.02rem;
  }
  .sisal-matchpoint-guida__table{
    font-size:0.9rem;
  }
  .sisal-matchpoint-guida__aside{
    padding:1.2rem 1.3rem;
  }
}

@media (min-width:56.25em){
  .sisal-matchpoint-guida{
    padding:2.75rem 2rem;
  }
  .sisal-matchpoint-guida__title{
    font-size:1.9rem;
  }
  .sisal-matchpoint-guida__h3{
    font-size:1.35rem;
  }
  .sisal-matchpoint-guida__h4{
    font-size:1.05rem;
  }
  .sisal-matchpoint-guida__article p,
  .sisal-matchpoint-guida__aside p,
  .sisal-matchpoint-guida__list,
  .sisal-matchpoint-guida__olist,
  .sisal-matchpoint-guida__lead p{
    font-size:1rem;
    line-height:1.8;
  }
  .sisal-matchpoint-guida__table{
    display:table;
    overflow-x:visible;
    font-size:0.92rem;
  }
  .sisal-matchpoint-guida__table th,
  .sisal-matchpoint-guida__table td{
    padding:0.75rem 0.9rem;
  }
}

@media (min-width:75em){
  .sisal-matchpoint-guida{
    padding:3rem 2.25rem;
  }
  .sisal-matchpoint-guida__title{
    font-size:2rem;
  }
}