body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  background: #F9F4E8;
  color: #49494B;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 300px;
  background: #136550;
}

.logo {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2rem;
  color: #136550;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
}

.login-btn {
  background: #FFA600;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  padding: 0 40px;
  height: 40px;
  box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.25);
  cursor: pointer;
}

.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 80px 0;
  background: #F9F4E8;
  border-radius: 0;
  margin: 0 auto;
  max-width: 1320px;
  box-shadow: none;
  min-height: 600px;
}

.hero-content {
  flex: 1 1 0;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding-left: 60px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  line-height: 1.1;
  color: #222;
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 32px 0;
  color: #49494B;
}

.hero-btn {
  background: #222;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  border: none;
  border-radius: 4px;
  padding: 18px 48px;
  margin: 0 0 40px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.hero-btn:hover {
  background: #136550;
}

.hero-avatars-block {
  margin-top: 24px;
}
.hero-avatars-label {
  font-size: 18px;
  font-weight: 700;
  color: #49494B;
  margin-bottom: 8px;
}
.avatars {
  display: flex;
  align-items: center;
  gap: 0;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eee;
  border: 2px solid #fff;
  margin-left: -18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  object-fit: cover;
}
.avatar:first-child {
  margin-left: 0;
}
.avatar-count {
  margin-left: 16px;
  font-weight: 700;
  color: #49494B;
  font-size: 22px;
}

.hero-image-block {
  flex: 1 1 0;
  max-width: 52%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 500px;
  height: auto;
}
.hero-main-image {
  width: 100%;
  max-width: 600px;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: none;
  display: block;
}
.hero-stats-overlay {
  position: absolute;
  bottom: 32px;
  left: 40px;
  background: #12785E;
  color: #fff;
  border-radius: 12px;
  padding: 36px 48px;
  min-width: 340px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stats-overlay .stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stats-overlay .stat-desc {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
}
.hero-stats-overlay hr {
  border: none;
  border-top: 1px solid #fff;
  opacity: 0.3;
  margin: 16px 0;
}

.bonus-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 80px 0 0 0;
}

.bonus-card {
  background: #FDD65B;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 40px 32px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-image {
  width: 241px;
  height: 362px;
  background: #eee;
  border-radius: 16px;
  margin-bottom: 24px;
}

.bonus-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-logo-img {
  height: 32px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  margin-right: 8px;
  border-radius: 6px;
  padding: 2px 8px;
}

.bonus-rating span {
  color: #49494B;
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.bonus-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #12785E;
  text-align: center;
}

.bonus-desc {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
}

.bonus-label {
  font-size: 20px;
  font-weight: 700;
  color: #FFA600;
  margin-bottom: 12px;
  text-align: center;
}

.bonus-btn {
  background: #FFA600;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  padding: 0 40px;
  height: 40px;
  box-shadow: 3px 3px 0px 0px rgba(0,0,0,0.25);
  cursor: pointer;
  margin-top: 16px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  outline: none;
  transition: background 0.2s, color 0.2s;
}
.bonus-btn:hover, .bonus-btn:focus {
  background: #136550;
  color: #fff;
  text-decoration: none;
  outline: none;
}

.info-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 80px 0 0 0;
}

.info-card {
  background: #12785E;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.info-image {
  width: 100%;
  height: 196px;
  max-width: 100%;
  background: #eee;
  border-radius: 16px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.info-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
}

.info-desc {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.winners {
  margin: 80px 0 0 0;
  padding: 60px 0;
  background: #FDD65B;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.winners-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.winners h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #222;
  text-align: left;
}

.winners p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 36px;
  color: #49494B;
  text-align: left;
}

