/* ======== 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 ======== */
.gslyu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.gslyu-header {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gslyu-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* ===== LOGO ===== */
.gslyu-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: opacity .3s ease;
}

.gslyu-logo:hover { opacity: 0.8; }

.gslyu-logo img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.gslyu-logo:hover img {
  transform: rotate(8deg) scale(1.05);
}

.gslyu-logo-text {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.gslyu-logo-text i {
  font-style: normal;
  opacity: 0.8;
}
.gslyu-logo-text em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== NAVIGATION ===== */
.gslyu-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.gslyu-nav a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: .5px;
  position: relative;
  transition: color .3s;
}

.gslyu-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width .3s ease;
}

.gslyu-nav a:hover::after, 
.gslyu-nav a.active::after {
  width: 100%;
}

.gslyu-nav a:hover {
  color: #fff;
}

/* ===== BURGER ===== */
.gslyu-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.gslyu-burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ======== Hero Section ======== */
.gslyu-hero {
  position: relative;
  overflow: hidden;
  background-color: #1c1c1c;
  color: #fff;
  padding: 100px 20px;
}

.gslyu-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2c2c2c 0%, #1c1c1c 100%);
  z-index: 1;
}

.hero-decor-dots {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #555 20%, transparent 80%);
  border-radius: 50%;
  z-index: 2;
}

.hero-decor-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 2;
}

.sw-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gslyu-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gslyu-hero-title .highlight {
  color: #ccc;
}

.gslyu-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.gslyu-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.gslyu-btn.sw-btn-primary {
  background: #fff;
  color: #1c1c1c;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.gslyu-btn.sw-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.4);
}

.gslyu-btn.sw-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s;
}

.gslyu-btn.sw-btn-outline:hover {
  background: #fff;
  color: #1c1c1c;
  transform: translateY(-3px);
}

