/* ==========================================================================
   GoldenPortFortune - Portuguese Casino Theme Stylesheet
   Colors: Dark tones (#1A1412), Gold (#D4AF37), Muted Red (#8B2E2E)
   ========================================================================== */

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e8e2d5;
  background-color: #1a1412;
  position: relative;
  overflow-x: hidden;
}

/* Отключаем фоновые мотивы */
body::before,
body::after {
  display: none !important;
  background: none !important;
}

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

/* ==========================================================================
   Modal Overlays (Age Verification & Cookie Banner)
   ========================================================================== */

/* Age Verification Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #2a2018 0%, #1a1412 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(139, 46, 46, 0.3);
  text-align: center;
  max-width: 500px;
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-content h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.modal-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e8e2d5;
}

.modal-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 15px 40px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1a1412;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #8b2e2e;
  color: #e8e2d5;
}

.btn-secondary:hover {
  background: rgba(139, 46, 46, 0.3);
  border-color: #d4af37;
  color: #d4af37;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0.95) 0%,
    rgba(42, 32, 24, 0.98) 100%
  );
  backdrop-filter: blur(10px);
  border-top: 2px solid #d4af37;
  padding: 25px 20px;
  display: none;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookie-content h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.cookie-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-content a {
  color: #d4af37;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-content a:hover {
  color: #f4d03f;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0.95) 0%,
    rgba(42, 32, 24, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}

.logo:hover {
  color: #f4d03f;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #e8e2d5;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #8b2e2e);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #d4af37;
}

.nav a:hover::after {
  width: 100%;
}

/* Burger Menu (Hidden by default, shown on mobile) */
.burger-toggle {
  display: none;
}

.burger-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.burger-icon span {
  width: 30px;
  height: 3px;
  background: #d4af37;
  margin: 4px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(139, 46, 46, 0.08) 0%,
    rgba(26, 20, 18, 0) 100%
  );
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #c9b896;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.verified-section {
  margin-top: 60px;
}

.verified-section h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 30px;
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(42, 32, 24, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.feature-item:hover {
  background: rgba(139, 46, 46, 0.2);
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.95rem;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
section {
  /* padding: 80px 0; */
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 50px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6),
    0 0 35px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Offers Section
   ========================================================================== */
.offers {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0) 0%,
    rgba(139, 46, 46, 0.05) 50%,
    rgba(26, 20, 18, 0) 100%
  );
}

.offers .offer-card + .offer-card {
  margin-top: 28px;
}
@media (max-width: 600px) {
  .offers .offer-card + .offer-card {
    margin-top: 22px;
  }
}

.offer-card {
  display: flex;
  gap: 30px;
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.9) 0%,
    rgba(26, 20, 18, 0.95) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15);
  align-items: center;
}

.offer-card.featured {
  border-color: #d4af37;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35),
    0 0 45px rgba(212, 175, 55, 0.25);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.45),
    0 0 60px rgba(212, 175, 55, 0.35);
}

.offer-left-col {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.offer-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.offer-metrics-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 350px;
  gap: 15px;
}

.offer-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 10px;
}

.offer-content h3 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #d4af37;
  font-size: 1.2rem;
}

.rating-text {
  margin-left: 10px;
  color: #c9b896;
  font-weight: 600;
}