.winner-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: 24px;
}
.winner-arrow {
  background: #FFA600;
  border: none;
  color: #fff;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  z-index: 2;
  margin: 0 16px;
}
.winner-arrow:active, .winner-arrow:focus {
  background: #12785E;
}
.winner-cards-wrapper {
  width: 100%;
  max-width: 700px;
  min-height: 320px;
  height: 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 32px 40px 80px 40px;
}
.winner-card {
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 100%;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.4s;
  z-index: 1;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.winner-card.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.winner-image {
  width: 196px;
  height: 196px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FDD65B;
  flex-shrink: 0;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.winner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.winner-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
}

.winner-date {
  font-size: 16px;
  color: #12785E;
  font-weight: 400;
}

.winner-name {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

.winner-tournament {
  font-size: 18px;
  font-weight: 700;
  color: #FFA600;
}

.winner-desc {
  font-size: 16px;
  font-weight: 400;
  color: #49494B;
  margin-top: 8px;
}

.faq {
  background: #FDD65B;
  padding: 80px 0;
}

.faq-list {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #12785E;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  color: #fff;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00C807;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.faq-arrow-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-arrow {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.faq-toggle[data-open="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 16px;
  font-weight: 500;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s, opacity 0.3s;
  margin-bottom: 0;
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 0 20px;
  margin-top: 10px;
}

.faq-toggle[data-open="true"] .faq-answer {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 12px;
  padding: 20px;
  transition: max-height 0.4s, opacity 0.3s;
}

.faq h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #49494B;
  margin-bottom: 40px;
  text-align: left;
  padding-left: 300px;
}

.warning {
  margin: 80px 0 0 0;
  padding: 40px 300px;
  background: #1C7E66;
  border-radius: 16px;
  color: #fff;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.warning-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.warning-desc {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
}

.warning-age {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.main-footer {
  background: #136550;
  color: #fff;
  padding: 60px 300px 24px 300px;
  border-radius: 0 0 16px 16px;
  margin-top: 80px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  min-height: 60px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  text-decoration: none;
}

.footer-warning {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-copyright {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
}

@media (max-width: 1400px) {
  .main-header, .hero, .winners, .faq, .warning, .main-footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .faq-list {
    padding: 0 40px;
  }
  .faq h2 {
    padding-left: 40px;
  }
}

@media (max-width: 900px) {
  .main-header, .hero, .winners, .faq, .warning, .main-footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .bonus-cards, .info-cards {
    flex-direction: column;
    align-items: center;
  }
  .winners {
    padding: 30px 0;
    max-width: 100%;
  }
  .winner-cards-wrapper {
    max-width: 100%;
    padding: 24px 10px 56px 10px;
    height: auto;
    min-height: 180px;
  }
  .winner-card {
    flex-direction: column;
    gap: 24px;
  }
  .winner-image {
    width: 120px;
    height: 120px;
  }
  .faq {
    padding: 40px 0;
  }
  .faq-list {
    padding: 0 10px;
  }
  .faq h2 {
    padding-left: 10px;
  }
}

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    padding: 40px 0;
    min-height: unset;
    align-items: stretch;
  }
  .hero-content, .hero-image-block {
    max-width: 100%;
    padding-left: 0;
  }
  .hero-main-image {
    max-width: 100%;
    height: 260px;
    min-height: unset;
    border-radius: 12px;
  }
  .hero-stats-overlay {
    position: static;
    margin-top: 16px;
    min-width: unset;
    width: 100%;
    padding: 24px 16px;
  }
}

/* --- Новый футер и блок предупреждения --- */
.footer-block {
  background: #136550;
  color: #fff;
  padding: 0;
  margin-top: 80px;
  border-radius: 0 0 16px 16px;
}
.footer-block-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 40px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-warning-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #1C7E66;
  border-radius: 16px;
  padding: 40px 60px;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-warning-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFA600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  flex-shrink: 0;
}
.footer-warning-icon-mark {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-top: -2px;
}
.footer-warning-texts {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.footer-warning-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-warning-desc {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.95;
}
.footer-age-block {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}
.footer-age-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  border: 2px solid #fff;
  margin-right: 8px;
}
.footer-age-text {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.95;
}
.footer-main-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 16px 0;
}
.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.footer-warning-logos-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}
.footer-warning-logos-row a img {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #FFA600;
}

