/* =============================================
   assets/styles.css – bwin Casino España
   ============================================= */

/* 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;
  background: #fff;
  color: #111;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

/* CSS VARIABLES */
:root {
  --gold: #FFD840;
  --gold-dark: #e6c000;
  --gold-light: #ffe77a;
  --black: #000;
  --white: #fff;
  --gray-900: #fff;
  --gray-800: #fff;
  --gray-700: #f8f8f8;
  --gray-600: #fff;
  --gray-200: #e8e8e8;
  --gray-100: #f5f5f5;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 24px rgba(255,216,64,0.4);
  --transition: 0.2s ease;
  --container: 1200px;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 6px 20px rgba(255,216,64,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  border: 2px solid var(--gold-dark);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255,216,64,0.65), inset 0 1px 0 rgba(255,255,255,0.3);
  background: linear-gradient(135deg, #ffef99, var(--gold-light), var(--gold));
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 3px 10px rgba(255,216,64,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn--ghost:hover {
  background: rgba(0,0,0,0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--xl {
  min-height: 54px;
  padding: 16px 36px;
  font-size: 1.05rem;
}

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

.header__container {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 70px;
  min-width: 0;
}

.header__logo {
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

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

.nav-link {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(255,216,64,0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__cta { font-size: 0.82rem; padding: 10px 18px; min-height: 40px; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 6px;
  cursor: pointer;
  padding: 7px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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 MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__link {
  color: var(--black);
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu__link:hover { background: rgba(255,216,64,0.12); color: var(--black); }
.mobile-menu__cta { margin-top: 8px; width: 100%; }

/* =============================================
   SECTIONS – SHARED
   ============================================= */
.section {
  padding: 72px 0;
}
.section--dark {
  background: #fff;
  color: #111;
}
.section--light {
  background: #fff;
  color: #111;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #111;
}

.section__title--left { text-align: left; }

.section__lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  opacity: 0.75;
  color: #333;
}

.section__label {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: #fff;
  overflow: hidden;
}

.hero__media-wrap {
  display: block;
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
}

.hero__content {
  padding: 48px 0 56px;
  text-align: center;
  background: #fff;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,216,64,0.15);
  border: 1px solid rgba(255,216,64,0.5);
  color: #b8900a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: #444;
  margin-bottom: 36px;
  font-weight: 500;
}

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

.hero__disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: #999;
}

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

/* CARDS */
.card--icon {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.card--icon:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(255,216,64,0.2);
}
.card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.card__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* =============================================
   PROMO SECTION
   ============================================= */
.section--promo {
  background: #fff;
  color: #111;
  padding: 72px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.promo__layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 480px);
  gap: 48px;
  align-items: center;
}

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

.promo__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 16px;
}

.promo__desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 24px;
  line-height: 1.7;
}

.promo__list {
  list-style: none;
  margin-bottom: 32px;
}
.promo__list li {
  padding: 7px 0;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px solid #eee;
}
.promo__list li:last-child { border-bottom: none; }

.promo__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.promo__media .media-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #e0e0e0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo__media .media-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(255,216,64,0.15);
}
.promo__media .media-card img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
}

/* =============================================
   STEPS (How to Start)
   ============================================= */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 28px 20px;
  background: #f8f8f8;
  border-radius: var(--radius);
  border: 1px solid #e8e8e8;
}
.step__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.step__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}
.step__text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.step__arrow {
  font-size: 2rem;
  color: var(--gold-dark);
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

/* =============================================
   SPLIT LAYOUTS
   ============================================= */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 48px;
  align-items: center;
}
.split-layout--reverse {
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
}
.split-layout--reverse .split-layout__content { order: 1; }
.split-layout--reverse .split-layout__media { order: 2; }

.split-layout__content p {
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: #444;
}

.split-layout__media .media-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.split-layout__media .media-card:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.split-layout__media .media-card img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 20px 0 28px;
}
.feature-list li {
  padding: 8px 0;
  font-size: 0.93rem;
  color: #444;
  border-bottom: 1px solid #eee;
}
.feature-list li:last-child { border-bottom: none; }

/* =============================================
   GAME TAGS
   ============================================= */
.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.game-tag {
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #111;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.game-tag:hover {
  background: var(--gold);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

/* =============================================
   GAMES GRID
   ============================================= */
.section--games {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
}

.game-card {
  display: block;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(255,216,64,0.25);
}
.game-card__inner {
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 120px;
  justify-content: center;
}
.game-card__emoji { font-size: 2rem; }
.game-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.3;
}
.game-card__badge {
  font-size: 0.65rem;
  font-weight: 900;
  background: var(--gold);
  color: var(--black);
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.08em;
}

/* =============================================
   MOBILE FEATURES
   ============================================= */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}
.mobile-feature {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.mobile-feature:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(255,216,64,0.15);
}
.mobile-feature__icon { font-size: 2.4rem; margin-bottom: 14px; }
.mobile-feature h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.mobile-feature p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

/* =============================================
   PAYMENTS
   ============================================= */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 20px 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #333;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
  text-align: center;
}
.payment-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(255,216,64,0.2);
}
.payment-icon { font-size: 1.8rem; }

