/* ======== General Reset ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f7f7f7;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ======== Container ======== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======== Header ======== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px 0;
}
.site-header .brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.site-header .brand em { font-style: normal; color: #5a2ca0; margin-left: 3px; }
.nav {
  display: flex;
  gap: 20px;
}
.nav a {
  font-weight: 700;
  transition: color 0.3s;
}
.nav a:hover { color: #5a2ca0; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
}
.burger span {
  width: 25px;
  height: 3px;
  background: #222;
  display: block;
  border-radius: 2px;
}

/* ======== Hero Section ======== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  filter: blur(6px) brightness(0.5);
  z-index: -1;
}
.hero-inner { text-align: center; }
.hero h1 { font-size: 2.8rem; margin-bottom: 20px; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; }
.btn-main, .btn-outline, .btn-neon {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}
.btn-main { background: #5a2ca0; color: #fff; border: none; }
.btn-outline { border: 2px solid #fff; color: #fff;  }
.btn-main:hover, .btn-outline:hover { opacity: 0.9; }
.btn-neon {
  background: #5a2ca0;
  color: #fff;
  text-align: center;
  display: inline-block;
  transition: 0.3s;
}
.btn-neon:hover { box-shadow: 0 0 8px #5a2ca0, 0 0 20px #5a2ca0; }

/* === OFFERS SECTION === */
.offers {
  background: #f8f9fa;
  padding: 60px 0;
}

.offers h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}

.hero-badge {
  background: #fff3cd;
  color: #856404;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* === OFFER CARD === */
.offer-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  gap: 20px;
  transition: transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-logo img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

.offer-body {
  flex: 1;
}

.offer-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.offer-body .sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

.offer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.offer-badge {
  background: #f1f3f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.payment-logos .pm {
  background: #eee;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
}

/* === FOOTER INSIDE CARD === */
.offer-footer {
  font-size: 0.8rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === CTA / RATING === */
.offer-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-width: 150px;
}

.rating {
  text-align: center;
  margin-bottom: 12px;
}

.stars {
  color: #ff9800;
  font-size: 1.1rem;
}

.score {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

.btn-bonus {
  display: inline-block;
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
}
.top-banner {
    background-color: #5a2ca0;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
}
.btn-bonus:hover {
  background: linear-gradient(90deg, #ff3e4e, #ffb347);
  color: #fff;
}

/* ======== FAQ Section ======== */
.faq-section { padding: 60px 0; background: #f7f7f7; }
.faq-section h2 { text-align: center; margin-bottom: 40px; font-size: 2rem; }
.faq-item { margin-bottom: 15px; background: #fff; border-radius: 8px; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5a2ca0;
  color: #fff;
  border: none;
}
.faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; background: #fafafa; transition: max-height 0.4s ease; }
.faq-answer p { padding: 15px 0; }

/* ======== Responsible Section ======== */
.responsible-section { padding: 60px 0; background: #fff; text-align: center; }
.responsible-section .logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; }
.responsible-section .logos img { width: 100px; }

/* ======== Footer ======== */
.site-footer { background: #222; color: #fff; padding: 30px 0; text-align: center; }
.site-footer .footer-pages a { color: #fff; margin: 0 10px; font-size: 0.9rem; }
.site-footer .footer-pages a:hover { text-decoration: underline; }

/* ======== Popup 18+ ======== */
.popup-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.popup-card h2 { margin-bottom: 15px; }
.popup-card p { margin-bottom: 20px; }
.popup-card .popup-actions button {
  margin: 5px;
}



/* ===== Testimonials Carousel ===== */
.testimonial-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 260px;
}
.testimonial-item {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
section#testimonials {
    padding: 60px 0;
}
.testimonial-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.carousel-controls button {
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.guide {
    padding: 60px 0;
  background: #fff;
  color: #222;
  line-height: 1.7;
}

.guide h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
}

.guide h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222;
  border-left: 4px solid var(--primary, #5a2ca0);
  padding-left: 10px;
}

.guide p {
  margin-bottom: 1rem;
}

.guide .lead {
  font-size: 1.2rem;
  color: #444;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.guide-block {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.guide-block:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.guide-block.final {
  background: #fdf4f4;
  border-color: #f4c7c7;
}

.guide ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.guide ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 20px;
}

.guide ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary, #5a2ca0);
  font-weight: bold;
}

.guide ul.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.guide ul.two-cols li::before {
  content: "–";
  color: #666;
}

/* ======== Responsive ======== */
@media(max-width:1024px){ .offer-cards { justify-content: center; } }
@media (max-width: 992px) {
  .offer-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .offer-logo img {
    margin-bottom: 12px;
  }

  .offer-body {
    text-align: center;
  }

  .offer-cta {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
  }
}
@media(max-width:768px){
    .guide h1 {
    font-size: 1.8rem;
  }

  .guide h2 {
    font-size: 1.3rem;
  }

  .guide .lead {
    font-size: 1rem;
  }

  .guide ul.two-cols {
    grid-template-columns: 1fr;
  }
    #navMenu {
  display: none;
  flex-direction: column;
}
#navMenu.active {
  display: flex;
}
#burger {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#burger span {
  display: block;
  height: 3px;
  background: #222;
  border-radius: 3px;
  transition: all 0.3s ease;
}
#burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
#burger.active span:nth-child(2) {
  opacity: 0;
}
#burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
    .hero-buttons {
        flex-direction: column;
        display: flex;
    }
    .btn-outline {
        margin-top: 10px;
    }
  .nav { display: none; flex-direction: column; gap: 15px; background: #fff; position: absolute; left: 10px; top: 110px; width: 200px; padding: 15px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .burger {
        display: flex
;
        margin-left: 10px;
        margin-top: 10px;
    }
  .hero h1 { font-size: 2rem; }
  .faq-question { font-size: 0.95rem; }
   .testimonial-item p {
    font-size: 14px;
  }

  .testimonial-item img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .offers h2 {
    font-size: 1.4rem;
  }

  .offer-body h3 {
    font-size: 1rem;
  }

  .btn-bonus {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}