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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #1b2b21, #2a1a1d);
  color: #f0f0f0;
  line-height: 1.6;
}

/* Container */
.ns-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.ns-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.ns-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ns-logo {
  font-size: 1.5rem;
  color: #fbd102; /* бордовый */
}

/* Nav */
.ns-nav {
  display: flex;
}

.ns-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.ns-nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
}

.ns-nav ul li a:hover {
  color: #fbd102;
}

/* Burger */
.ns-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.ns-burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

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

/* Hero */
.ns-hero {
  background: linear-gradient(rgba(27,43,33,0.6), rgba(27,43,33,0.6)),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: left;
  padding: 10% 1rem;
}

.ns-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ns-hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fbd102;
}

.ns-hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  color: #e0e0e0;
}

.ns-btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6c1a14, #fbd102);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ns-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(178,34,34,0.6);
}

.ns-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.ns-benefits {
  padding: 80px 1rem;
  border-radius: 20px;
  text-align: center;
  margin: 50px auto;
}

.ns-benefits-title {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #fbd102;
  position: relative;
}
section#ns-offers {
  padding: 10% 0;
}
.ns-benefits-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #3ee577;
  margin: 10px auto 0;
  border-radius: 2px;
}

.ns-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.ns-benefit-card {
  background: #8b9b88;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ns-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.ns-benefit-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 20px;
  color: #3ee577;
}

.ns-benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #8b1e3f;
}

.ns-benefit-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}
/* About */
.ns-about {
  padding: 80px 0;
  background: linear-gradient(7deg, #2a3b2f, #3b1a1f);
}

.ns-about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.ns-about-row.ns-about-reverse {
  flex-direction: row-reverse;
}

.ns-about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fbd102;
}

.ns-about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffffcc;
}