.payment-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.payment-info__item {
  background: #f8f8f8;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  min-width: 0;
}
.payment-info__item strong { color: #111; }

/* =============================================
   SUPPORT
   ============================================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px;
}
.support-card {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(255,216,64,0.15);
}
.support-card__icon { font-size: 2.8rem; }
.support-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
}
.support-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #f8f8f8;
  border: none;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: #efefef; }
.faq-question[aria-expanded="true"] { background: var(--gold); color: var(--black); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-answer {
  display: none;
  padding: 20px 24px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

/* =============================================
   FINAL CTA
   ============================================= */
.section--cta {
  background: #fff;
  color: #111;
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.cta-media {
  display: block;
  max-width: 700px;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #e0e0e0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform var(--transition);
}
.cta-media:hover { transform: scale(1.02); }
.cta-media img { width: 100%; height: auto; max-height: 400px; object-fit: cover; }

.cta-final__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-final__desc {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}
.cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final__note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: #999;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #fff;
  color: #555;
  padding: 56px 0 32px;
  border-top: 2px solid #e0e0e0;
}

.footer__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #777;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 32px;
}
.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: #666;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold-dark); }

.footer__legal {
  border-top: 1px solid #eee;
  padding-top: 24px;
}
.footer__legal p {
  font-size: 0.78rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer__age {
  color: #666 !important;
}
.footer__age a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.footer__copy { font-size: 0.75rem !important; }

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

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.exit-popup__box {
  position: relative;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  color: #333;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.exit-popup__close:hover { background: #e0e0e0; }
.exit-popup__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.exit-popup__title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.2;
}
.exit-popup__sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 28px;
}
.exit-popup__cta { width: 100%; }

/* =============================================
   CATFISH
   ============================================= */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.catfish.hidden { transform: translateY(110%); }