.offer-description {
  color: #d4c5a9;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.payment-label {
  color: #c9b896;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-badge {
  background: rgba(139, 46, 46, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-cta {
  flex-shrink: 0;
  text-align: center;
}

.btn-cta {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #1a1412;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
  transform: translateY(-3px);
}

.offer-terms {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #8b7355;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0) 0%,
    rgba(42, 32, 24, 0.3) 100%
  );
}

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

.review-card {
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.8) 0%,
    rgba(26, 20, 18, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.review-rating {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.review-text {
  color: #d4c5a9;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.review-author {
  color: #d4af37;
  font-weight: 600;
  text-align: right;
}

/* ==========================================================================
   Security Section
   ========================================================================== */
.security {
  background: linear-gradient(
    180deg,
    rgba(139, 46, 46, 0.05) 0%,
    rgba(26, 20, 18, 0) 100%
  );
}

.security-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  color: #d4c5a9;
  line-height: 1.8;
}

.security-intro p {
  margin-bottom: 20px;
}

.subsection-title {
  text-align: center;
  font-size: 2rem;
  color: #d4af37;
  margin: 60px 0 30px;
}

.trust-text {
  max-width: 900px;
  margin: 0 auto 50px;
  color: #d4c5a9;
  line-height: 1.8;
  text-align: center;
}

.trust-text p {
  margin-bottom: 20px;
}

.certifications-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cert-card {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.8) 0%,
    rgba(26, 20, 18, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.cert-card h4 {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.cert-card p {
  color: #d4c5a9;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0) 0%,
    rgba(42, 32, 24, 0.3) 100%
  );
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  font-size: 1.2rem;
  color: #d4c5a9;
  margin-bottom: 20px;
}

.contact-info {
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.8) 0%,
    rgba(26, 20, 18, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-info a {
  color: #d4af37;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  word-break: break-all;
}

.contact-info a:hover {
  color: #f4d03f;
  text-decoration: underline;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
  background: linear-gradient(
    180deg,
    rgba(139, 46, 46, 0.05) 0%,
    rgba(26, 20, 18, 0) 100%
  );
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.8) 0%,
    rgba(26, 20, 18, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4af37;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.faq-question {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.faq-answer {
  color: #d4c5a9;
  line-height: 1.8;
}

/* ==========================================================================
   Banners Section
   ========================================================================== */
.banners {
  background: linear-gradient(
    180deg,
    rgba(26, 20, 18, 0) 0%,
    rgba(42, 32, 24, 0.3) 100%
  );
}

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

.banner-placeholder {
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.6) 0%,
    rgba(26, 20, 18, 0.8) 100%
  );
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 80px 20px;
  text-align: center;
  color: #8b7355;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.banner-placeholder:hover {
  border-color: #d4af37;
  background: rgba(139, 46, 46, 0.1);
}

/* Баннер-сеттер - новый стиль для новой сетки баннеров */
.new-banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  justify-items: center;
  align-items: center;
}

.banner-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #241a18 0%, #151010 100%);
  border-radius: 15px;
  transition: box-shadow 0.3s, border 0.3s;
  height: 110px;
  min-width: 0;
  width: 100%;
  border: 2px solid transparent;
  box-shadow: 0 2px 12px rgba(30, 20, 15, 0.13), 0 0 0px #fff0;
}

.banner-link:hover {
  border: 2px solid #d4af37;
  box-shadow: 0 6px 32px #d4af3720, 0 1px 2px #0006;
}

.banner-img-white {
  width: auto;
  height: 60px;
  max-width: 120px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px #fff8);
  object-fit: contain;
  margin: 0;
  padding: 0;
}

@media (max-width: 1050px) {
  .new-banners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .new-banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .new-banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .banner-link {
    height: 90px;
    min-width: 0;
  }
  .banner-img-white {
    height: 42px;
    max-width: 85px;
  }
  /* Нечетный последний по центру */
  .new-banners-grid > .banner-link:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 60%;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0b0b0b;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding: 60px 0 30px;
  margin-top: 50px;
}

.footer-responsible {
  margin-bottom: 40px;
}

.responsible-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(42, 32, 24, 0.8) 0%,
    rgba(26, 20, 18, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
}

.responsible-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.responsible-text h3 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.responsible-text h4 {
  color: #c9b896;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.responsible-text p {
  color: #d4c5a9;
  line-height: 1.8;
  margin-bottom: 10px;
}

.age-warning {
  font-weight: 700;
  color: #d4af37;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px 0;
}

.footer-links a {
  color: #c9b896;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  text-align: center;
  color: #8b7355;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-page {
  padding: 8px 0 6px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #d4af37;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.legal-updated {
  color: #8b7355;
  font-style: italic;
  margin-bottom: 40px;
}

.legal-page section {
  /* padding: 35px 0; */
}
.legal-page .section-title {
  margin-bottom: 18px;
  font-size: 2rem;
}
.legal-section {
  margin-bottom: 24px;
  /* padding-bottom: 8px; */
}

.legal-section h2 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 14px;
  margin-top: 18px;
}

.legal-section h3 {
  color: #c9b896;
  font-size: 1.4rem;
  margin-bottom: 10px;
  margin-top: 14px;
}

.legal-section p {
  color: #d4c5a9;
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

.legal-section li {
  color: #d4c5a9;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-section a {
  color: #d4af37;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  color: #f4d03f;
}

.legal-section strong {
  color: #e8e2d5;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 12px;
  text-align: left;
}

.cookie-table th {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-weight: 600;
}

.cookie-table td {
  color: #d4c5a9;
}

/* ==========================================================================
   Responsive Design - Tablet
   ========================================================================== */
@media (max-width: 900px) {
  /* Show burger menu */
  .burger-icon {
    display: flex;
  }

  /* Hide regular nav and position for slide-in */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(
      180deg,
      rgba(26, 20, 18, 0.98) 0%,
      rgba(42, 32, 24, 0.98) 100%
    );
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav a {
    font-size: 1.3rem;
  }

  /* When checkbox is checked, show nav */
  .burger-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  /* Animate burger to X */
  .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(2) {
    transform: scale(0);
    opacity: 0;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }

  /* Larger CTA for offers on mobile */
  .offer-card {
    flex-direction: column;
    text-align: center;
  }

  .offer-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .btn-cta {
    font-size: 1.4rem;
    padding: 20px 50px;
  }

  .features-row {
    flex-direction: row;
    justify-content: center;
  }

  .feature-item {
    flex: 0 0 auto;
  }

  .certifications-row {
    flex-direction: column;
    align-items: center;
  }

  .cert-card {
    max-width: 100%;
    width: 100%;
  }

  .responsible-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ==========================================================================
   Responsive Design - Mobile
   ========================================================================== */
@media (max-width: 900px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-subtitle {
    display: none;
  }

  .verified-section h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .features-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4px;
    max-width: 100%;
    flex-wrap: nowrap;
  }

  .feature-item {
    padding: 5px 8px;
    font-size: 0.65rem;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 3px;
    flex: 1;
    min-width: 0;
  }

  .feature-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .feature-text {
    font-size: 0.6rem;
    white-space: normal;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }

  .offers .offers-after-img {
    display: none;
  }

  .offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
  }

  .offer-left-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .offer-logo {
    width: 100%;
    height: auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .offer-logo-img {
    height: 60px;
    max-width: 100%;
  }

  .offer-metrics-row {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    font-size: 0.65rem;
  }

  .metric-item {
    font-size: 0.65rem;
    flex: 1;
  }

  .offer-content {
    display: flex;
    flex-direction: column;
  }

  .bonus-title {
    font-size: 0.8rem;
    margin: 0 0 6px 0;
  }

  .offer-description {
    font-size: 0.72rem;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .payment-methods {
    gap: 4px;
    margin-bottom: 10px;
  }

  .payment-label {
    display: none;
  }

  .payment-icons {
    gap: 4px;
    flex-wrap: wrap;
  }

  .payment-badge {
    font-size: 0.65rem;
    padding: 3px 7px;
  }

  .btn-cta {
    font-size: 0.9rem;
    padding: 10px 16px;
    margin-top: auto;
  }

  .offer-terms {
    font-size: 0.65rem;
    margin-top: 6px;
  }

  .rating {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .verified-section {
    margin-top: 30px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .cookie-banner {
    padding: 10px 12px;
    max-height: 50vh;
    overflow-y: auto;
  }

  .cookie-content {
    padding: 0;
  }

  .cookie-content h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .cookie-content p {
    font-size: 0.7rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .cookie-buttons {
    flex-direction: row;
    gap: 6px;
  }

  .cookie-buttons .btn-primary,
  .cookie-buttons .btn-secondary {
    flex: 1;
    padding: 8px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
  }

  .offer-content h3 {
    font-size: 1.5rem;
  }

  .payment-methods {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    width: 100%;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .cookie-table {
    font-size: 0.85rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px;
  }

  .features-row {
    gap: 10px;
  }

  .feature-item {
    padding: 10px 15px;
  }

  .feature-text {
    font-size: 0.85rem;
  }

  .contact-info a {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  body::before,
  body::after {
    display: none;
  }

  .header,
  .modal-overlay,
  .cookie-banner,
  .burger-icon,
  .footer-links {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section-title,
  .legal-section h2,
  .legal-section h3 {
    color: black;
  }
}

/* Фоновая картинка на весь сайт */
.background-img-bg {
  position: fixed;
  left: 0;
  top: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  opacity: 0.2;
  pointer-events: none;
  filter: none;
  user-select: none;
  border-radius: 0 !important;
  transform: none !important;
}

@media (max-width: 700px) {
  .background-img-bg {
    min-width: 480px;
    left: 50vw;
    top: 55vh;
  }
}

.light-bg {
  background: linear-gradient(120deg, #f5f0ea 65%, #fcfaf7 100%);
  box-shadow: 0 2px 30px #dbcaaa2b, 0 1px 0 #fff5 inset;
}

/* Хиро-изображение */
.main-hero-img {
  display: block;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 340px;
  max-height: 340px;
  border-radius: 24px;
  box-shadow: 0 8px 42px 0 #b08f3528, 0 0 0 #fff0;
  object-fit: cover;
}
@media (max-width: 600px) {
  .main-hero-img {
    max-width: 90vw;
    max-height: 180px;
    border-radius: 18px;
  }
}

/* Картинка в офферс-секции */
.offers-after-img {
  display: block;
  margin: 20px auto 32px auto;
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  box-shadow: 0 3px 34px #d8b34f2b;
  object-fit: cover;
}

/* Перекрытие фонов для новых light-bg */
.reviews.light-bg,
.security.light-bg,
.contact.light-bg,
.banners.light-bg,
.faq.light-bg,
.offers.light-bg {
  background: linear-gradient(120deg, #f5f0ea 65%, #fcfaf7 100%) !important;
}

.offer-logo-img {
  display: block;
  width: 100%;
  height: 95px;
  max-width: 110px;
  margin: 0 auto;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none;
}

.offer-metrics {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.metric-item {
  font-size: 0.95rem;
  color: #c9b896;
  font-weight: 500;
}

.bonus-title {
  font-size: 1.2rem;
  color: #d4af37;
  margin: 0 0 12px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.hero {
  position: relative;
  z-index: 2;
}
.hero-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  user-select: none;
  border-radius: 0 !important;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    120% 100% at 50% 0%,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hero .container,
.hero-content {
  position: relative;
  z-index: 3;
}

.section-bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.24;
  pointer-events: none;
  user-select: none;
  border-radius: 24px;
}
.container {
  position: relative;
}
