/* ===========================
   ADMIRALBET – styles.css
   =========================== */

/* --- 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', Arial, sans-serif;
  background-color: #010E2A;
  color: #FFFFFF;
  line-height: 1.6;
  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;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  line-height: 1.3;
}

.btn--primary {
  background: linear-gradient(135deg, #FFCD00 0%, #FFA800 100%);
  color: #010E2A;
  box-shadow: 0 4px 18px rgba(255, 205, 0, 0.45), 0 2px 6px rgba(0,0,0,0.3);
  border: 2px solid #FFD700;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(255, 205, 0, 0.65), 0 4px 12px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #FFD700 0%, #FFB800 100%);
}

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

.btn--ghost {
  background: transparent;
  color: #FFCD00;
  border: 2px solid #FFCD00;
  box-shadow: 0 2px 10px rgba(255,205,0,0.15);
}

.btn--ghost:hover {
  background: rgba(255, 205, 0, 0.12);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(255,205,0,0.25);
}

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

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #010E2A;
  border-bottom: 2px solid #002454;
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__logo-link {
  flex-shrink: 0;
  display: block;
}

.header__logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav {
  flex: 1;
}

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

.nav__link {
  display: block;
  padding: 8px 14px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: #FFCD00;
  background: rgba(255,205,0,0.08);
}

.header__cta {
  flex-shrink: 0;
  font-size: 0.92rem;
  padding: 10px 20px;
  min-height: 42px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #FFCD00;
  border-radius: 3px;
  transition: transform 0.25s, opacity 0.25s;
}

.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 BASE
   =========================== */
.section {
  padding: 72px 0;
}

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

.section__title--light {
  color: #FFFFFF;
}

.section__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__subtitle--light {
  color: rgba(255,255,255,0.85);
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: linear-gradient(180deg, #010E2A 0%, #002454 100%);
  padding: 0;
}

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

.hero__banner {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: #002454;
}

.hero__banner-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__content {
  padding: 48px 0 56px;
}

.hero__inner {
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,205,0,0.12);
  border: 1px solid rgba(255,205,0,0.35);
  color: #FFCD00;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero__brand {
  color: #FFCD00;
}