/* Hero visual icons */
.hero-visual {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-icon {
  width: 120px;
  height: 120px;
  background: #2c2c2c;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.6);
}

/* === OFFERS SECTION === */
.gslyu-offers {
  padding: 80px 20px;
  background: #121212;
  color: #fff;
}

.gslyu-offers-header {
  text-align: center;
  margin-bottom: 50px;
}

.gslyu-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.gslyu-badge {
  display: inline-block;
  background: #333;
  padding: 6px 15px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

/* Оффер */
.single-offer-grid {
  display: flex;
  justify-content: center;
}

.gslyu-offer-card.hero-offer {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1c1c1c 0%, #2c2c2c 100%);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  transition: transform 0.3s;
}

.gslyu-offer-card.hero-offer:hover {
  transform: translateY(-10px);
}

.gslyu-offer-logo {
  background: #000;
  text-align: center;
  padding: 25px;
}

.gslyu-offer-logo img {
  max-width: 180px;
}

.gslyu-offer-body {
  padding: 30px 25px;
}

.gslyu-offer-body h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.gslyu-subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.gslyu-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.gslyu-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.gslyu-payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gslyu-payment-methods span {
  background: #333;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.gslyu-offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #bbb;
}

.gslyu-offer-footer a {
  color: #fff;
  text-decoration: underline;
}

/* CTA кнопка */
.hero-btn {
  display: inline-block;
  background: #fff;
  color: #1c1c1c;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: all 0.3s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

/* Рейтинг */
.gslyu-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.gslyu-stars {
  color: #fbc531;
  font-size: 1.2rem;
}

.gslyu-score {
  font-weight: 700;
}

/* ======== FAQ Section ======== */
.gslyu-faq {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

.gslyu-faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.gslyu-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* FAQ Item */
.gslyu-faq-item {
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gslyu-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

/* Question Button */
.gslyu-faq-question {
  width: 100%;
  text-align: left;
  background: #000;
  border: none;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gslyu-faq-question span {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

/* Answer */
.gslyu-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #111;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.gslyu-faq-answer p {
  margin: 15px 0;
  line-height: 1.6;
  color: #ccc;
}

/* Open State */
.gslyu-faq-item.active .gslyu-faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.gslyu-faq-item.active .gslyu-faq-question span {
  transform: rotate(45deg);
}

/* ======== Responsible Section ======== */
.responsible-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.responsible-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/responsible-bg.jpg') center center / cover no-repeat fixed;
  filter: brightness(0.5);
  z-index: 1;
  transform: translateZ(0);
}

.responsible-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.responsible-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.responsible-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #ddd;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.responsible-logos a {
  display: inline-block;
  transition: transform 0.3s, filter 0.3s;
}

.responsible-logos a img {
  max-height: 60px;
  filter: grayscale(60%);
  transition: all 0.3s;
}

.responsible-logos a:hover img {
  transform: scale(1.15);
  filter: grayscale(0%);
}
/* ======== Footer ======== */
.gslyu-footer {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.gslyu-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

.gslyu-footer-text {
  flex: 1 1 300px;
}

.gslyu-footer-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.gslyu-footer-text p {
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
}

.gslyu-logos {
  flex: 1 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.gslyu-logos img {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.gslyu-logos img:hover {
  transform: scale(1.1);
}

.gslyu-footer-warning {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 30px 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gslyu-age-icon {
  width: 80px;
  height: auto;
}

.gslyu-footer-warning p {
  color: #bbb;
  line-height: 1.5;
  font-size: 0.95rem;
}

.gslyu-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.gslyu-footer-links a {
  color: #ccc;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.gslyu-footer-bottom p {
  color: #777;
  font-size: 0.9rem;
}

/* ======== 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;
}

.gslyu-guide {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.gslyu-guide-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #ccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gslyu-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.gslyu-guide-block {
  background: #111;
  border-radius: 14px;
  padding: 25px 20px;
  border: 1px solid #333;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gslyu-guide-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.05);
}

.gslyu-guide-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.gslyu-step {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 12px;
}

.gslyu-guide-block p {
  color: #ccc;
  line-height: 1.6;
}

.gslyu-final {
  grid-column: 1/-1;
  background: #222;
  border-color: #444;
}

.gslyu-checklist {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.gslyu-checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.gslyu-checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #fff; /* Акцент */
}

.sw-contact {
  background: #111;
  color: #fff;
  padding: 80px 20px;
}

.sw-contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sw-contact-form,
.sw-contact-info {
  flex: 1 1 400px;
  background: #1a1a1a;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.sw-contact-form h2,
.sw-contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #fff;
}

.sw-contact-form p,
.sw-contact-info p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}

.sw-contact-form input,
.sw-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #fff;
  font-size: 0.95rem;
}

.sw-contact-form input::placeholder,
.sw-contact-form textarea::placeholder {
  color: #888;
}

.sw-contact-form button {
  background: #fff;
  color: #000;
  font-weight: 700;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sw-contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(36,255,126,0.5);
}

.sw-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

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

.sw-contact-info ul li strong {
  color: #24ff7e;
}

.sw-contact-icons {
  display: flex;
  gap: 15px;
}

.sw-contact-icons a img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.sw-contact-icons a img:hover {
  transform: scale(1.1);
}
/* ======== Responsive ======== */
@media(max-width:1024px){ .offer-cards { justify-content: center; } }
@media (max-width: 992px) {
  .sw-contact-inner {
    flex-direction: column;
  }
  .gslyu-footer-top {
    flex-direction: column;
    gap: 25px;
  }
  .gslyu-logos {
    justify-content: flex-start;
  }
  .gslyu-footer-warning {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .gslyu-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .gslyu-guide-intro {
    font-size: 1rem;
  }
  .gslyu-guide-block h2 {
    font-size: 1.3rem;
  }
  .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;
}
/* Burger animation when active */
.gslyu-burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.gslyu-burger.active span:nth-child(2) {
  opacity: 0;
}
.gslyu-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Subtle header shadow when scrolling */
.gslyu-header.scrolled {
  background: #0b0b0b;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}.gslyu-burger { display: flex; }

  .gslyu-nav {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    transform: translateY(-120%);
    transition: transform .4s ease;
  }
  .gslyu-nav.active { transform: translateY(15%); }

  .gslyu-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }
    .gslyu-hero-title { font-size: 2.5rem; }
  .gslyu-hero-subtitle { font-size: 1.1rem; }
  .faq-question { font-size: 0.95rem; }
   .testimonial-item p {
    font-size: 14px;
  }

  .testimonial-item img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  

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