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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #123524, #0f2d20);
  color: #f0f0f0;
  line-height: 1.6;
}

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

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

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

.logo {
  font-size: 1.5rem;
  color: #ff4757;
}

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

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

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

.nav ul li a:hover {
  color: #ff4757;
}

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

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

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

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px,-8px);
}
/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: left;
  padding: 10% 1rem;
}
.offer-footer {
  margin-top: 50px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

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

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(18, 53, 36, 0.6);
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* About */
.about {
  padding: 80px 0;
  background: linear-gradient(7deg, #123524, #000);
}

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

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

.about-text {
  flex: 1;
}

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

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

.about-img {
  flex: 1;
  text-align: center;
}

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

/* Offers */
.offers h2 {
  text-align: center;
  margin: 2rem 0;
  font-size: 2rem;
  color: #ff4757;
}

.offer-card {
  background: linear-gradient(145deg, #1a1a1d, #121214);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 71, 87, 0.3);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.offer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 71, 87, 0.6);
  border: 1px solid #ff4757;
}

.offer-logo {
  max-width: 160px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

.offer-header h3 a {
  color: #fff;
  font-size: 1.5rem;
}

.offer-header h3 a:hover {
  color: #ff4757;
}

.offer-body .rating {
  font-size: 1.2rem;
  color: #ffdd57;
  margin: 20px 0;
}

.offer-body .bonus {
  color: #00ffa6;
  font-weight: bold;
  margin: 1rem 0;
}
p.payments {
  margin: 20px 0;
}

.offer-body .payments span {
  background: #2a2a2d;
  padding: 4px 10px;
  margin: 0 5px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.offer-footer .btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #ff4757, #ff6b81);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.offer-footer .btn:hover {
  background: linear-gradient(45deg, #e84118, #ff4757);
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
}

.faq-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #123524, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: #fff;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 20px 20px;
}
.guide-parallax {
  position: relative;
  background: url('../img/guide-bg.jpg') center/cover no-repeat fixed;
  color: #f0f0f0;
  
}

.guide-parallax .overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 80px 0;
}

.guide-parallax h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ff4757;
}

.guide-parallax h3 {
  font-size: 1.4rem;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
}

.guide-parallax .guide-block {
  margin-bottom: 40px;
}

.guide-parallax p,
.guide-parallax li {
  font-size: 17px;
  line-height: 1.6;
  color: #ffffffcc;
}

.guide-parallax ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.guide-parallax ul.two-cols {
  columns: 2;
  gap: 30px;
}

.guide-parallax a {
  color: #3ee577;
  text-decoration: underline;
  transition: color 0.3s;
}

.guide-parallax a:hover {
  color: #ff4757;
}
.guide {
  background: #111;
  color: #f0f0f0;
  padding: 60px 0;
  font-family: "Inter", sans-serif;
}

.guide h2 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ff4757;
}

.guide p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #d6d6d6;
}
.guide-list li {
  margin-left: 20px;
}
.guide a {
  color: #3ee577;
  text-decoration: underline;
}

.guide-block {
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.guide-block.final {
  border-bottom: none;
}
/* Footer */
.footer {
  border-top: 2px solid #ff4757;
  background: #141414;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 1rem 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ff4757;
}

.footer-logos img {
  max-width: 80px;
  margin: 10px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.footer-logos img:hover {
  filter: grayscale(0%);
}

.age-warning {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ff4757;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff4757;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
a {
  text-decoration: none;
}
.faq-answer p {
  font-size: 15px;
  font-weight: 700;
}
/* Media Queries */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 17%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #123524, #0f2d20);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

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

  .burger {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    padding: 10px 20px;
    gap: 10px;
  }
  .guide-parallax ul.two-cols {
    columns: 1;
  }
  .guide-parallax h3 {
    font-size: 1.2rem;
  }
  .guide-parallax h2 {
    font-size: 1.5rem;
  }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .burger {
    display: flex;
  }

  

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

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

  .hero-image {
    margin-top: 20px;
  }
}
