
* {
  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;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.header {
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 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;
  display: block;
}

.header__logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

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

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

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

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header__nav {
  display: flex;
  gap: 15px;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 0;
  flex-shrink: 1;
}

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

.header__nav-link {
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s;
  font-size: 14px;
}

.header__nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.btn {
  display: inline-block;
  padding: 12px 20px;
  font-weight: 800;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  min-height: 48px;
  border: 2px solid transparent;
  font-size: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.4;
}

.btn--primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  border: 2px solid #16a34a;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

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

.btn--large {
  padding: 16px 32px;
  font-size: 17px;
  min-height: 56px;
}

.hero {
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 50%, #22c55e 100%);
  color: #fff;
  overflow: hidden;
}

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

.hero__media a {
  display: block;
}

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

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

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__bonus {
  margin-bottom: 40px;
}

.hero__bonus-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__bonus-amount {
  font-size: 4rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.section {
  padding: 80px 0;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section__intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.advantages {
  background: #f8f9fa;
}

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

.advantages__card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 0;
}

.advantages__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.advantages__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.advantages__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.advantages__card-text {
  color: #666;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.bonuses__text {
  min-width: 0;
}

.bonuses__text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.bonuses__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 0;
}

.bonuses__media a {
  display: block;
}

.bonuses__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

.bonuses__highlight {
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.bonuses__highlight-text {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.howto {
  background: #f8f9fa;
}

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

.howto__step {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.howto__step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.howto__step-content {
  flex: 1;
  min-width: 0;
}

.howto__step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.howto__step-text {
  color: #555;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.howto__cta {
  text-align: center;
}

.sports__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.sports__text {
  min-width: 0;
}

.sports__text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.sports__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 0;
}

.sports__media a {
  display: block;
}

.sports__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

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

.sports__feature {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  min-width: 0;
}

.sports__feature h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sports__feature p {
  color: #666;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sports__cta {
  text-align: center;
}

.casino {
  background: #f8f9fa;
}

.casino__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.casino__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 0;
}

.casino__media a {
  display: block;
}

.casino__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

.casino__text {
  min-width: 0;
}

.casino__text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

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

.casino__category {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  min-width: 0;
}

.casino__category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.casino__category-icon {
  font-size: 2.5rem;
}

.casino__category-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__category-count {
  font-size: 0.9rem;
  color: #666;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__cta {
  text-align: center;
}

.mobile__content {
  margin-bottom: 50px;
}

.mobile__text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

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

.mobile__feature {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  min-width: 0;
}

.mobile__feature h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mobile__feature p {
  color: #666;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mobile__cta {
  text-align: center;
}

.payments {
  background: #f8f9fa;
}

.payments__content {
  margin-bottom: 50px;
}

.payments__text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

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

.payments__method {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-width: 0;
}

.payments__method h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payments__method p {
  color: #666;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payments__cta {
  text-align: center;
}

.support__content {
  margin-bottom: 50px;
}

.support__text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

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

.support__channel {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  min-width: 0;
}

.support__channel h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support__channel p {
  margin-bottom: 20px;
  color: #666;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq {
  background: #f8f9fa;
}

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

.faq__item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a5f3a;
  cursor: pointer;
  transition: background 0.3s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq__question:hover {
  background: #f8f9fa;
}

.faq__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: #22c55e;
  transition: transform 0.3s;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 1000px;
}

.faq__answer p {
  padding: 0 25px 25px;
  line-height: 1.8;
  color: #555;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.cta-final {
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  color: #fff;
  text-align: center;
}

.cta-final__content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cta-final__text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cta-final__bonus {
  margin-bottom: 35px;
}

.cta-final__bonus-text {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cta-final__bonus-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 60px 0 30px;
}

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

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

.footer__logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer__description {
  line-height: 1.7;
  color: #aaa;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.footer__column-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  color: #aaa;
  transition: color 0.3s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__list a:hover {
  color: #22c55e;
}

.footer__payment {
  margin-bottom: 40px;
  text-align: center;
}

.footer__payment-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__payment-methods {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__payment-methods span {
  background: #2a2a2a;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.footer__legal p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #888;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__disclaimer {
  max-width: 700px;
  line-height: 1.6;
}

.footer__responsible p {
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.footer__badges span {
  background: #2a2a2a;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a5f3a 0%, #2d8659 100%);
  color: #fff;
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s;
  max-width: calc(100% - 20px);
  margin: 0 auto;
  padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

.catfish.visible {
  transform: translateY(0);
}

.catfish__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.3s;
}

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

.catfish__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.catfish__text {
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
  min-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.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.visible {
  display: flex;
}

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

.exit-popup__content {
  position: relative;
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: popupSlide 0.4s ease;
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.exit-popup__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1a5f3a;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-popup__text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #555;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-popup__bonus {
  margin-bottom: 30px;
}

.exit-popup__bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #22c55e;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .header__nav {
    gap: 10px;
  }
  
  .header__nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  .bonuses__content,
  .sports__content,
  .casino__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .casino__categories,
  .sports__features,
  .payments__methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  .mobile__features {
    grid-template-columns: 1fr;
  }
  
  .support__channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
  
  .header__nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: #1a5f3a;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s;
    max-height: calc(100vh - 69px);
    overflow-y: auto;
  }
  
  .header__nav.active {
    transform: translateX(0);
  }
  
  .header__nav-link {
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .header__actions {
    display: none;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__bonus-text {
    font-size: 1.2rem;
  }
  
  .hero__bonus-amount {
    font-size: 2.5rem;
  }
  
  .hero__cta {
    flex-direction: column;
  }
  
  .hero__cta .btn {
    width: 100%;
  }
  
  .section__title {
    font-size: 1.8rem;
  }
  
  .section__intro {
    font-size: 1rem;
  }
  
  .advantages__grid {
    grid-template-columns: 1fr;
  }
  
  .howto__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .casino__categories,
  .sports__features,
  .payments__methods {
    grid-template-columns: 1fr;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer__bottom {
    flex-direction: column;
  }
  
  .catfish__content {
    flex-direction: column;
    text-align: center;
  }
  
  .catfish__text {
    padding-right: 30px;
  }
  
  .exit-popup__content {
    padding: 40px 25px;
  }
  
  .exit-popup__title {
    font-size: 1.5rem;
  }
  
  .exit-popup__bonus-amount {
    font-size: 2.2rem;
  }
  
  .cta-final__title {
    font-size: 1.8rem;
  }
  
  .cta-final__bonus-amount {
    font-size: 2.5rem;
  }
  
  .cta-final__buttons {
    flex-direction: column;
  }
  
  .cta-final__buttons .btn {
    width: 100%;
  }
  
  .section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero__container {
    padding: 40px 20px;
  }
  
  .hero__title {
    font-size: 1.6rem;
  }
  
  .hero__bonus-amount {
    font-size: 2rem;
  }
  
  .section__title {
    font-size: 1.5rem;
  }
  
  .btn {
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .btn--large {
    font-size: 15px;
    padding: 14px 20px;
  }
}