@media (max-width: 1100px) {
  .footer-block-inner {
    padding: 40px 10px 16px 10px;
  }
  .footer-warning-block {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 20px;
    gap: 24px;
  }
  .footer-main-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .main-header {
    flex-direction: row;
    align-items: center;
    padding: 16px 8px;
    gap: 0;
  }
  .logo {
    width: 48px;
    height: 48px;
  }
  .main-nav {
    display: none;
  }
  .login-btn {
    font-size: 14px;
    padding: 0 18px;
    height: 32px;
    border-radius: 16px;
  }
  .hero {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 0 0;
    max-width: 100vw;
    border-radius: 0;
    background: #F9F4E8;
    box-shadow: none;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 16px;
    gap: 28px;
    align-items: center;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .hero-content h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.2;
    color: #222;
    text-transform: uppercase;
    text-align: center;
  }
  .hero-content p {
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 22px 0;
    color: #49494B;
    text-align: center;
  }
  .hero-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px 0;
    margin: 0 0 28px 0;
    border-radius: 6px;
    justify-content: center;
  }
  .hero-avatars-block {
    margin-top: 22px;
    margin-bottom: 22px;
    width: 100%;
  }
  .hero-avatars-label {
    font-size: 14px;
    font-weight: 700;
    color: #49494B;
    margin-bottom: 6px;
    text-align: center;
  }
  .avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
  }
  .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: -12px;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .avatar:first-child {
    margin-left: 0;
  }
  .avatar-count {
    margin-left: 10px;
    font-weight: 700;
    color: #49494B;
    font-size: 16px;
  }
  .hero-image-block {
    max-width: 100vw;
    width: 100vw;
    min-width: unset;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .hero-main-image {
    width: 100vw;
    max-width: 100%;
    height: 180px;
    min-height: unset;
    border-radius: 10px 10px 0 0;
    background: none;
    border: none;
    margin-bottom: 0;
    box-shadow: none;
    display: block;
  }
  .hero-stats-overlay {
    position: static;
    box-sizing: border-box;
    margin: 0;
    width: 100%;
    min-width: unset;
    border-radius: 0 0 10px 10px;
    padding: 18px 16px 18px 16px;
    box-shadow: none;
    background: #12785E;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero-stat {
    align-items: center;
    gap: 2px;
  }
  .hero-stats-overlay .stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .hero-stats-overlay .stat-desc {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    opacity: 0.95;
    text-align: center;
  }
  .hero-stats-overlay hr {
    border: none;
    border-top: 1px solid #fff;
    opacity: 0.2;
    margin: 10px 0;
  }
  .bonus-cards, .info-cards {
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 0 0;
    padding: 0 8px;
  }
  .bonus-card, .info-card {
    width: 100%;
    padding: 18px 8px;
    border-radius: 10px;
  }
  .bonus-image, .info-image {
    width: 96vw;
    height: 180px;
    max-width: 100%;
    background: #eee;
    border-radius: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }
  .bonus-title, .info-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .bonus-desc, .info-desc {
    font-size: 14px;
  }
  .bonus-label {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .bonus-btn {
    font-size: 14px;
    padding: 0 18px;
    height: 32px;
    border-radius: 16px;
    margin-top: 8px;
    line-height: 32px;
  }
  .winners {
    padding: 16px 0;
    border-radius: 10px;
    margin: 32px 0 0 0;
  }
  .winners-inner {
    padding: 0 8px;
  }
  .winners h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .winners p {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .winner-slider {
    margin-top: 8px;
  }
  .winner-arrow {
    width: 32px;
    height: 32px;
    font-size: 20px;
    margin: 0 4px;
  }
  .winner-cards-wrapper {
    max-width: 100%;
    padding: 8px 8px 32px 8px;
    min-height: 120px;
    height: auto;
  }
  .winner-card {
    flex-direction: column;
    gap: 12px;
  }
  .winner-image {
    width: 64px;
    height: 64px;
    border-width: 2px;
  }
  .winner-info {
    gap: 4px;
  }
  .winner-date, .winner-tournament {
    font-size: 13px;
  }
  .winner-name {
    font-size: 15px;
  }
  .winner-desc {
    font-size: 13px;
    margin-top: 4px;
  }
  .faq {
    padding: 24px 0;
  }
  .faq-list {
    padding: 0 4px;
    gap: 10px;
  }
  .faq-item {
    padding: 10px;
    border-radius: 8px;
  }
  .faq-question {
    font-size: 15px;
    gap: 8px;
  }
  .faq-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  .faq-arrow-btn {
    width: 20px;
    height: 20px;
  }
  .faq-arrow {
    width: 20px;
    height: 20px;
  }
  .faq-answer {
    font-size: 13px;
    border-radius: 8px;
    padding: 0 8px;
    margin-top: 6px;
  }
  .faq-toggle[data-open="true"] .faq-answer {
    padding: 8px;
    margin-bottom: 8px;
  }
  .faq h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-left: 4px;
  }
  .footer-block {
    margin-top: 32px;
    border-radius: 0 0 10px 10px;
  }
  .footer-block-inner {
    padding: 16px 4px 8px 4px;
    gap: 16px;
  }
  .footer-warning-block {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 4px;
    gap: 8px;
    border-radius: 8px;
  }
  .footer-warning-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
    border-radius: 50%;
  }
  .footer-warning-logos-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px 16px;
    justify-content: center;
    margin: 0 auto;
    max-width: 98vw;
  }
  .footer-warning-logos-row a img {
    height: 32px;
    max-width: 32vw;
  }
  .footer-warning-title {
    font-size: 13px;
  }
  .footer-warning-desc {
    font-size: 12px;
  }
  .footer-age-block {
    gap: 8px;
    min-width: unset;
  }
  .footer-age-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 4px;
  }
  .footer-age-text {
    font-size: 12px;
  }
  .footer-main-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 0 8px 0;
  }
  .footer-logo {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 0;
  }
  .footer-links {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-top: 0;
  }
  .footer-links a {
    font-size: 16px;
  }
  .footer-copyright {
    font-size: 11px;
    margin-top: 8px;
  }
  .info-image img {
    object-fit: contain !important;
  }
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin-left: 16px;
  cursor: pointer;
  z-index: 1002;
}
.main-nav-mobile {
  display: none;
}
.mobile-menu-overlay {
  display: none;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .burger-btn {
    display: block;
  }
  .main-nav-mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #136550;
    color: #fff;
    z-index: 1003;
    box-shadow: -2px 0 24px rgba(0,0,0,0.18);
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .main-nav-mobile.open {
    right: 0;
  }
  .main-nav-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px 24px 24px;
    align-items: flex-start;
    min-height: 100vh;
  }
  .main-nav-mobile a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .main-nav-mobile a:hover {
    color: #FFA600;
  }
  .close-mobile-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    align-self: flex-end;
    margin-bottom: 24px;
    cursor: pointer;
    line-height: 1;
  }
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 601px) {
  .footer-main-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 16px 0;
  }
  .footer-logo {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  .footer-warning-logos-row {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 32px;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .footer-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 0;
    padding: 0;
  }
}