.hero__bonus-box {
  background: linear-gradient(135deg, #02439A 0%, #002454 100%);
  border: 2px solid #FFCD00;
  border-radius: 16px;
  padding: 24px 32px;
  margin: 0 auto 32px;
  max-width: 780px;
  box-shadow: 0 0 40px rgba(255,205,0,0.2);
}

.hero__bonus-text {
  font-size: clamp(1.15rem, 3.5vw, 1.85rem);
  font-weight: 900;
  color: #FFCD00;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  letter-spacing: 0.3px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero__btn {
  min-width: 240px;
  font-size: 1.05rem;
  padding: 16px 36px;
  min-height: 54px;
}

.hero__disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   ADVANTAGES
   =========================== */
.advantages {
  background: #010E2A;
}

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

.advantages__card {
  background: linear-gradient(145deg, #002454, #010E2A);
  border: 1px solid #02439A;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.advantages__card:hover {
  transform: translateY(-4px);
  border-color: #FFCD00;
  box-shadow: 0 8px 24px rgba(255,205,0,0.12);
}

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

.advantages__card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 10px;
}

.advantages__card-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ===========================
   BONUSES
   =========================== */
.bonuses {
  background: linear-gradient(135deg, #002454 0%, #010E2A 100%);
}

.bonuses__banner-link {
  display: block;
  max-width: 900px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #02439A;
}

.bonuses__banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bonuses__highlight {
  background: rgba(255,205,0,0.06);
  border: 2px solid #FFCD00;
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bonuses__main-text {
  font-size: clamp(1.1rem, 3vw, 1.65rem);
  font-weight: 900;
  color: #FFCD00;
  margin-bottom: 20px;
  line-height: 1.3;
}

.bonuses__btn {
  min-width: 280px;
  font-size: 1rem;
  padding: 15px 32px;
}

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

.bonuses__phase {
  background: #010E2A;
  border: 1px solid #02439A;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonuses__phase-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255,205,0,0.3);
  line-height: 1;
}

.bonuses__phase-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 4px;
}

.bonuses__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonuses__list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.bonuses__cta-wrap {
  text-align: center;
}

.bonuses__btn-bottom {
  min-width: 300px;
  font-size: 1rem;
  padding: 16px 36px;
}

/* ===========================
   HOW TO START
   =========================== */
.howto {
  background: #010E2A;
}

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

.howto__step {
  background: linear-gradient(145deg, #002454, #010E2A);
  border: 1px solid #02439A;
  border-radius: 14px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.howto__step:hover {
  border-color: #FFCD00;
  transform: translateY(-3px);
}

.howto__step-num {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #FFCD00, #FFA800);
  color: #010E2A;
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.howto__step-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFCD00;
}

.howto__step-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.howto__cta-wrap {
  text-align: center;
}

.howto__btn {
  min-width: 300px;
  font-size: 1rem;
  padding: 16px 36px;
}

/* ===========================
   SPORTS
   =========================== */
.sports {
  background: linear-gradient(135deg, #02439A 0%, #002454 100%);
}

.sports__banner-link {
  display: block;
  max-width: 900px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
}

.sports__banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

.sports__card {
  background: rgba(1, 14, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.sports__card:hover {
  border-color: #FFCD00;
  background: rgba(255,205,0,0.06);
  transform: translateY(-4px);
}

.sports__card-icon {
  font-size: 2.2rem;
}

.sports__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFCD00;
}

.sports__card-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.sports__bonus-strip {
  background: rgba(255,205,0,0.08);
  border: 1px solid #FFCD00;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.sports__bonus-label {
  font-weight: 800;
  color: #FFCD00;
  font-size: 0.9rem;
  white-space: nowrap;
}

.sports__bonus-value {
  flex: 1;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.9rem;
  min-width: 0;
}

.sports__btn {
  white-space: nowrap;
  padding: 12px 24px;
  min-height: 44px;
}

/* ===========================
   CASINO
   =========================== */
.casino {
  background: #010E2A;
}

.casino__banner-link {
  display: block;
  max-width: 900px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #02439A;
}

.casino__banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

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

.casino__tab-item {
  background: linear-gradient(145deg, #002454, #010E2A);
  border: 1px solid #02439A;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.casino__tab-item:hover {
  border-color: #FFCD00;
  transform: translateY(-3px);
}

.casino__tab-icon {
  font-size: 2.2rem;
}

.casino__tab-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFCD00;
}

.casino__tab-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  flex: 1;
}

.casino__tab-btn {
  align-self: flex-start;
  padding: 10px 20px;
  min-height: 42px;
  font-size: 0.88rem;
}

.casino__winners {
  background: linear-gradient(135deg, #002454, #010E2A);
  border: 1px solid #02439A;
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 36px;
}

.casino__winners-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 18px;
}

.casino__winners-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino__winner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  flex-wrap: wrap;
}

.casino__winner-game {
  flex: 1;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.9rem;
  min-width: 0;
}

.casino__winner-name {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.casino__winner-amount {
  font-weight: 900;
  color: #FFCD00;
  font-size: 1rem;
  white-space: nowrap;
}

.casino__cta-wrap {
  text-align: center;
}

.casino__btn {
  min-width: 280px;
  font-size: 1rem;
  padding: 16px 36px;
}

/* ===========================
   MOBILE SECTION
   =========================== */
.mobile-section {
  background: linear-gradient(135deg, #02439A 0%, #002454 100%);
}

.mobile-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 40px;
  align-items: start;
}

.mobile-section__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-section__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mobile-section__feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.mobile-section__feature-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 6px;
}

.mobile-section__feature-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.mobile-section__download {
  background: rgba(1,14,42,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.mobile-section__download-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.mobile-section__btn {
  width: 100%;
  font-size: 0.9rem;
  padding: 13px 20px;
  min-height: 46px;
}

/* ===========================
   PAYMENTS
   =========================== */
.payments {
  background: #010E2A;
}

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

.payments__group {
  background: linear-gradient(145deg, #002454, #010E2A);
  border: 1px solid #02439A;
  border-radius: 14px;
  padding: 24px 20px;
}

.payments__group-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,205,0,0.2);
}

.payments__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payments__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.payments__item:last-child {
  border-bottom: none;
}

.payments__method {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  min-width: 0;
}

.payments__time {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFCD00;
  white-space: nowrap;
}

.payments__badge {
  font-size: 1rem;
}

.payments__limits {
  background: linear-gradient(135deg, #002454, #010E2A);
  border: 1px solid #02439A;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.payments__limits-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

.payments__limit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.payments__limit-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payments__limit-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFCD00;
}

.payments__limits-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   SUPPORT
   =========================== */
.support {
  background: linear-gradient(135deg, #002454 0%, #010E2A 100%);
}

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

.support__card {
  background: rgba(1,14,42,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.support__card:hover {
  border-color: #FFCD00;
  transform: translateY(-3px);
}

.support__icon {
  font-size: 2.4rem;
}

.support__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFCD00;
}

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

.support__btn {
  align-self: flex-start;
  padding: 10px 22px;
  min-height: 42px;
  font-size: 0.88rem;
}

.support__responsible {
  background: rgba(255,205,0,0.06);
  border: 1px solid rgba(255,205,0,0.25);
  border-radius: 14px;
  padding: 28px 24px;
}

.support__responsible-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 18px;
}

.support__responsible-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.support__responsible-item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}

.support__responsible-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  background: #010E2A;
}

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

.faq__item {
  background: linear-gradient(145deg, #002454, #010E2A);
  border: 1px solid #02439A;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item.is-open {
  border-color: #FFCD00;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #FFFFFF;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq__question:hover {
  color: #FFCD00;
}

.faq__arrow {
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #FFCD00;
}

.faq__item.is-open .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.faq__item.is-open .faq__answer {
  max-height: 400px;
  padding: 0 22px 18px;
}

/* ===========================
   FINAL CTA
   =========================== */
.final-cta {
  background: linear-gradient(135deg, #02439A 0%, #002454 100%);
  text-align: center;
}

.final-cta__banner-link {
  display: block;
  max-width: 900px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
}

.final-cta__banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.final-cta__content {
  max-width: 780px;
  margin: 0 auto;
}

.final-cta__badge {
  display: inline-block;
  background: rgba(255,205,0,0.12);
  border: 1px solid rgba(255,205,0,0.4);
  color: #FFCD00;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.final-cta__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.final-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 28px;
}

.final-cta__bonus-box {
  background: rgba(255,205,0,0.08);
  border: 2px solid #FFCD00;
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 28px;
}

.final-cta__bonus-text {
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  font-weight: 900;
  color: #FFCD00;
  line-height: 1.3;
}

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

.final-cta__btn {
  min-width: 250px;
  font-size: 1rem;
  padding: 16px 32px;
}

.final-cta__disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #000A1A;
  border-top: 2px solid #002454;
  padding: 56px 0 28px;
}

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

.footer__logo-link {
  display: block;
  margin-bottom: 16px;
}

.footer__logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer__brand-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__licenses {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer__license {
  background: rgba(2,67,154,0.4);
  border: 1px solid #02439A;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.footer__links-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__link:hover {
  color: #FFCD00;
}

.footer__middle {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

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

.footer__badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
}

.footer__badge--age {
  background: #CC0000;
  border-color: #CC0000;
  color: #fff;
}

.footer__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer__responsible {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ===========================
   CATFISH BAR
   =========================== */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: linear-gradient(90deg, #02439A 0%, #010E2A 100%);
  border-top: 2px solid #FFCD00;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  transition: transform 0.35s ease;
}

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

.catfish__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.catfish__text {
  flex: 1;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 800;
  color: #FFCD00;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-width: 0;
}

.catfish__btn {
  flex-shrink: 0;
  padding: 10px 22px;
  min-height: 42px;
  font-size: 0.88rem;
}

.catfish__close {
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  padding: 0;
}

.catfish__close:hover {
  background: rgba(255,255,255,0.2);
}

/* ===========================
   EXIT POPUP
   =========================== */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.exit-popup.is-visible {
  display: flex;
}

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(3px);
}

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #002454, #010E2A);
  border: 2px solid #FFCD00;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 560px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  overflow-y: auto;
  max-height: 90vh;
}

.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  padding: 0;
}

.exit-popup__close:hover {
  background: rgba(255,255,255,0.2);
}

.exit-popup__badge {
  display: inline-block;
  background: rgba(255,205,0,0.12);
  border: 1px solid rgba(255,205,0,0.4);
  color: #FFCD00;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.exit-popup__img-link {
  display: block;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
}

.exit-popup__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  max-height: 200px;
  object-position: center;
}

.exit-popup__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.3;
}

.exit-popup__bonus {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFCD00;
  margin-bottom: 22px;
  line-height: 1.4;
}

.exit-popup__btn {
  width: 100%;
  font-size: 1rem;
  padding: 15px 28px;
  min-height: 50px;
}

.exit-popup__note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

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

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

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

  .mobile-section__download {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-section__btn {
    width: auto;
    flex: 1;
    min-width: 180px;
  }

  .nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  /* Header mobile */
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #010E2A;
    border-bottom: 2px solid #002454;
    padding: 12px 16px 16px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 899;
    overflow: visible;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    gap: 4px;
    flex-wrap: wrap;
  }

  .nav__link {
    padding: 10px 16px;
    display: block;
    width: 100%;
    font-size: 1rem;
  }

  .burger {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  /* Hero */
  .hero__banner {
    max-height: 260px;
  }

  .hero__banner-img {
    max-height: 260px;
    object-position: center;
  }

  .hero__bonus-box {
    padding: 18px 16px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    min-width: unset;
    width: 100%;
  }

  /* Grids → 1 col */
  .advantages__grid,
  .bonuses__phases,
  .howto__steps,
  .sports__grid,
  .casino__tab-group,
  .payments__grid,
  .support__grid,
  .support__responsible-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__brand {
    grid-column: auto;
  }

  /* Buttons full width in CTA sections */
  .bonuses__cta-wrap .btn,
  .howto__cta-wrap .btn,
  .casino__cta-wrap .btn,
  .final-cta__buttons .btn {
    width: 100%;
    min-width: unset;
  }

  .final-cta__buttons {
    flex-direction: column;
  }

  .sports__bonus-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .sports__btn {
    width: 100%;
  }

  .bonuses__btn,
  .bonuses__btn-bottom {
    width: 100%;
    min-width: unset;
  }

  .payments__limits-grid {
    gap: 20px;
  }

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

  .mobile-section__btn {
    width: 100%;
  }
}

/* Small mobile: ≤480px */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .hero__bonus-text {
    font-size: 1rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .header__logo {
    height: 34px;
    max-width: 130px;
  }

  .exit-popup__box {
    padding: 28px 18px;
  }

  .exit-popup__title {
    font-size: 1.15rem;
  }

  .catfish__inner {
    flex-wrap: nowrap;
  }

  .catfish__btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .casino__winner-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ab-hub {
  background: linear-gradient(160deg, #03102d 0%, #061a3f 50%, #03102d 100%);
  color: #e8eef9;
  padding: 64px 18px;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}

.ab-hub::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 205, 0, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ab-hub::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(2, 67, 154, 0.45), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ab-hub > * {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.ab-hub__head {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(255, 205, 0, 0.35);
}

.ab-hub__crumbs {
  margin-bottom: 22px;
}

.ab-hub__crumbs-list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: rgba(232, 238, 249, 0.65);
}

.ab-hub__crumbs-item {
  display: inline-flex;
  align-items: center;
}

.ab-hub__crumbs-item + .ab-hub__crumbs-item::before {
  content: "›";
  margin: 0 10px;
  color: #ffcd00;
  font-weight: 700;
}

.ab-hub__crumbs-link {
  color: #ffcd00;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.2s ease;
}

.ab-hub__crumbs-link:hover {
  border-bottom-color: #ffcd00;
}

.ab-hub__title {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 900;
  color: #ffcd00;
  margin: 0 0 18px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.ab-hub__lead {
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  color: rgba(232, 238, 249, 0.88);
  max-width: 820px;
  margin: 0 auto;
}

.ab-hub__lead strong,
.ab-hub__lead em {
  color: #ffcd00;
}

.ab-hub__h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 800;
  color: #ffcd00;
  margin: 0 0 18px;
  line-height: 1.3;
  position: relative;
  padding-left: 18px;
}

.ab-hub__h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ffcd00, #ffa800);
}

.ab-hub__h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffe98a;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.ab-hub p {
  margin: 0 0 14px;
  color: rgba(232, 238, 249, 0.85);
}

.ab-hub p strong {
  color: #ffd84d;
  font-weight: 700;
}

.ab-hub p em {
  color: #ffe98a;
  font-style: italic;
}

.ab-hub__intro,
.ab-hub__providers,
.ab-hub__rtp,
.ab-hub__live,
.ab-hub__jackpots,
.ab-hub__sports,
.ab-hub__loyalty,
.ab-hub__bonus-rules,
.ab-hub__deposit,
.ab-hub__security,
.ab-hub__bankroll,
.ab-hub__mobile-tech,
.ab-hub__bingo,
.ab-hub__perfil,
.ab-hub__support-extra,
.ab-hub__compare {
  margin-bottom: 42px;
  padding: 28px 26px;
  background: rgba(2, 67, 154, 0.18);
  border: 1px solid rgba(255, 205, 0, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(2px);
}

.ab-hub__intro {
  background: linear-gradient(135deg, rgba(2, 67, 154, 0.32), rgba(3, 16, 45, 0.4));
}

.ab-hub__providers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.ab-hub__provider {
  background: rgba(3, 16, 45, 0.55);
  border: 1px solid rgba(255, 205, 0, 0.22);
  border-radius: 10px;
  padding: 18px 18px 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.ab-hub__provider:hover {
  transform: translateY(-3px);
  border-color: #ffcd00;
  background: rgba(2, 67, 154, 0.4);
}

.ab-hub__provider p {
  font-size: 0.92rem;
  margin: 0;
}

.ab-hub__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
}

.ab-hub__list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  color: rgba(232, 238, 249, 0.88);
  border-bottom: 1px dashed rgba(255, 205, 0, 0.12);
}

.ab-hub__list li:last-child {
  border-bottom: none;
}

.ab-hub__list li::before {
  content: "◆";
  position: absolute;
  left: 6px;
  top: 9px;
  color: #ffcd00;
  font-size: 0.7rem;
}

.ab-hub__list--num {
  counter-reset: ablist;
}

.ab-hub__list--num li {
  counter-increment: ablist;
  padding-left: 42px;
}

.ab-hub__list--num li::before {
  content: counter(ablist);
  left: 0;
  top: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcd00, #ffa800);
  color: #03102d;
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-hub__table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 14px;
  font-size: 0.9rem;
  background: rgba(3, 16, 45, 0.5);
  border-radius: 10px;
  overflow: hidden;
  display: block;
  overflow-x: auto;
  white-space: normal;
}

.ab-hub__table thead {
  background: linear-gradient(135deg, #02439a, #03102d);
}

.ab-hub__table th {
  padding: 14px 14px;
  text-align: left;
  font-weight: 800;
  color: #ffcd00;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 205, 0, 0.4);
}

.ab-hub__table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 205, 0, 0.1);
  vertical-align: top;
  color: rgba(232, 238, 249, 0.88);
}

.ab-hub__table tr:last-child td {
  border-bottom: none;
}

.ab-hub__table tr:nth-child(even) td {
  background: rgba(2, 67, 154, 0.18);
}

.ab-hub__table strong {
  color: #ffd84d;
}

.ab-hub__responsible {
  margin: 48px 0;
  padding: 30px 28px;
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.12), rgba(3, 16, 45, 0.5));
  border: 2px solid rgba(255, 80, 80, 0.35);
  border-radius: 14px;
  position: relative;
}

.ab-hub__responsible::before {
  content: "18+";
  position: absolute;
  top: -16px;
  left: 24px;
  background: #cc0000;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.ab-hub__responsible .ab-hub__h3 {
  color: #ff8b8b;
}

.ab-hub__responsible .ab-hub__h3::before {
  background: linear-gradient(180deg, #ff8b8b, #cc0000);
}

.ab-hub__responsible .ab-hub__list li::before {
  color: #ff8b8b;
}

.ab-hub__foot {
  text-align: center;
  margin-top: 48px;
  padding: 36px 28px;
  background: linear-gradient(135deg, rgba(255, 205, 0, 0.08), rgba(2, 67, 154, 0.3));
  border: 1px solid rgba(255, 205, 0, 0.4);
  border-radius: 16px;
}

.ab-hub__foot .ab-hub__h3 {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 18px;
}

.ab-hub__foot .ab-hub__h3::before {
  display: none;
}

.ab-hub__foot p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
}

@media (min-width: 600px) {
  .ab-hub {
    padding: 80px 28px;
  }

  .ab-hub__providers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .ab-hub__intro,
  .ab-hub__providers,
  .ab-hub__rtp,
  .ab-hub__live,
  .ab-hub__jackpots,
  .ab-hub__sports,
  .ab-hub__loyalty,
  .ab-hub__bonus-rules,
  .ab-hub__deposit,
  .ab-hub__security,
  .ab-hub__bankroll,
  .ab-hub__mobile-tech,
  .ab-hub__bingo,
  .ab-hub__perfil,
  .ab-hub__support-extra,
  .ab-hub__compare {
    padding: 34px 32px;
  }
}

@media (min-width: 900px) {
  .ab-hub {
    padding: 96px 40px;
  }

  .ab-hub__providers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ab-hub__table {
    display: table;
    overflow-x: visible;
  }

  .ab-hub__intro,
  .ab-hub__providers,
  .ab-hub__rtp,
  .ab-hub__live,
  .ab-hub__jackpots,
  .ab-hub__sports,
  .ab-hub__loyalty,
  .ab-hub__bonus-rules,
  .ab-hub__deposit,
  .ab-hub__security,
  .ab-hub__bankroll,
  .ab-hub__mobile-tech,
  .ab-hub__bingo,
  .ab-hub__perfil,
  .ab-hub__support-extra,
  .ab-hub__compare {
    padding: 40px 42px;
  }

  .ab-hub__h3 {
    padding-left: 22px;
  }
}

@media (min-width: 1200px) {
  .ab-hub__providers-grid {
    gap: 22px;
  }

  .ab-hub__list li {
    font-size: 1rem;
  }

  .ab-hub__table {
    font-size: 0.95rem;
  }
}