/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
  background-image: url('images/bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-blend-mode: overlay;
  overflow-x: hidden;
}

body.legal-page {
  background-image: none;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(240, 185, 11, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0b90b;
  text-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #f0b90b;
  background: rgba(240, 185, 11, 0.1);
  transform: translateY(-2px);
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.burger-label span {
  width: 25px;
  height: 3px;
  background: #f0b90b;
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
}

.burger-label span:nth-child(1) {
  top: 0;
}

.burger-label span:nth-child(2) {
  top: 8px;
}

.burger-label span:nth-child(3) {
  top: 16px;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.burger-checkbox:checked ~ .burger-label span:nth-child(2) {
  transform: scale(0);
}

.burger-checkbox:checked ~ .burger-label span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(
    ellipse at center,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(10, 10, 26, 0.9) 100%
  );
  background-image: url('images/backdrop.webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f0b90b;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(240, 185, 11, 0.7);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.hero-extra {
  font-size: 1.1rem;
  color: #f0b90b;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 185, 11, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(240, 185, 11, 0.3);
}

.feature-item i {
  color: #f0b90b;
  font-size: 1.2rem;
}

.hero-image {
  display: block;
  margin-top: 3rem;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(240, 185, 11, 0.3);
  padding: 1rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #f0b90b;
  color: #1a1a2e;
}

.cookie-btn.decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-content a {
  color: #f0b90b;
  text-decoration: none;
}

/* Offer Warning Modal */
.offer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.offer-modal.show {
  display: flex;
}

.offer-modal-content {
  background: rgba(26, 26, 46, 0.98);
  border: 2px solid rgba(240, 185, 11, 0.5);
  border-radius: 15px;
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.offer-modal-content h3 {
  color: #f0b90b;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

.offer-modal-content p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.offer-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.offer-modal-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.offer-modal-btn.accept {
  background: linear-gradient(45deg, #f0b90b, #ffd700);
  color: #1a1a2e;
}

.offer-modal-btn.decline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.offer-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.offer-modal-btn.accept:hover {
  box-shadow: 0 5px 20px rgba(240, 185, 11, 0.5);
}

.affiliate-disclaimer {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0;
  text-align: center;
  font-style: italic;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #f0b90b;
  text-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

/* Offers Section */
.offers {
  padding: 80px 0;
  position: relative;
}

.reviews-header-image,
.security-header-image {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 300px;
  object-fit: cover;
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-card {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(240, 185, 11, 0.2);
  display: flex;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(240, 185, 11, 0.2);
  border-color: rgba(240, 185, 11, 0.4);
}

.offer-left {
  flex: 1;
  text-align: center;
}

.offer-right {
  flex: 1;
}

.offer-logo {
  width: 200px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
  aspect-ratio: 2 / 1;
  background: transparent;
}

.offer-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.offer-metrics-mobile {
  display: none;
}

.offer-metrics-desktop {
  display: block;
}

.metric {
  background: rgba(240, 185, 11, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #f0b90b;
  border: 1px solid rgba(240, 185, 11, 0.3);
}

.offer-title {
  font-size: 1.5rem;
  color: #f0b90b;
  margin-bottom: 1rem;
}

.offer-title-mobile {
  display: none;
}

.offer-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-methods i {
  font-size: 1.5rem;
  color: #f0b90b;
  opacity: 0.8;
}

.offer-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f0b90b, #ffd700);
  color: #1a1a2e;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(240, 185, 11, 0.3);
}

.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 185, 11, 0.4);
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: rgba(26, 26, 46, 0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: rgba(26, 26, 46, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(240, 185, 11, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-rating {
  color: #f0b90b;
}

.review-date {
  color: #888;
  font-size: 0.9rem;
}

.review-text {
  margin-bottom: 1rem;
  font-style: italic;
  color: #e0e0e0;
}

.review-author {
  text-align: right;
  color: #f0b90b;
  font-weight: 500;
}

/* Security Section */
.security {
  padding: 80px 0;
}

.security-content {
  text-align: center;
  position: relative;
}

.security-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #e0e0e0;
  line-height: 1.8;
}

.certificates {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.certificate {
  text-align: center;
  background: rgba(26, 26, 46, 0.6);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(240, 185, 11, 0.2);
  min-width: 200px;
}

.certificate i {
  font-size: 2.5rem;
  color: #f0b90b;
  margin-bottom: 1rem;
}

.certificate h4 {
  color: #f0b90b;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: rgba(26, 26, 46, 0.3);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(240, 185, 11, 0.2);
}

.faq-item h3 {
  color: #f0b90b;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #e0e0e0;
  line-height: 1.6;
}

/* Banners Section */
.banners {
  padding: 60px 0;
  background: rgba(26, 26, 46, 0.3);
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: center;
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  background: rgba(26, 26, 46, 0.8);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid rgba(240, 185, 11, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  aspect-ratio: 16 / 9;
}

.banner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(240, 185, 11, 0.3);
  border-color: rgba(240, 185, 11, 0.5);
  background: rgba(26, 26, 46, 0.95);
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.banner-item:hover .banner-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(240, 185, 11, 0.5));
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: rgba(26, 26, 46, 0.3);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-email {
  color: #f0b90b;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  word-break: break-all;
}

.contact-email:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: rgba(26, 26, 46, 0.9);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(240, 185, 11, 0.3);
}

.responsibility-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: rgba(240, 185, 11, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(240, 185, 11, 0.3);
}

.age-icon {
  width: 50px;
  height: 50px;
}

.responsibility-text h3 {
  color: #f0b90b;
  margin-bottom: 0.5rem;
}

.responsibility-text h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f0b90b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(240, 185, 11, 0.2);
  padding-top: 2rem;
}

.age-warning {
  color: #f0b90b;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.copyright {
  color: #888;
}

/* Tablet Responsive */
@media (max-width: 1200px) and (min-width: 901px) {
  .banners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .banner-item:nth-child(4),
  .banner-item:nth-child(5) {
    grid-column: span 1;
  }

  .banner-item:nth-child(4) {
    justify-self: end;
  }

  .banner-item:nth-child(5) {
    justify-self: start;
  }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .burger-label {
    display: flex;
    position: relative;
    width: 25px;
    height: 25px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .burger-checkbox:checked ~ .nav {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin: 0.5rem 0;
  }

  /* Hero mobile optimizations */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-extra {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .hero-image img {
    max-width: 100%;
    border-radius: 10px;
  }

  .reviews-header-image,
  .security-header-image {
    margin-bottom: 1.5rem;
  }

  .section-header-img {
    max-height: 200px;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .feature-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .feature-item i {
    font-size: 0.9rem;
  }

  /* Offers mobile layout */
  .offers {
    padding: 0;
  }

  .offers-grid {
    gap: 0.75rem;
    margin: 0;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .offer-card {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem;
    padding: 0.75rem;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    align-items: start;
  }

  .offer-left {
    grid-column: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box;
    flex: none !important;
  }

  .offer-right {
    grid-column: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.4rem;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box;
    flex: none !important;
  }

  .offer-title-mobile {
    display: block;
    font-size: 0.85rem;
    color: #f0b90b;
    margin: 0;
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .offer-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
    aspect-ratio: 2 / 1;
    margin-bottom: 0.5rem;
    object-fit: contain;
  }

  .offer-metrics-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    width: 100%;
    margin-top: 0.5rem;
    box-sizing: border-box;
  }

  .offer-metrics-desktop {
    display: none;
  }

  .offer-metrics-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .offer-metrics-row .metric {
    padding: 0.2rem 0.25rem;
    font-size: 0.6rem;
    flex: 1;
    text-align: center;
    min-width: 0;
    box-sizing: border-box;
    word-break: break-word;
    line-height: 1.2;
  }

  .offer-description {
    font-size: 0.7rem;
    line-height: 1.25;
    margin: 0;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.5em;
  }

  .payment-methods {
    gap: 0.2rem;
    margin: 0;
    margin-bottom: 0.4rem;
    display: flex;
    flex-wrap: wrap;
  }

  .payment-methods i {
    font-size: 1.1rem;
  }

  .offer-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    margin: 0;
  }

  /* Remove margins and padding on mobile */
  .reviews,
  .security,
  .faq,
  .contact {
    padding: 20px 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .certificates {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .certificate {
    padding: 1.5rem;
    min-width: auto;
  }

  .banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .banner-item {
    height: 100px;
    aspect-ratio: 16 / 9;
  }

  .banner-item:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 0.5rem);
    justify-self: center;
  }

  .responsibility-block {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-left {
    margin-bottom: 1rem;
  }

  .offer-metrics {
    flex-direction: row;
    justify-content: space-between;
  }

  .certificates {
    grid-template-columns: 1fr;
  }

  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .banner-item {
    height: 80px;
  }

  .banner-item:nth-child(5) {
    grid-column: 1 / -1;
    width: calc(50% - 0.375rem);
    justify-self: center;
  }
}

/* Glow Effects */
.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #f0b90b, #ffd700);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

/* Legal Pages Styles */
.legal-content {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
}

.legal-content .container {
  max-width: 900px;
  background: rgba(26, 26, 46, 0.6);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(240, 185, 11, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
  font-size: 2.5rem;
  color: #f0b90b;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
  position: relative;
  padding-bottom: 1rem;
}

.legal-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #f0b90b, #ffd700);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.5);
}

.legal-content h2 {
  font-size: 1.8rem;
  color: #f0b90b;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.legal-content h3 {
  font-size: 1.4rem;
  color: #f0b90b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.legal-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  list-style: none;
}

.legal-content ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.legal-content ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #f0b90b;
  font-weight: bold;
}

.legal-content a {
  color: #f0b90b;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.legal-content a:hover {
  color: #ffd700;
  border-bottom-color: #ffd700;
  text-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
}

.legal-content strong {
  color: #f0b90b;
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-content {
    padding: 100px 0 60px;
  }

  .legal-content .container {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }

  .legal-content p,
  .legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .offer-modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .offer-modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .offer-modal-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .offer-modal-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .offer-modal-btn {
    width: 100%;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .affiliate-disclaimer {
    font-size: 0.85rem;
    padding: 0 1rem;
  }
}

