/* ============================================================
   22BET ITALIA – assets/styles.css
   Colors:
     #2EB255 – registration/primary CTA button
     #185B62 – other buttons
     #054248 – header background
     #FFFFFF – text / main page color
   ============================================================ */

/* ---------- 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: #FFFFFF;
  color: #1a1a2e;
  line-height: 1.65;
  font-size: 16px;
  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; }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, #2EB255 0%, #22943f 100%);
  color: #fff;
  border-color: #2EB255;
  box-shadow: 0 4px 18px rgba(46,178,85,0.38), 0 2px 6px rgba(0,0,0,0.18);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #34cc61 0%, #27a847 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(46,178,85,0.48), 0 4px 12px rgba(0,0,0,0.2);
}
.btn--primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 8px rgba(46,178,85,0.3);
}

.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}
.btn--ghost:active {
  transform: translateY(0);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #054248;
  box-shadow: 0 2px 20px rgba(5,66,72,0.55);
  transition: box-shadow 0.3s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.header__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAV */
.nav { display: flex; align-items: center; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav__link {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav__link:hover { background: rgba(255,255,255,0.12); }

.nav__cta {
  margin-left: 6px;
  background: linear-gradient(135deg, #185B62, #0f3d43);
  color: #fff;
  border-color: #185B62;
  box-shadow: 0 2px 10px rgba(24,91,98,0.4);
  font-size: 0.85rem;
  min-height: 38px;
  padding: 8px 18px;
}
.nav__cta:hover {
  background: linear-gradient(135deg, #1d6f78, #145259);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(24,91,98,0.5);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- SECTIONS GENERAL ---------- */
.section {
  padding: 72px 0;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #054248;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section__sub {
  font-size: 1.05rem;
  color: #4a5568;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  margin-top: 62px; /* header height */
  background: #054248;
}

.hero__img-wrap {
  display: block;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.hero__img-wrap:hover .hero__img { transform: scale(1.02); }

.hero__overlay {
  background: linear-gradient(180deg, rgba(5,66,72,0.62) 0%, rgba(5,66,72,0.95) 100%);
  padding: 48px 0 56px;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: #185B62;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero__bonus {
  font-size: clamp(1.8rem, 5.5vw, 3.2rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 32px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  letter-spacing: -0.01em;
}

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

/* ---------- ADVANTAGES ---------- */
.advantages {
  background: #f8fffe;
}

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

.adv-card {
  background: #FFFFFF;
  border: 1.5px solid #e2f0ee;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(5,66,72,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(5,66,72,0.12);
}

.adv-card__icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.adv-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #054248;
  margin-bottom: 10px;
}

.adv-card__text {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.6;
}

/* ---------- BONUS ---------- */
.bonus {
  background: linear-gradient(160deg, #054248 0%, #0a5960 50%, #185B62 100%);
}

.bonus .section__title { color: #fff; }
.bonus .section__sub { color: rgba(255,255,255,0.8); }

.bonus__hero-card {
  display: block;
  background: linear-gradient(135deg, #2EB255, #1d8a3f);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 6px 32px rgba(46,178,85,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.bonus__hero-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(46,178,85,0.55);
}

.bonus__hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bonus__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

.bonus__amount {
  font-size: clamp(1.2rem, 3.5vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bonus__cta-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

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

.bonus-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  min-width: 0;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.bonus-card__img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
}

.bonus-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.bonus-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
}

.bonus-card__btn {
  display: inline-block;
  background: #2EB255;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 6px;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bonus-card:hover .bonus-card__btn {
  background: #35cc62;
  transform: scale(1.03);
}

.bonus .section__cta .btn--primary {
  background: linear-gradient(135deg, #2EB255, #22943f);
  box-shadow: 0 4px 18px rgba(46,178,85,0.4);
}

/* ---------- STEPS ---------- */
.steps {
  background: #FFFFFF;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  counter-reset: step;
}

.step-card {
  background: #f8fffe;
  border: 1.5px solid #dceeed;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5,66,72,0.1);
}

.step-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2EB255;
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.step-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #054248;
  margin-bottom: 10px;
}

.step-card__text {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
}

/* ---------- SPORT ---------- */
.sport {
  background: #f8fffe;
}

.sport__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 48px;
  align-items: start;
}

.sport__content p {
  margin-bottom: 16px;
  color: #2d3748;
  line-height: 1.75;
}
.sport__content strong { color: #054248; }

.sport__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.sport__list li {
  background: #FFFFFF;
  border: 1.5px solid #dceeed;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #054248;
}

.sport__media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(5,66,72,0.14);
  transition: transform 0.25s, box-shadow 0.25s;
  min-width: 0;
}
.sport__media:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 36px rgba(5,66,72,0.2);
}

.sport__img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* ---------- CASINO ---------- */
.casino {
  background: #FFFFFF;
}

.casino__layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.casino__media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(5,66,72,0.14);
  transition: transform 0.25s, box-shadow 0.25s;
  min-width: 0;
}
.casino__media:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 36px rgba(5,66,72,0.2);
}

.casino__img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.casino__content p {
  margin-bottom: 16px;
  color: #2d3748;
  line-height: 1.75;
}
.casino__content strong { color: #054248; }

.casino__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cat-tag {
  background: #e8f7ef;
  color: #054248;
  border: 1.5px solid #b2ddc9;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* REVIEW */
.review {
  background: linear-gradient(160deg, #054248 0%, #0a5960 100%);
  border-radius: 20px;
  padding: 44px 40px;
  color: #fff;
  margin-bottom: 48px;
  box-shadow: 0 8px 40px rgba(5,66,72,0.3);
}

.review__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}

.review__score-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.review__score-item {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  min-width: 0;
}

.review__score-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #2EB255;
  line-height: 1;
  margin-bottom: 6px;
}

.review__score-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review__body p {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
}
.review__body strong { color: #fff; }

.review__verdict {
  background: rgba(46,178,85,0.18);
  border: 1.5px solid rgba(46,178,85,0.35);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.review__btn {
  display: inline-flex;
}

/* ---------- MOBILE SECTION ---------- */
.mobile-sec {
  background: #f8fffe;
}

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

.mobile-card {
  background: #FFFFFF;
  border: 1.5px solid #dceeed;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(5,66,72,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.mobile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5,66,72,0.1);
}

.mobile-card__icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.mobile-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #054248;
  margin-bottom: 10px;
}

.mobile-card__text {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
}

.mobile__banner {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(5,66,72,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  max-height: 320px;
}
.mobile__banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(5,66,72,0.18);
}

.mobile__img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* ---------- PAYMENTS ---------- */
.payments {
  background: #FFFFFF;
}

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

.payment-item {
  background: #f8fffe;
  border: 1.5px solid #dceeed;
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.payment-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(5,66,72,0.1);
}

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

.payment-item__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #054248;
  text-align: center;
}

.payment-item__info {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2EB255;
  background: #e8f7ef;
  padding: 3px 10px;
  border-radius: 12px;
}

.payments__info {
  background: #f0faf6;
  border: 1.5px solid #c8e8de;
  border-radius: 12px;
  padding: 20px 24px;
}
.payments__info p {
  font-size: 0.95rem;
  color: #2d3748;
  line-height: 1.7;
}
.payments__info strong { color: #054248; }

/* ---------- SUPPORT ---------- */
.support {
  background: #f8fffe;
}

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

.support-card {
  background: #FFFFFF;
  border: 1.5px solid #dceeed;
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(5,66,72,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(5,66,72,0.1);
}

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

.support-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #054248;
  margin-bottom: 10px;
}

.support-card__text {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq {
  background: #FFFFFF;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1.5px solid #dceeed;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 1px 6px rgba(5,66,72,0.05);
}

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #054248;
  padding: 18px 52px 18px 22px;
  position: relative;
  line-height: 1.45;
  transition: background 0.2s;
}
.faq__q:hover { background: #f0faf6; }
.faq__q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: #2EB255;
  transition: transform 0.3s;
}
.faq__q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq__a.is-open {
  max-height: 400px;
  padding-bottom: 4px;
}
.faq__a p {
  padding: 4px 22px 20px;
  font-size: 0.94rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: linear-gradient(160deg, #054248 0%, #0a5960 60%, #185B62 100%);
}

.final-cta__box {
  text-align: center;
  padding: 20px 0;
}

.final-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta__bonus {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 900;
  color: #2EB255;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(46,178,85,0.3);
  line-height: 1.3;
}

.final-cta__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-cta__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #031f22;
  padding: 48px 0 24px;
  color: rgba(255,255,255,0.75);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer__logo-link { flex-shrink: 0; }

.footer__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 600px;
  color: rgba(255,255,255,0.65);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer__link:hover { color: #2EB255; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
}

/* ---------- CATFISH ---------- */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #054248 0%, #0a5960 100%);
  box-shadow: 0 -4px 20px rgba(5,66,72,0.35);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  transform: translateY(0);
  transition: transform 0.35s ease;
}
.catfish.is-hidden { transform: translateY(110%); }

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

.catfish__text {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.catfish__btn {
  flex-shrink: 0;
  min-height: 38px;
  padding: 8px 18px;
  font-size: 0.82rem;
}

.catfish__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 6px;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}
.catfish__close:hover { color: #fff; }

/* ---------- EXIT POPUP ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,30,34,0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 44px 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(5,66,72,0.35);
  animation: popIn 0.35s ease;
}
@keyframes popIn {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #888;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.popup__close:hover { color: #054248; }

.popup__badge {
  display: inline-block;
  background: #185B62;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.popup__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #054248;
  margin-bottom: 16px;
  line-height: 1.2;
}

.popup__bonus {
  font-size: 1.15rem;
  font-weight: 900;
  color: #2EB255;
  margin-bottom: 12px;
  line-height: 1.3;
}

.popup__sub {
  font-size: 0.93rem;
  color: #4a5568;
  margin-bottom: 28px;
  line-height: 1.6;
}

.popup__btn {
  width: 100%;
  justify-content: center;
}

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

/* Tablet 900px */
@media (max-width: 900px) {
  .section { padding: 56px 0; }

  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus__grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .steps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile__grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support__grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .review__score-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .sport__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .sport__media { order: -1; }

  .casino__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .review { padding: 32px 24px; }
}

/* Mobile 640px */
@media (max-width: 640px) {
  body { font-size: 15px; }

  .header__inner { padding-top: 8px; padding-bottom: 8px; }

  /* Burger nav */
  .burger { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #054248;
    box-shadow: 0 8px 24px rgba(5,66,72,0.4);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.3s;
  }
  .nav.is-open {
    max-height: 320px;
    padding: 12px 0;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
  }
  .nav__link {
    display: block;
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__cta {
    margin: 12px 0 4px;
    display: flex;
    justify-content: center;
  }

  .hero { margin-top: 58px; }
  .hero__img-wrap { max-height: 260px; }
  .hero__img { max-height: 260px; }
  .hero__overlay { padding: 32px 0 40px; }
  .hero__bonus { font-size: clamp(1.35rem, 6vw, 2rem); }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero__ctas .btn { width: 100%; max-width: 320px; }

  .section { padding: 44px 0; }
  .section__title { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .section__sub { font-size: 0.93rem; }

  .advantages__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .steps__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .mobile__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .payments__grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .support__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .review__score-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

  .review { padding: 26px 18px; }
  .review__title { font-size: 1.15rem; }
  .review__score-num { font-size: 1.9rem; }

  .bonus__hero-card { padding: 26px 18px; }
  .bonus__amount { font-size: clamp(1rem, 5vw, 1.4rem); }

  .section__cta .btn,
  .final-cta__btns .btn {
    width: 100%;
    max-width: 360px;
  }
  .final-cta__btns {
    flex-direction: column;
    align-items: center;
  }

  .footer__top { flex-direction: column; gap: 20px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }

  .catfish__text {
    font-size: 0.78rem;
  }
  .catfish__inner { flex-wrap: nowrap; }

  .popup { padding: 36px 22px; }
  .popup__title { font-size: 1.2rem; }
  .popup__bonus { font-size: 1rem; }

  .sport__layout { gap: 24px; }
  .casino__layout { gap: 24px; }
}

/* Very small 380px */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero__bonus { font-size: clamp(1.1rem, 7vw, 1.5rem); }
  .btn { font-size: 0.88rem; padding: 12px 16px; }
  .catfish__text { font-size: 0.72rem; }
  .review__score-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.tbet-content-block {
background: #ffffff;
color: #1a2332;
padding: 4rem 1.25rem;
font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
line-height: 1.7;
position: relative;
overflow: hidden;
}
.tbet-content-block::before {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 80%;
max-width: 720px;
height: 4px;
background: linear-gradient(90deg, transparent 0%, #2EB255 30%, #185B62 70%, transparent 100%);
border-radius: 0 0 4px 4px;
}
.tbet-content-block__head {
max-width: 880px;
margin: 0 auto 3rem;
text-align: center;
padding: 0 0.5rem;
}
.tbet-content-block__title {
font-size: clamp(1.45rem, 4.5vw, 2.35rem);
font-weight: 900;
color: #054248;
line-height: 1.2;
margin: 0 0 1.1rem;
letter-spacing: -0.01em;
}
.tbet-content-block__lead {
font-size: clamp(0.98rem, 2.5vw, 1.08rem);
color: #3a4a5c;
margin: 0;
line-height: 1.7;
}
.tbet-content-block__lead strong {
color: #054248;
font-weight: 700;
}
.tbet-content-block__article {
max-width: 920px;
margin: 0 auto 2.6rem;
padding: 1.6rem 1.4rem;
background: linear-gradient(180deg, #f9fdfb 0%, #ffffff 100%);
border: 1px solid #e3eeec;
border-left: 4px solid #2EB255;
border-radius: 0 12px 12px 0;
box-shadow: 0 2px 14px rgba(5, 66, 72, 0.05);
transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.tbet-content-block__article:nth-of-type(even) {
border-left-color: #185B62;
background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}
.tbet-content-block__article:hover {
box-shadow: 0 6px 22px rgba(5, 66, 72, 0.09);
transform: translateY(-2px);
}
.tbet-content-block__h3 {
font-size: clamp(1.15rem, 3vw, 1.45rem);
font-weight: 800;
color: #054248;
margin: 0 0 1rem;
line-height: 1.3;
position: relative;
padding-bottom: 0.6rem;
}
.tbet-content-block__h3::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 48px;
height: 3px;
background: #2EB255;
border-radius: 2px;
}
.tbet-content-block__article p {
font-size: 0.97rem;
color: #2d3a4d;
margin: 0 0 0.95rem;
line-height: 1.75;
}
.tbet-content-block__article p:last-child {
margin-bottom: 0;
}
.tbet-content-block__article strong {
color: #054248;
font-weight: 700;
}
.tbet-content-block__article em {
color: #185B62;
font-style: italic;
font-weight: 500;
}
.tbet-content-block__list {
list-style: none;
padding: 0;
margin: 1.1rem 0 0.5rem;
display: flex;
flex-direction: column;
gap: 0.55rem;
}
.tbet-content-block__list li {
background: #ffffff;
border: 1px solid #d8e8e5;
border-radius: 8px;
padding: 0.75rem 1rem 0.75rem 2.4rem;
font-size: 0.93rem;
color: #2d3a4d;
position: relative;
line-height: 1.6;
transition: border-color 0.2s ease, background 0.2s ease;
}
.tbet-content-block__list li::before {
content: "✓";
position: absolute;
left: 0.85rem;
top: 50%;
transform: translateY(-50%);
width: 22px;
height: 22px;
background: #2EB255;
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.78rem;
font-weight: 800;
}
.tbet-content-block__list li:hover {
border-color: #2EB255;
background: #f5fbf7;
}
.tbet-content-block__table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
margin: 1.2rem 0 0.4rem;
font-size: 0.91rem;
background: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 2px 10px rgba(5, 66, 72, 0.06);
display: block;
overflow-x: auto;
white-space: nowrap;
}
.tbet-content-block__table thead {
background: linear-gradient(135deg, #054248 0%, #0a5960 100%);
}
.tbet-content-block__table th {
color: #ffffff;
font-weight: 700;
text-align: left;
padding: 0.85rem 1rem;
font-size: 0.86rem;
text-transform: uppercase;
letter-spacing: 0.04em;
border-bottom: 2px solid #2EB255;
}
.tbet-content-block__table td {
padding: 0.8rem 1rem;
color: #2d3a4d;
border-bottom: 1px solid #e8f0ee;
vertical-align: top;
white-space: normal;
}
.tbet-content-block__table tbody tr:nth-child(even) td {
background: #f8fcfb;
}
.tbet-content-block__table tbody tr:hover td {
background: #eef8f3;
}
.tbet-content-block__table tbody tr:last-child td {
border-bottom: none;
}
.tbet-content-block__table--alt thead {
background: linear-gradient(135deg, #185B62 0%, #054248 100%);
}
.tbet-content-block__table--alt th {
border-bottom-color: #185B62;
}
@media (min-width: 720px) {
.tbet-content-block {
padding: 5rem 2rem;
}
.tbet-content-block__article {
padding: 2.2rem 2rem;
}
.tbet-content-block__table {
display: table;
white-space: normal;
}
}
@media (min-width: 1024px) {
.tbet-content-block {
padding: 6rem 2.5rem;
}
.tbet-content-block__head {
margin-bottom: 4rem;
}
.tbet-content-block__article {
padding: 2.6rem 2.4rem;
margin-bottom: 3rem;
}
.tbet-content-block__article p {
font-size: 1rem;
}
.tbet-content-block__list li {
font-size: 0.97rem;
padding: 0.85rem 1.2rem 0.85rem 2.6rem;
}
.tbet-content-block__table {
font-size: 0.96rem;
}
.tbet-content-block__table th,
.tbet-content-block__table td {
padding: 1rem 1.2rem;
}
}