/* assets/styles.css */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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: #1a1a1a;
  background-color: #F0F1F2;
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
}

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

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

ul, ol {
  list-style: none;
}

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

.btn--primary {
  background: linear-gradient(135deg, #C50003 0%, #A00002 100%);
  color: #ffffff;
  border-color: #C50003;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #A00002 0%, #800001 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 0, 3, 0.4);
}

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

.btn--ghost {
  background: #ffffff;
  color: #C50003;
  border-color: #C50003;
  box-shadow: 0 4px 12px rgba(197, 0, 3, 0.2);
}

.btn--ghost:hover {
  background: #C50003;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 0, 3, 0.35);
}

.btn--ghost:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(197, 0, 3, 0.25);
}

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

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

@media (max-width: 768px) {
  .btn {
    width: 100%;
    min-height: 50px;
    padding: 15px 20px;
    font-size: 15px;
  }
  
  .btn--large {
    min-height: 54px;
    font-size: 16px;
  }
}

/* ===== HEADER ===== */
.header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.header__logoImg {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.header__burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #C50003;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.header__navLink {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.header__navLink:hover {
  color: #C50003;
}

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

@media (max-width: 1024px) {
  .header__nav {
    gap: 20px;
  }
  
  .header__navLink {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 12px 16px;
  }
  
  .header__logoImg {
    height: 40px;
  }
  
  .header__burger {
    display: flex;
    order: 2;
  }
  
  .header__logo {
    order: 1;
  }
  
  .header__nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 12px;
  }
  
  .header__nav.active {
    display: flex;
  }
  
  .header__navLink {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .header__actions {
    order: 3;
    gap: 8px;
  }
  
  .header__actions .btn {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 40px;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.hero__imageLink {
  display: block;
  width: 100%;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

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

.hero__title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

@media (max-width: 768px) {
  .hero__container {
    padding: 40px 16px;
  }
  
  .hero__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .hero__cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 24px;
  }
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 80px 0;
  overflow: hidden;
  width: 100%;
}

section > div {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.advantages__heading {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.advantages__intro {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.advantages__item {
  background: #F0F1F2;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  min-width: 0;
}

.advantages__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197, 0, 3, 0.15);
  border-color: #C50003;
}

.advantages__itemTitle {
  font-size: 22px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

@media (max-width: 768px) {
  .advantages__heading {
    font-size: 32px;
  }
  
  .advantages__intro {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .advantages__item {
    padding: 24px;
  }
  
  .advantages__itemTitle {
    font-size: 20px;
  }
}

/* ===== BONUSES ===== */
.bonuses {
  background: #F0F1F2;
}

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

.bonuses__imageLink {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #C50003;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bonuses__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.bonuses__content {
  min-width: 0;
}

.bonuses__heading {
  font-size: 38px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__text {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__features {
  display: grid;
  gap: 24px;
  margin: 40px 0;
}

.bonuses__feature {
  background: #ffffff;
  padding: 24px;
  border-radius: 10px;
  border-left: 5px solid #C50003;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bonuses__featureTitle {
  font-size: 20px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bonuses__featureText {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .bonuses__container {
    gap: 32px;
  }
  
  .bonuses__heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .bonuses__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .bonuses__heading {
    font-size: 28px;
  }
  
  .bonuses__text {
    font-size: 16px;
  }
  
  .bonuses__features {
    gap: 20px;
    margin: 30px 0;
  }
  
  .bonuses__feature {
    padding: 20px;
  }
}

/* ===== HOW TO ===== */
.howto {
  background: #ffffff;
}

.howto__heading {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.howto__intro {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.howto__steps {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

.howto__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  background: #F0F1F2;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.howto__step:hover {
  transform: translateX(8px);
  border-color: #C50003;
  box-shadow: 0 6px 20px rgba(197, 0, 3, 0.1);
}

.howto__stepNumber {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C50003 0%, #A00002 100%);
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(197, 0, 3, 0.3);
  flex-shrink: 0;
}

.howto__stepContent {
  min-width: 0;
}

.howto__stepTitle {
  font-size: 24px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.howto__container {
  text-align: center;
}

@media (max-width: 768px) {
  .howto__heading {
    font-size: 32px;
  }
  
  .howto__intro {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .howto__steps {
    gap: 24px;
  }
  
  .howto__step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  
  .howto__stepNumber {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin: 0 auto;
  }
  
  .howto__stepTitle {
    font-size: 20px;
    text-align: center;
  }
  
  .howto__stepText {
    text-align: left;
  }
}
/* ===== SPORTS ===== */
.sports {
  background: #F0F1F2;
}

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

.sports__imageLink {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #C50003;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sports__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.sports__content {
  min-width: 0;
}

.sports__heading {
  font-size: 38px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sports__text {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 32px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sports__disciplines {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
}

.sports__discipline {
  background: #ffffff;
  padding: 24px;
  border-radius: 10px;
  border-left: 5px solid #C50003;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sports__disciplineTitle {
  font-size: 22px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

@media (max-width: 1024px) {
  .sports__container {
    gap: 32px;
  }
  
  .sports__heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .sports__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .sports__heading {
    font-size: 28px;
  }
  
  .sports__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .sports__disciplines {
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .sports__discipline {
    padding: 20px;
  }
  
  .sports__disciplineTitle {
    font-size: 20px;
  }
}

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

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

.casino__imageLink {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #C50003;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  order: 2;
}

.casino__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.casino__content {
  min-width: 0;
  order: 1;
}

.casino__heading {
  font-size: 38px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__text {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 32px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.casino__games {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
}

.casino__game {
  background: #F0F1F2;
  padding: 24px;
  border-radius: 10px;
  border-left: 5px solid #C50003;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.casino__gameTitle {
  font-size: 22px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

@media (max-width: 1024px) {
  .casino__container {
    gap: 32px;
  }
  
  .casino__heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .casino__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .casino__imageLink {
    order: 1;
  }
  
  .casino__content {
    order: 2;
  }
  
  .casino__heading {
    font-size: 28px;
  }
  
  .casino__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .casino__games {
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .casino__game {
    padding: 20px;
  }
  
  .casino__gameTitle {
    font-size: 20px;
  }
}

/* ===== MOBILE ===== */
.mobile {
  background: #F0F1F2;
}

.mobile__heading {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mobile__text {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.mobile__feature {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  min-width: 0;
}

.mobile__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197, 0, 3, 0.15);
  border-color: #C50003;
}

.mobile__featureTitle {
  font-size: 22px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.mobile__container {
  text-align: center;
}

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

@media (max-width: 768px) {
  .mobile__heading {
    font-size: 32px;
  }
  
  .mobile__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .mobile__features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .mobile__feature {
    padding: 24px;
  }
  
  .mobile__featureTitle {
    font-size: 20px;
  }
}

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

.payments__heading {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.payments__text {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.payments__method {
  background: #F0F1F2;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  min-width: 0;
}

.payments__method:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197, 0, 3, 0.15);
  border-color: #C50003;
}

.payments__methodTitle {
  font-size: 22px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.payments__container {
  text-align: center;
}

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

@media (max-width: 768px) {
  .payments__heading {
    font-size: 32px;
  }
  
  .payments__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .payments__methods {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .payments__method {
    padding: 24px;
  }
  
  .payments__methodTitle {
    font-size: 20px;
  }
}

/* ===== SUPPORT ===== */
.support {
  background: #F0F1F2;
}

.support__heading {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support__text {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.support__channel {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  min-width: 0;
}

.support__channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(197, 0, 3, 0.15);
  border-color: #C50003;
}

.support__channelTitle {
  font-size: 22px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.support__container {
  text-align: center;
}

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

@media (max-width: 768px) {
  .support__heading {
    font-size: 32px;
  }
  
  .support__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .support__channels {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  
  .support__channel {
    padding: 24px;
  }
  
  .support__channelTitle {
    font-size: 20px;
  }
}

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

.faq__heading {
  font-size: 42px;
  font-weight: 900;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq__intro {
  font-size: 18px;
  color: #4a4a4a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.faq__items {
  max-width: 1000px;
  margin: 0 auto 48px;
  display: grid;
  gap: 20px;
}

.faq__item {
  background: #F0F1F2;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: #C50003;
  box-shadow: 0 4px 16px rgba(197, 0, 3, 0.1);
}

.faq__question {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  padding: 24px;
  cursor: pointer;
  position: relative;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #C50003;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq__item.active .faq__question::after {
  content: '−';
}

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

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

.faq__answer p {
  padding: 0 24px 24px;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.faq__container {
  text-align: center;
}

@media (max-width: 768px) {
  .faq__heading {
    font-size: 32px;
  }
  
  .faq__intro {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .faq__items {
    gap: 16px;
  }
  
  .faq__question {
    font-size: 18px;
    padding: 20px 60px 20px 20px;
  }
  
  .faq__question::after {
    right: 20px;
  }
  
  .faq__answer p {
    padding: 0 20px 20px;
    font-size: 15px;
  }
}
/* ===== FINAL CTA ===== */
.finalCta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 100px 0;
  text-align: center;
}

.finalCta__heading {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.finalCta__text {
  font-size: 20px;
  color: #F0F1F2;
  max-width: 900px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.finalCta__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .finalCta {
    padding: 60px 0;
  }
  
  .finalCta__heading {
    font-size: 32px;
  }
  
  .finalCta__text {
    font-size: 17px;
    margin-bottom: 36px;
  }
  
  .finalCta__buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  
  .finalCta__buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .finalCta__heading {
    font-size: 26px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #F0F1F2;
  padding: 60px 0 0;
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #3a3a3a;
}

.footer__brand {
  min-width: 0;
}

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

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

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

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

.footer__column {
  min-width: 0;
}

.footer__columnTitle {
  font-size: 18px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.footer__link {
  font-size: 14px;
  color: #c0c0c0;
  transition: color 0.3s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__link:hover {
  color: #C50003;
}

.footer__middle {
  padding: 40px 0;
  border-bottom: 1px solid #3a3a3a;
}

.footer__badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer__badge {
  background: #2d2d2d;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #C50003;
}

.footer__badgeText {
  font-size: 14px;
  font-weight: 800;
  color: #C50003;
  white-space: nowrap;
}

.footer__disclaimer {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer__disclaimer p {
  font-size: 13px;
  line-height: 1.7;
  color: #a0a0a0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.footer__bottom {
  padding: 32px 0;
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: #c0c0c0;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__legal {
  margin-top: 12px;
}

.footer__legalText {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer__container {
    padding: 0 16px;
  }
  
  .footer__top {
    gap: 32px;
    padding-bottom: 32px;
  }
  
  .footer__logoImg {
    height: 48px;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer__middle {
    padding: 32px 0;
  }
  
  .footer__badges {
    gap: 12px;
  }
  
  .footer__badge {
    padding: 10px 18px;
  }
  
  .footer__badgeText {
    font-size: 13px;
  }
  
  .footer__bottom {
    padding: 24px 0;
  }
}

/* ===== CATFISH ===== */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #C50003 0%, #A00002 100%);
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 100%;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

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

.catfish__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.catfish__close:hover {
  transform: scale(1.2);
}

.catfish__content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px 0 16px;
}

.catfish__text {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  min-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
  .catfish {
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  }
  
  .catfish__content {
    flex-direction: column;
    gap: 12px;
    padding: 0 12px;
  }
  
  .catfish__text {
    font-size: 13px;
    text-align: center;
    -webkit-line-clamp: 3;
  }
  
  .catfish__close {
    top: 4px;
    right: 4px;
    font-size: 24px;
  }
}

/* ===== EXIT POPUP ===== */
.exitPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exitPopup.active {
  display: flex;
}

.exitPopup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.exitPopup__modal {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: popupSlideIn 0.4s ease;
  overflow: hidden;
}

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

.exitPopup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: all 0.2s ease;
  z-index: 10;
}

.exitPopup__close:hover {
  transform: rotate(90deg);
  color: #C50003;
}

.exitPopup__content {
  text-align: center;
}

.exitPopup__title {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exitPopup__text {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 16px;
  line-height: 1.6;
}

.exitPopup__bonus {
  font-size: 24px;
  font-weight: 800;
  color: #C50003;
  margin-bottom: 32px;
  padding: 20px;
  background: #F0F1F2;
  border-radius: 10px;
  border: 2px solid #C50003;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px) {
  .exitPopup {
    padding: 16px;
  }
  
  .exitPopup__modal {
    padding: 40px 24px;
  }
  
  .exitPopup__title {
    font-size: 28px;
  }
  
  .exitPopup__text {
    font-size: 16px;
  }
  
  .exitPopup__bonus {
    font-size: 18px;
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .exitPopup__close {
    top: 12px;
    right: 12px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .exitPopup__title {
    font-size: 24px;
  }
  
  .exitPopup__bonus {
    font-size: 16px;
  }
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* Prevent text orphans */
h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* Smooth transitions */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid #C50003;
  outline-offset: 2px;
}

/* Safe area support for notched devices */
@supports (padding: max(0px)) {
  .header__container,
  .footer__container,
  section > div {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
  
  .catfish {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}