.catfish__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.catfish__text {
  flex: 1;
  font-size: 0.9rem;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.catfish__text strong { color: var(--black); }
.catfish__btn {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 10px 20px;
  min-height: 40px;
}
.catfish__close {
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color var(--transition);
  border-radius: 50%;
}
.catfish__close:hover { color: #111; background: #f0f0f0; }

/* =============================================
   MEDIA CARD GENERIC
   ============================================= */
.media-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.media-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

/* ---- TABLET (≤1024px) ---- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .games-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .mobile-features { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .payment-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .promo__layout { grid-template-columns: 1fr; }
  .promo__media { max-width: 560px; margin: 0 auto; }
  .payment-info { grid-template-columns: 1fr; }
}

/* ---- TABLET SMALL (≤768px) ---- */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .header__cta { display: none; }

  .section { padding: 52px 0; }

  .split-layout,
  .split-layout--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split-layout--reverse .split-layout__content { order: 2; }
  .split-layout--reverse .split-layout__media { order: 1; }

  .games-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .support-grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { flex-direction: column; align-items: stretch; }
  .step__arrow { transform: rotate(90deg); text-align: center; padding: 4px 0; }
  .step { max-width: 100%; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 340px; }

  .promo__ctas .btn { width: 100%; }

  .cta-final__buttons { flex-direction: column; align-items: center; }
  .cta-final__buttons .btn { width: 100%; max-width: 340px; }
}

/* ---- MOBILE (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }

  .grid--4 { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .mobile-features { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer__links { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }

  .hero__title { font-size: 2rem; }
  .hero__media-wrap { max-height: 240px; }
  .hero__img { max-height: 240px; }

  .catfish__text { font-size: 0.8rem; }
  .catfish__inner { gap: 10px; }

  .exit-popup__box { padding: 36px 24px; }
  .exit-popup__title { font-size: 1.5rem; }

  .promo__title { font-size: 1.6rem; }

  .game-card__inner { min-height: 100px; padding: 14px 8px; }
  .game-card__emoji { font-size: 1.6rem; }
  .game-card__name { font-size: 0.75rem; }

  .btn--xl { padding: 14px 24px; font-size: 0.95rem; }

  .faq-question { padding: 14px 18px; font-size: 0.92rem; }
  .faq-answer { padding: 16px 18px; }
}

/* ---- VERY SMALL (≤360px) ---- */
@media (max-width: 360px) {
  .hero__title { font-size: 1.7rem; }
  .promo__title { font-size: 1.4rem; }
  .section__title { font-size: 1.4rem; }
  .payment-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.bwin-kyc-control{
  padding: 3.25rem 0;
  background: #ffffff;
  color: #111111;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.bwin-kyc-control__container{
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.bwin-kyc-control__title{
  font-size: 1.5rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-align: center;
}

.bwin-kyc-control__lead{
  background: #f8f8f8;
  border-left: 0.25rem solid #FFD840;
  padding: 1.25rem 1.375rem;
  border-radius: 0 0.75rem 0.75rem 0;
  margin-bottom: 1.75rem;
  border-top: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.bwin-kyc-control__lead p{
  font-size: 0.97rem;
  color: #444444;
  margin: 0;
  line-height: 1.7;
}

.bwin-kyc-control__lead strong{
  color: #111111;
  font-weight: 800;
}

.bwin-kyc-control__block{
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.375rem 1.375rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bwin-kyc-control__block:hover{
  border-color: #FFD840;
  box-shadow: 0 0.5rem 1.5rem rgba(255, 216, 64, 0.12);
}

.bwin-kyc-control__h3{
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin: 0 0 0.875rem 0;
  line-height: 1.3;
  padding-left: 0.75rem;
  border-left: 0.25rem solid #FFD840;
}

.bwin-kyc-control__h4{
  font-size: 1rem;
  font-weight: 800;
  color: #b8900a;
  margin: 1.125rem 0 0.5rem 0;
  line-height: 1.3;
}

.bwin-kyc-control__block p{
  font-size: 0.93rem;
  color: #444444;
  margin: 0 0 0.875rem 0;
  line-height: 1.7;
}

.bwin-kyc-control__block p:last-child{
  margin-bottom: 0;
}

.bwin-kyc-control__block strong{
  color: #111111;
  font-weight: 700;
}

.bwin-kyc-control__block em{
  color: #b8900a;
  font-style: italic;
}

.bwin-kyc-control__list{
  list-style: none;
  padding: 0;
  margin: 0 0 0.875rem 0;
}

.bwin-kyc-control__list li{
  position: relative;
  padding: 0.4375rem 0 0.4375rem 1.625rem;
  font-size: 0.93rem;
  color: #444444;
  line-height: 1.65;
  border-bottom: 1px solid #eeeeee;
}

.bwin-kyc-control__list li:last-child{
  border-bottom: none;
}

.bwin-kyc-control__list li::before{
  content: '';
  position: absolute;
  left: 0.375rem;
  top: 0.875rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #FFD840;
  border: 1px solid #e6c000;
  border-radius: 50%;
}

.bwin-kyc-control__list li strong{
  color: #111111;
  font-weight: 800;
}

.bwin-kyc-control__table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  background: #ffffff;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bwin-kyc-control__table thead{
  background: #000000;
}

.bwin-kyc-control__table th{
  color: #FFD840;
  font-weight: 800;
  text-align: left;
  padding: 0.75rem 0.875rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.bwin-kyc-control__table td{
  padding: 0.75rem 0.875rem;
  color: #444444;
  border-top: 1px solid #e8e8e8;
  vertical-align: top;
}

.bwin-kyc-control__table tbody tr:nth-child(even){
  background: #f8f8f8;
}

.bwin-kyc-control__table tbody tr:hover{
  background: #fff8e0;
}

.bwin-kyc-control__table td:first-child{
  color: #111111;
  font-weight: 700;
}

.bwin-kyc-control__aside{
  background: #000000;
  border: 2px solid #FFD840;
  border-radius: 1rem;
  padding: 1.5rem 1.375rem;
  margin-top: 1.25rem;
}

.bwin-kyc-control__aside .bwin-kyc-control__h3{
  color: #FFD840;
  border-left-color: #FFD840;
}

.bwin-kyc-control__aside .bwin-kyc-control__list li{
  color: #dddddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bwin-kyc-control__aside .bwin-kyc-control__list li:last-child{
  border-bottom: none;
}

.bwin-kyc-control__aside .bwin-kyc-control__list li strong{
  color: #ffffff;
}

.bwin-kyc-control__cta{
  margin-top: 1.125rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 216, 64, 0.12);
  border-left: 0.1875rem solid #FFD840;
  border-radius: 0.5rem;
  font-size: 0.93rem;
  color: #f0f0f0;
  line-height: 1.65;
}

.bwin-kyc-control__cta strong{
  color: #FFD840;
  font-weight: 800;
}

@media (min-width: 30rem){
  .bwin-kyc-control{
    padding: 3.5rem 0;
  }
  .bwin-kyc-control__title{
    font-size: 1.7rem;
  }
  .bwin-kyc-control__lead{
    padding: 1.5rem 1.625rem;
  }
  .bwin-kyc-control__block{
    padding: 1.625rem 1.625rem;
  }
}

@media (min-width: 48rem){
  .bwin-kyc-control{
    padding: 4.5rem 0;
  }
  .bwin-kyc-control__title{
    font-size: 2rem;
  }
  .bwin-kyc-control__h3{
    font-size: 1.3rem;
  }
  .bwin-kyc-control__h4{
    font-size: 1.05rem;
  }
  .bwin-kyc-control__lead p,
  .bwin-kyc-control__block p,
  .bwin-kyc-control__list li{
    font-size: 0.97rem;
  }
  .bwin-kyc-control__block{
    padding: 1.875rem 2rem;
  }
  .bwin-kyc-control__table{
    display: table;
    font-size: 0.9rem;
  }
  .bwin-kyc-control__table th{
    padding: 0.875rem 1.125rem;
    font-size: 0.8rem;
    white-space: normal;
  }
  .bwin-kyc-control__table td{
    padding: 0.875rem 1.125rem;
  }
  .bwin-kyc-control__aside{
    padding: 2rem 2rem;
  }
}

@media (min-width: 64rem){
  .bwin-kyc-control__title{
    font-size: 2.2rem;
  }
}