* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFFFFF;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

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

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

ul {
  list-style: none;
}

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

.header {
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.header__logo {
  flex-shrink: 0;
  max-width: 150px;
}

.header__logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0;
}

.header__nav::-webkit-scrollbar {
  display: none;
}

.header__nav-link {
  white-space: nowrap;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.header__nav-link:hover {
  color: #00823B;
}

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.header__btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header__burger span {
  width: 25px;
  height: 3px;
  background-color: #00823B;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn--primary {
  background: linear-gradient(135deg, #00823B 0%, #00a84a 100%);
  color: #FFFFFF;
  border-color: #00823B;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #006d31 0%, #008f3f 100%);
}

.btn--secondary {
  background: #FFFFFF;
  color: #00823B;
  border-color: #00823B;
}

.btn--secondary:hover {
  background: #00823B;
  color: #FFFFFF;
}

.btn--ghost {
  background: transparent;
  color: #00823B;
  border-color: #00823B;
  box-shadow: none;
}

.btn--ghost:hover {
  background: #00823B;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 130, 59, 0.3);
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn--outline:hover {
  background: #FFFFFF;
  color: #00823B;
}

.btn--large {
  padding: 18px 36px;
  font-size: 18px;
  min-height: 56px;
}

.btn--small {
  padding: 10px 20px;
  font-size: 14px;
  min-height: 44px;
}

.section {
  padding: 80px 0;
  overflow: hidden;
  max-width: 100%;
}

.section--dark {
  background-color: #f8f9fa;
}

.section--primary {
  background: linear-gradient(135deg, #00823B 0%, #00a84a 100%);
  color: #FFFFFF;
}

.section__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section--primary .section__title,
.section--dark .section__title {
  color: inherit;
}

.section__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: contain;
  max-height: 500px;
}

.hero {
  background: linear-gradient(135deg, #00823B 0%, #00a84a 100%);
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
  max-width: 100%;
}

.hero__media {
  width: 100%;
  overflow: hidden;
  max-width: 100%;
}

.hero__media a {
  display: block;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 600px;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

.advantage-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 0;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 130, 59, 0.15);
  border-color: #00823B;
}

.advantage-card__icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.advantage-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.advantage-card__text {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.bonuses__media {
  margin-bottom: 40px;
  max-width: 100%;
  overflow: hidden;
}

.bonuses__media a {
  display: block;
  width: 100%;
}

.bonuses__headline {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__intro {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.bonus-list {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.bonus-item {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #00823B;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-width: 0;
}

.bonus-item__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.bonus-item__number {
  background: #00823B;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}

.bonus-item__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonus-item__details {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.bonuses__highlight {
  background: linear-gradient(135deg, #00823B 0%, #00a84a 100%);
  color: #FFFFFF;
  padding: 35px;
  border-radius: 12px;
  margin-bottom: 35px;
  box-shadow: 0 6px 20px rgba(0, 130, 59, 0.3);
}

.bonuses__highlight-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__highlight p {
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.bonuses__cta {
  text-align: center;
}

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

.step-card {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 0;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 130, 59, 0.15);
  border-color: #00823B;
}

.step-card__number {
  background: linear-gradient(135deg, #00823B 0%, #00a84a 100%);
  color: #FFFFFF;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 25px;
  box-shadow: 0 4px 12px rgba(0, 130, 59, 0.3);
}

.step-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.step-card__text {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.sports__media {
  margin-bottom: 40px;
  max-width: 100%;
  overflow: hidden;
}

.sports__media a {
  display: block;
  width: 100%;
}

.sports__intro {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.sports__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.sports__item {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-width: 0;
}

.sports__item-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sports__item p {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.sports__features {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.sports__cta {
  text-align: center;
}

.casino__media {
  margin-bottom: 40px;
  max-width: 100%;
  overflow: hidden;
}

.casino__media a {
  display: block;
  width: 100%;
}

.casino__headline {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__intro {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.game-categories {
  display: grid;
  gap: 25px;
  margin-bottom: 35px;
}

.game-category {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #00823B;
  min-width: 0;
}

.game-category__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.game-category p {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.casino__providers {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.casino__providers h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__providers p {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.casino__demo {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.casino__cta {
  text-align: center;
}

.mobile__intro {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.mobile__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.mobile__feature {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-width: 0;
}

.mobile__feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mobile__feature p {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.mobile__tip {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.mobile__cta {
  text-align: center;
}

.payments__intro {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.payment-method {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-width: 0;
}

.payment-method__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payment-method p {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.payments__info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.payments__info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payments__list {
  list-style: none;
  padding: 0;
}

.payments__list li {
  padding: 8px 0;
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.payments__security {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.payments__cta {
  text-align: center;
}
.support__intro {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.8;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.support__channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.support__channel {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  min-width: 0;
}

.support__channel-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.support__channel-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support__channel p {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.support__features {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
}

.support__features h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support__list {
  list-style: none;
  padding: 0;
}

.support__list li {
  padding: 8px 0;
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.support__cta {
  text-align: center;
}

.faq__content {
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #00823B;
  min-width: 0;
}

.faq__question {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq__answer {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.final-cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta__title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #FFFFFF;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.final-cta__text {
  font-size: 20px;
  margin-bottom: 35px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.final-cta__bonus-highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
}

.final-cta__bonus-text {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.final-cta__bonus-subtext {
  font-size: 18px;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.footer {
  background: #1a1a1a;
  color: #FFFFFF;
  padding-top: 60px;
}

.footer__main {
  padding-bottom: 40px;
}

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

.footer__column {
  min-width: 0;
}

.footer__logo {
  display: inline-block;
  max-width: 150px;
  margin-bottom: 20px;
}

.footer__logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.footer__social {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer__social-link {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.footer__social-link:hover {
  transform: scale(1.2);
}

.footer__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__list {
  list-style: none;
  padding: 0;
}

.footer__link {
  display: block;
  padding: 8px 0;
  color: #cccccc;
  transition: color 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__link:hover {
  color: #00823B;
}

.footer__payment {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__payment-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__payment-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.footer__payment-icon {
  font-size: 16px;
  color: #cccccc;
  white-space: nowrap;
}

.footer__responsible {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__responsible-content {
  text-align: center;
}

.footer__responsible-text {
  font-size: 16px;
  margin-bottom: 15px;
  color: #ffc107;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.footer__responsible-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__responsible-link {
  color: #cccccc;
  font-size: 14px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer__responsible-link:hover {
  color: #00823B;
}

.footer__bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal {
  font-size: 14px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.footer__copyright {
  font-size: 14px;
  color: #999;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #00823B 0%, #00a84a 100%);
  color: #FFFFFF;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.catfish.hidden {
  transform: translateY(100%);
}

.catfish__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.catfish__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

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

.catfish__content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: calc(100% - 60px);
}

.catfish__text {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup.active {
  display: flex;
}

.exit-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.exit-popup__content {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.exit-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f0f0f0;
  border: none;
  color: #333;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.exit-popup__close:hover {
  background: #e0e0e0;
}

.exit-popup__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #00823B;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-popup__text {
  font-size: 18px;
  margin-bottom: 25px;
  color: #666;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.exit-popup__bonus {
  background: linear-gradient(135deg, #00823B 0%, #00a84a 100%);
  color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.exit-popup__bonus-main {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-popup__bonus-sub {
  font-size: 16px;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .header__nav {
    flex: 1;
    min-width: 0;
  }

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

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

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

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1001;
    gap: 20px;
    align-items: flex-start;
  }

  .header__nav.active {
    left: 0;
  }

  .header__nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #f0f0f0;
  }

  .header__burger {
    display: flex;
    z-index: 1002;
  }

  .header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .header__burger.active span:nth-child(2) {
    opacity: 0;
  }

  .header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero__subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero__cta {
    flex-direction: column;
    gap: 15px;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sports__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mobile__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support__channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .catfish__container {
    flex-direction: column;
    padding: 15px 50px 15px 20px;
  }

  .catfish__content {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
  }

  .catfish__text {
    font-size: 16px;
    text-align: center;
  }

  .exit-popup__content {
    padding: 30px 20px;
  }

  .exit-popup__title {
    font-size: 24px;
  }

  .exit-popup__text {
    font-size: 16px;
  }

  .exit-popup__bonus-main {
    font-size: 20px;
  }

  .final-cta__title {
    font-size: 28px;
  }

  .final-cta__text {
    font-size: 16px;
  }

  .final-cta__bonus-text {
    font-size: 22px;
  }

  .final-cta__bonus-subtext {
    font-size: 16px;
  }

  .final-cta__buttons {
    flex-direction: column;
    gap: 15px;
  }

  .final-cta__buttons .btn {
    width: 100%;
  }

  .bonuses__headline,
  .casino__headline {
    font-size: 24px;
  }

  .section--primary .btn,
  .section .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .header__container {
    padding: 0 15px;
  }

  .header__logo {
    max-width: 120px;
  }

  .header__actions {
    gap: 8px;
  }

  .header__btn {
    padding: 8px 15px;
    font-size: 13px;
  }

  .hero__container {
    padding: 40px 15px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .section__title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .btn--large {
    padding: 16px 28px;
    font-size: 16px;
  }

  .advantage-card,
  .step-card,
  .sports__item,
  .mobile__feature,
  .payment-method,
  .support__channel {
    padding: 20px;
  }

  .bonus-item,
  .game-category,
  .faq__item {
    padding: 20px;
  }

  .step-card__number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .exit-popup {
    padding: 15px;
  }

  .exit-popup__content {
    padding: 25px 15px;
  }

  .catfish__text {
    font-size: 14px;
  }

  .footer__payment-icons {
    gap: 15px;
  }

  .footer__payment-icon {
    font-size: 14px;
  }
}