* {
  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: #FFFFFF;
  background: #000B24;
  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 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

.header {
  background: #262F45;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 16px 0;
}

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

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

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

@media (max-width: 768px) {
  .header__logo-img {
    height: 40px;
  }
}

.nav {
  flex-grow: 1;
}

.nav__list {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .nav__list {
    gap: 20px;
  }
}

.nav__link {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger__line {
  width: 28px;
  height: 3px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 3px;
}

@media (max-width: 968px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #262F45;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav.active {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .burger {
    display: flex;
  }

  .burger.active .burger__line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger.active .burger__line:nth-child(2) {
    opacity: 0;
  }

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--primary {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
  color: #000B24;
  border-color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn--ghost {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFD700;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.btn--ghost:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

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

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

@media (max-width: 768px) {
  .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .btn--large {
    padding: 18px 28px;
  }
}

.hero {
  background: linear-gradient(135deg, #000B24 0%, #1a2444 100%);
  padding: 0 0 60px 0;
  position: relative;
  overflow: hidden;
}

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

.hero__media a {
  display: block;
}

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

@media (max-width: 768px) {
  .hero__image {
    max-height: 300px;
  }
}

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

.hero__title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: #E0E0E0;
  font-weight: 400;
}

.hero__bonus {
  background: linear-gradient(135deg, #262F45 0%, #1a2338 100%);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  border: 3px solid #FFD700;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.hero__bonus-label {
  display: block;
  font-size: 18px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__bonus-amount {
  font-size: 32px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

@media (max-width: 768px) {
  .hero {
    padding: 0 0 40px 0;
  }

  .hero__title {
    font-size: 36px;
  }

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

  .hero__bonus {
    padding: 24px;
    margin-bottom: 30px;
  }

  .hero__bonus-amount {
    font-size: 24px;
  }

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

.section {
  padding: 80px 0;
  overflow-x: hidden;
}

.section--alt {
  background: #262F45;
}

.section__title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section__intro {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
  color: #E0E0E0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .section__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .section__intro {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

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

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

@media (max-width: 600px) {
  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.advantage-card {
  background: #262F45;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 0;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.advantage-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.advantage-card__text {
  font-size: 15px;
  color: #C0C0C0;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.advantages__description {
  max-width: 1000px;
  margin: 0 auto;
}

.advantages__description p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.advantages__description p:last-child {
  margin-bottom: 0;
}

.bonuses__featured {
  margin-bottom: 60px;
}

.bonus-hero {
  background: linear-gradient(135deg, #1a2444 0%, #0d1829 100%);
  border-radius: 16px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  border: 3px solid #FFD700;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
  min-width: 0;
}

@media (max-width: 968px) {
  .bonus-hero {
    grid-template-columns: 1fr;
    padding: 35px;
    gap: 30px;
  }
}

.bonus-hero__badge {
  display: inline-block;
  background: #FFD700;
  color: #000B24;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-hero__title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonus-hero__description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonus-hero__media {
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.bonus-hero__media a {
  display: block;
}

.bonus-hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 350px;
}

@media (max-width: 768px) {
  .bonus-hero__title {
    font-size: 26px;
  }

  .bonus-hero__description {
    font-size: 15px;
  }
}

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

@media (max-width: 768px) {
  .bonuses__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.bonus-card {
  background: #1a2444;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.bonus-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
  flex-wrap: wrap;
}

.bonus-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonus-card__amount {
  font-size: 28px;
  font-weight: 900;
  color: #FFD700;
  flex-shrink: 0;
}

.bonus-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__info {
  max-width: 1000px;
  margin: 0 auto;
}

.bonuses__info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.bonuses__info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__info p:last-child {
  margin-bottom: 0;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
  min-width: 0;
}

.step:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
}

.step__number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: #000B24;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .step__number {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}

.step__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.step__text {
  font-size: 16px;
  line-height: 1.7;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 600px) {
  .step__title {
    font-size: 20px;
  }

  .step__text {
    font-size: 15px;
  }
}

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

.howto__footer p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #E0E0E0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.sports__intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: center;
  min-width: 0;
}

@media (max-width: 968px) {
  .sports__intro {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.sports__intro-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sports__intro-text p:last-child {
  margin-bottom: 0;
}

.sports__intro-media {
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sports__intro-media a {
  display: block;
}

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

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

@media (max-width: 768px) {
  .sports__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.feature-box {
  background: #1a2444;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 0;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.feature-box__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.feature-box__text {
  font-size: 15px;
  line-height: 1.7;
  color: #C0C0C0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sports__cta {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.sports__cta p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: center;
  min-width: 0;
}

@media (max-width: 968px) {
  .casino__intro {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.casino__intro-media {
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.casino__intro-media a {
  display: block;
}

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

.casino__intro-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__intro-text p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .casino__categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.category-card {
  background: #262F45;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
}

.category-card__icon {
  font-size: 55px;
  margin-bottom: 20px;
}

.category-card__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.category-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 25px;
  flex-grow: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__info {
  max-width: 1000px;
  margin: 0 auto 40px;
}

.casino__info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-align: center;
}

.casino__info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__info p:last-child {
  margin-bottom: 0;
}

.casino__cta {
  text-align: center;
}

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

.mobile__content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mobile__content p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 968px) {
  .mobile__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .mobile__features {
    grid-template-columns: 1fr;
  }
}

.mobile-feature {
  background: #1a2444;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 0;
}

.mobile-feature:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.mobile-feature__icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.mobile-feature__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.mobile-feature__text {
  font-size: 14px;
  line-height: 1.6;
  color: #C0C0C0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.mobile__download p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #E0E0E0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

@media (max-width: 968px) {
  .payments__methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .payments__methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.payment-method {
  background: #262F45;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 0;
}

.payment-method:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.payment-method__icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.payment-method__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.payment-method__text {
  font-size: 14px;
  line-height: 1.6;
  color: #C0C0C0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payments__info {
  max-width: 1000px;
  margin: 0 auto;
}

.payments__info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.payments__info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payments__info p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .support__channels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.support-channel {
  background: #1a2444;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.support-channel:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.support-channel__icon {
  font-size: 55px;
  margin-bottom: 20px;
}

.support-channel__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.support-channel__text {
  font-size: 15px;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 25px;
  flex-grow: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support__info {
  max-width: 1000px;
  margin: 0 auto;
}

.support__info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.support__info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support__info p:last-child {
  margin-bottom: 0;
}

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

.faq-item {
  background: #262F45;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #FFD700;
}

.faq-item__question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-item__question:hover {
  color: #FFD700;
}

.faq-item__icon {
  font-size: 28px;
  font-weight: 400;
  color: #FFD700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 1000px;
}

.faq-item__answer p {
  padding: 0 30px 25px;
  font-size: 15px;
  line-height: 1.8;
  color: #C0C0C0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .faq-item__question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-item__answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

.final-cta {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #1a2444 0%, #0d1829 100%);
}

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

.final-cta__title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-cta__text {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.final-cta__bonus {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  color: #000B24;
  padding: 25px 35px;
  border-radius: 12px;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.final-cta__features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta__feature {
  font-size: 16px;
  font-weight: 700;
  color: #FFD700;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 60px 0;
  }

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

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

  .final-cta__bonus {
    font-size: 22px;
    padding: 20px 25px;
  }

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

  .final-cta__features {
    gap: 15px;
  }

  .final-cta__feature {
    font-size: 14px;
  }
}

.footer {
  background: #0a1020;
  padding: 60px 0 30px;
  border-top: 3px solid #FFD700;
}

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

@media (max-width: 968px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer__description {
  font-size: 15px;
  line-height: 1.7;
  color: #B0B0B0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

@media (max-width: 768px) {
  .footer__links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer__heading {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: #B0B0B0;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: #FFD700;
  padding-left: 5px;
}

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

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

.payment-icon {
  font-size: 40px;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
  font-size: 14px;
  color: #909090;
  margin-bottom: 10px;
}

.footer__disclaimer {
  font-size: 13px;
  color: #808080;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-width: 100%;
}

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

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

.catfish__close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #000B24;
  color: #FFFFFF;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.catfish__close:hover {
  background: #FF0000;
  transform: rotate(90deg);
}

.catfish__text {
  flex: 1;
  font-size: 16px;
  font-weight: 900;
  color: #000B24;
  min-width: 200px;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .catfish {
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .catfish__content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

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

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

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

.exit-popup__content {
  position: relative;
  background: linear-gradient(135deg, #262F45 0%, #1a2338 100%);
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border: 3px solid #FFD700;
  box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
  animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.exit-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.exit-popup__close:hover {
  background: #FF0000;
  border-color: #FF0000;
  transform: rotate(90deg);
}

.exit-popup__title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.exit-popup__bonus {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
  color: #000B24;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-popup__text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #D0D0D0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 600px) {
  .exit-popup__content {
    padding: 35px 25px;
  }

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

  .exit-popup__bonus {
    font-size: 18px;
    padding: 16px 20px;
  }

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