.ns-about-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Offers */
/* Заголовок секции */
.ns-offers-title {
  text-align: center;
  font-size: 2.2rem;
  color: #8b1e3f; /* бордовый */
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Уникальная карточка */
.ns-offer-card-unique {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ns-offer-card-unique:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* Градиентный фон */
.ns-offer-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2e4a36, #8b1e3f);
  z-index: 0;
  filter: brightness(0.9);
}

/* Контент */
.ns-offer-content {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}

/* Логотип */
.ns-offer-logo-wrapper {
  margin-bottom: 25px;
}

.ns-offer-logo {
  max-width: 150px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.ns-offer-card-unique:hover .ns-offer-logo {
  transform: scale(1.1);
}

/* Название */
.ns-offer-name a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.ns-offer-name a:hover {
  color: #ffd700;
}

/* Рейтинг */
.ns-rating {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #ffd700;
}

/* Бонус */
.ns-bonus {
  background: rgba(0,255,166,0.1);
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  color: #00ffa6;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Платежи */
.ns-payments {
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.ns-payments span {
  background: rgba(255,255,255,0.15);
  padding: 5px 12px;
  border-radius: 10px;
  margin: 0 5px;
  display: inline-block;
  font-size: 0.85rem;
}

/* Кнопка */
.ns-btn-offer-unique {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #8b1e3f, #c42f4f);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.ns-btn-offer-unique:hover {
  background: linear-gradient(135deg, #c42f4f, #ff4757);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transform: translateY(-3px);
}

/* FAQ */
.ns-faq-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.ns-faq-column {
  flex: 1;
  min-width: 300px;
}

.ns-faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.ns-faq-item:hover {
  transform: translateY(-5px);
}

.ns-faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: #8b1e3f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
}

.ns-faq-icon {
  float: right;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.ns-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 20px;
  background: #f4f4f4;
}

.ns-faq-answer p {
  margin: 20px 0;
  color: #000;
}
h2.ns-faq-title {
  margin: 30px 0;color: #fbd102;
}
section#ns-faq {
  padding: 5% 0 10%;
}
/* Responsible */
.ns-guide-parallax {
  position: relative;
  background: url('../img/guide-bg.jpg') center/cover no-repeat fixed;
  color: #f0f0f0;
}

.ns-overlay {
  background: rgba(27, 43, 33, 0.65);
  padding: 80px 0;
}

.ns-guide-block h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fbd102;
}

.ns-guide-block ul li {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  margin-left: 20px;
}
/* ===== Parallax Warning ===== */
.ob-parallax-warning {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ob-parallax-overlay {
  background: rgb(0 121 107);
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ob-warning-text {
  max-width: 900px;
  text-align: center;
  border: 3px solid #d9a951;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(0,0,0,0.4);
}

.ob-warning-text p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
}
/* Footer */
.ns-footer {
  background-color: #1e1e1e; /* тёмный фон */
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  padding: 50px 20px 20px 20px;
}
a {
  text-decoration: none;
  color: #3ee577;
}
.ns-footer a {
  color: #f5f5f5;
  text-decoration: none;
  transition: 0.3s;
  padding: 0 4px;
}
.ns-footer .ns-logo-link {
  padding-right: 20px;
}
.ns-footer a:hover {
  color: #a32e2e; /* бордовый при наведении */
}

/* --- Верхний блок: логотип + предупреждение --- */
.ns-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.ns-logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ns-logo-link img {
  display: block;
}

.ns-logo-link h1 {
  font-size: 24px;
  color: #a32e2e; /* бордовый */
  margin: 0;
}

/* Рамка предупреждения */
.ns-footer-warning {
  flex: 1;
  min-width: 250px;
  border: 2px solid #a32e2e; /* бордовая рамка */
  padding: 15px 20px;
  border-radius: 8px;
  background-color: rgba(163,46,46,0.05); /* легкий зеленовато-бордовый оттенок */
  margin-top: 10px;
}

.ns-footer-warning p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* --- Центральный блок: ссылки и контакт --- */
.ns-footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ns-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ns-footer-links li a {
  font-size: 14px;
}

.ns-footer-contact {
  margin-top: 10px;
  font-size: 14px;
}

/* --- Нижний блок: логотипы партнеров --- */
.ns-footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.ns-footer-logos a img {
  max-height: 40px;
  display: block;
  transition: 0.3s;
}
.ns-footer-logos {
  display: flex;
  align-items: center;
}
.ns-footer-logos a img:hover {
  transform: scale(1.1);
}

/* --- Нижняя строка: авторские права --- */
.ns-footer-copyright {
  text-align: center;
  font-size: 13px;
  color: #bbb;
}

.ns-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fbd102;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 1.2rem;
  border-radius: 20%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ns-top-banner {
  background-color: #016d5d;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}
.ns-contact {
  padding: 80px 30px;
  background: linear-gradient(135deg, #1e3d2f, #4b1e2f);
  color: #fff;
  border-radius: 20px;
  margin: 50px auto;
}

.ns-contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff6b81;
}

.ns-contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Левая часть */
.ns-contact-info {
  flex: 1 1 300px;
}

.ns-contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #3ee577;
}

.ns-contact-info ul {
  list-style: none;
  padding: 0;
}

.ns-contact-info ul li {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* Правая часть */
.ns-contact-form-wrapper {
  flex: 1 1 300px;
}

.ns-contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #3ee577;
}

.ns-contact-form input,
.ns-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.ns-contact-form input::placeholder,
.ns-contact-form textarea::placeholder {
  color: #ccc;
}

.ns-btn-contact {
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #8b1e3f, #c42f4f);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ns-btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 69, 87, 0.8);
}
.guide {
  background: #0c0c0c;
  color: #e5e5e5;
  padding: 60px 0;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.guide h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  padding-left: 16px;
}

.guide h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #00bfa5;
  border-radius: 50%;
}
.guide-list li {
  margin-left: 20px;
}
.guide p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #cfcfcf;
}

.guide .two-cols {
  columns: 2;
  column-gap: 25px;
  margin: 12px 0 20px;
  padding-left: 20px;
}

.guide .two-cols li {
  margin-bottom: 8px;
}

.guide-block {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.guide-block.final {
  border-bottom: none;
}
/* Media Queries */
@media (max-width: 900px) {
  .ob-warning-text p {
    font-size: 17px;
  }
  .ob-parallax-warning {
    padding: 40px 0;
  }
  .ns-footer-logos {
  display: flex;
  flex-direction: column;
} 
  .ns-nav {
    position: absolute;
    top: 17%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2a3b2f, #2a1a1d);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .ns-nav.open {
    max-height: 300px;
  }

  .ns-burger {
    display: flex;
  }

  .ns-nav ul {
    flex-direction: column;
    padding: 10px 20px;
    gap: 10px;
  }

  .ns-about-row, .ns-about-row.ns-about-reverse {
    flex-direction: column;
    text-align: center;
  }

  .ns-hero-grid {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .ns-hero-image {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .ns-faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .ns-offers-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .ns-offer-card-unique {
    border-radius: 20px;
  }
  .ns-offer-logo {
    max-width: 120px;
  }
  .ns-offer-name a {
    font-size: 1.4rem;
  }
  .ns-rating {
    font-size: 1rem;
  }
  .ns-bonus {
    font-size: 1rem;
    padding: 8px 16px;
  }
  .ns-payments {
    font-size: 0.85rem;
    display: flex;
  }
  .ns-btn-offer-unique {
    padding: 10px 30px;
    font-size: 0.95rem;
  }
  .ns-benefits {
    padding: 50px 1rem;
  }
}