.page-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 16px 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  margin-top: 0;
  color: #136550;
  text-align: center;
}
.page-content p, .page-content ul, .page-content section, .page-content form {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.page-content ul {
  list-style: disc inside;
  padding: 0;
  margin-bottom: 18px;
}
.page-content form {
  margin-top: 18px;
}
.page-content input, .page-content textarea {
  width: 100%;
  max-width: 400px;
  margin: 6px 0 14px 0;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.page-content button[type="submit"] {
  background: #136550;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 32px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.page-content button[type="submit"]:hover {
  background: #FFA600;
  color: #222;
}
@media (max-width: 600px) {
  .page-content {
    padding: 32px 6vw 24px 6vw;
  }
  .page-content h1 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .page-content p, .page-content ul, .page-content section, .page-content form {
    font-size: 0.98rem;
    max-width: 98vw;
  }
}

.footer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 8px;
}
.footer-card-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2px 8px;
}
.footer-card span {
  font-size: 14px;
  color: #fff;
  margin-top: 2px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .footer-card-img {
    height: 32px;
    padding: 2px 4px;
  }
  .footer-card span {
    font-size: 13px;
  }
  .footer-card {
    margin: 0 4px;
  }
}

html {
  scroll-behavior: smooth;
}

.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.popup-overlay.active {
  display: flex;
}
.popup {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 36px 28px 28px 28px;
  max-width: 95vw;
  width: 380px;
  text-align: center;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.age-popup-content h2, .cookie-popup-content h2 {
  font-size: 1.5rem;
  color: #136550;
  margin-bottom: 12px;
}
.popup-age-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
}
.popup-btn {
  background: #FFA600;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 28px;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin: 0 2px;
}
.popup-btn:hover, .popup-btn:focus {
  background: #136550;
  color: #fff;
}
@media (max-width: 600px) {
  .popup {
    width: 98vw;
    padding: 18px 4vw 18px 4vw;
    font-size: 0.98rem;
  }
  .popup-age-btns {
    flex-direction: column;
    gap: 10px;
  }
  .popup-overlay {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}
