@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {box-sizing: border-box;margin:0;padding:0}
html,body{height:100%}
.zzrb-body {
  font-family: 'Poppins', sans-serif;
  background: #0d0b2e; /* тёмный ночной фон */
  color: #f0c0ff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
h1, h2, h3 {
  font-family: 'Audiowide', cursive;
  color: #ff48c4;
}
a {
  text-decoration: none;
  color: #ff48c4;
}
/* ================= CONTAINER ================= */
.zzrb-container { max-width:1200px;margin:0 auto;padding:0 20px;}

/* ================= HEADER ================= */
.zzrb-header { 
  position:sticky; top:0; z-index:50; 
   background: #1e1e1e;
  box-shadow: 0 6px 20px rgba(255,72,196,0.2); 
}
.zzrb-header-row { display:flex;align-items:center;justify-content:space-between;padding:14px ; gap:16px; }
.zzrb-brand { display:flex; align-items:center; gap:12px; color: #48ffff; text-decoration:none; font-weight:800; }
.zzrb-logo { font-size:26px; transform:translateY(-2px) }
.zzrb-site-name { font-size:1.25rem; letter-spacing:0.4px; color: #ff48c4; }
.zzrb-site-name span { color:#ffd700 } 

.zzrb-nav { display:flex; gap:20px; align-items:center; }
.zzrb-nav a { color: #ff48c4; font-weight:700; padding:8px 10px; border-radius:8px; transition:all .18s; text-decoration:none; }
.zzrb-nav a:hover { background: rgba(72,255,255,0.1); color: #ffd700; transform:translateY(-2px) }

.zzrb-burger { display:none; width:42px;height:36px; background:transparent;border:none; cursor:pointer; padding:6px; align-items:center; justify-content:center; }
.zzrb-burger span { display:block; height:3px; background:#59d9e5; border-radius:3px; margin:5px 0; transition:all .25s }

.zzrb-burger.active span:nth-child(1){ transform:rotate(45deg) translate(6px,6px) }
.zzrb-burger.active span:nth-child(2){ opacity:0; transform:translateX(-10px) }
.zzrb-burger.active span:nth-child(3){ transform:rotate(-45deg) translate(6px,-6px) }

/* ================= HERO ================= */
.zzrb-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.zzrb-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.zzrb-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideAnimation 15s infinite;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.zzrb-slide:nth-child(1) { animation-delay: 0s; }
.zzrb-slide:nth-child(2) { animation-delay: 5s; }
.zzrb-slide:nth-child(3) { animation-delay: 10s; }

@keyframes slideAnimation {
  0%, 33% { opacity: 1; }
  33.1%, 100% { opacity: 0; }
}

.zzrb-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}


.zzrb-hero-left {
  max-width: 55%;
}

.zzrb-kicker {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.zzrb-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.zzrb-hero-lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.zzrb-btn {
  display: inline-block;
  background: #ffd700;
  color: #000;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zzrb-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

.zzrb-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zzrb-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zzrb-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  gap: 0.8rem;
}

.zzrb-benefit-icon {
  width: 36px;
  height: 36px;
  fill: #ffd700;
  transition: transform 0.3s;
}

.zzrb-benefits li:hover .zzrb-benefit-icon {
  transform: scale(1.2);
}

/* ===== Parallax Effect ===== */
.zzrb-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ================= OFFERS ================= */
.zzrb-offers {
  background: #0d0d0d;
  color: #fff;
  padding: 6rem 0;
}

.zzrb-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.zzrb-kicker-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.zzrb-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.zzrb-section-sub {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Карточка предложения --- */
.zzrb-offer-highlight {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.zzrb-offer-highlight:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.1);
}

.zzrb-offer-banner {
  flex: 1 1 200px;
  background: #1a1a1a;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zzrb-offer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

.zzrb-offer-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #ffd700;
}

.zzrb-stars {
  font-size: 1.2rem;
}

.zzrb-score {
  font-weight: 600;
}

.zzrb-offer-content {
  flex: 2 1 400px;
  padding: 2rem;
}

.zzrb-offer-title {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.zzrb-offer-desc {
  margin-bottom: 1rem;
  color: #ccc;
}

.zzrb-offer-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.zzrb-offer-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.zzrb-offer-features li svg {
  width: 18px;
  height: 18px;
  color: #ffd700;
  flex-shrink: 0;
}

.zzrb-offer-action {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zzrb-btn.zzrb-btn-gold {
  background: linear-gradient(90deg, #ffd700, #ffa500);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 220px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zzrb-btn.zzrb-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.zzrb-legal {
  font-size: 0.8rem;
  color: #aaa;
}
/* ================= ABOUT ================= */
.zzrb-features-block {
  background: #1a1a1a;
  color: #fff;
  padding: 6rem 0;
  position: relative;
}

.zzrb-features-block-top {
  text-align: center;
  margin-bottom: 3rem;
}

.zzrb-kicker-small {
  color: #ffd700;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.zzrb-features-block-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.zzrb-features-block-sub {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Сетка --- */
.zzrb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* --- Преимущества --- */
.zzrb-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.zzrb-feature:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.15);
}

.zzrb-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  transition: transform 0.3s ease;
}

.zzrb-feature:hover .zzrb-feature-icon {
  transform: scale(1.3) rotate(10deg);
}

.zzrb-feature h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.zzrb-feature p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
}

.zzrb-about {
  background: #0d0d0d;
  color: #fff;
  padding: 6rem 0;
}

.zzrb-about-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, background 0.3s ease;
}

.zzrb-about-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.08);
}

.zzrb-about-card-content {
  flex: 1 1 50%;
  padding: 2rem;
}

.zzrb-about-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.zzrb-about-card-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

.zzrb-about-card-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.zzrb-card-reverse {
  flex-direction: row-reverse;
}
.zzrb-values-parallax {
  position: relative;
  background-image: url('../img/values-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #e0f7ff;
  overflow: hidden;
}

.zzrb-values-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,16,38,0.8);
  z-index: 1;
}

.zzrb-values-cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.zzrb-values-card {
  background: linear-gradient(135deg, #0f2a44, #061026);
  border-radius: 25px;
  padding: 40px 30px;
  flex: 1 1 380px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,255,212,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zzrb-values-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(0,255,212,0.35);
}


.zzrb-values-icon {
  font-size: 3rem;
  color: #48ffff;
  margin-bottom: 20px;
}

.zzrb-values-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffd700, #1f8fff);
  -webkit-background-clip: text;
  color: transparent;
}

.zzrb-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #c0f0ff;
  text-align: left;
}

.zzrb-values-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.zzrb-text-gold {
  color: #ff48c4;
  margin-right: 8px;
}






@media (max-width: 992px) {
  .zzrb-about-card, .zzrb-card-reverse {
    flex-direction: column;
  }
  .zzrb-about-card-image, .zzrb-about-card-content {
    flex: 1 1 100%;
    text-align: center;
  }
  .zzrb-about-card-title {
    justify-content: center;
  }
  .zzrb-about-card,
  .zzrb-card-reverse {
    flex-direction: column;
    text-align: center;
  }
  .zzrb-card-reverse .zzrb-about-card-content {
    order: 2;
  }
  .zzrb-card-reverse .zzrb-about-card-image {
    order: 1;
  }
  .zzrb-about-card,
  .zzrb-card-reverse {
    flex-direction: column;
    text-align: center;
  }
  .zzrb-card-reverse .zzrb-about-card-content {
    order: 2;
  }
  .zzrb-card-reverse .zzrb-about-card-image {
    order: 1;
  }
}




@keyframes cbGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.zzrb-about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.zzrb-about-row:last-child {
  margin-bottom: 0;
}

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

.zzrb-about-text {
  flex: 1;
}

.zzrb-about-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #48ffff;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.zzrb-about-text p {
  line-height: 1.7;
  color: #e8f5ed;
  font-size: 1.05rem;
}

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

.zzrb-about-image {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 20px rgba(0, 128, 96, 0.3);
  transition: all 0.4s ease;
}

.zzrb-about-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 255, 180, 0.4);
}

#zzrb-faq {
  padding: 80px 0;
  background: #1e1e1e;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
#zzrb-faq .zzrb-section-head {
  text-align: center;
  margin-bottom: 50px;
}
#zzrb-faq .zzrb-kicker-small {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
#zzrb-faq .zzrb-section-title {
  font-size: 36px;
  margin-bottom: 15px;
}
#zzrb-faq .zzrb-section-sub {
  font-size: 16px;
  color: #ccc;
}

.zzrb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.zzrb-faq-item {
  background: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.zzrb-faq-question i {
  margin-right: 10px;
  color: #d4af37;
}

.zzrb-faq-icon {
  font-size: 24px;
  color: #d4af37;
  transition: transform 0.3s ease;
}

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

.zzrb-faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: #ccc;
  display: none;
  line-height: 1.6;
}

.zzrb-faq-item.active .zzrb-faq-answer {
  display: block;
}
section#zzrb-faq {
  padding: 10% 0;
}
.zzrb-icon {
  font-size: 1.2rem;
  color: #48ffff;
  transition: transform 0.3s ease;
}

.zzrb-icon.rotated {
  transform: rotate(45deg);
}
.zzrb-section.zzrb-alt {
  background: linear-gradient(180deg, #001f4d 0%, rgba(128,0,32,0.3) 100%);
  color: #fff;
  padding: 80px 0;
}

.zzrb-section-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #48ffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.zzrb-text-muted {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.zzrb-btn.zzrb-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #ffd700;
  color: #48ffff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.zzrb-btn.zzrb-btn-line:hover {
  background-color: #48ffff;
  color: #001f4d;
  box-shadow: 0 0 10px #ffd700a6;
}

.zzrb-list.zzrb-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zzrb-list.zzrb-checklist li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  color: #f0f0f0;
}

.zzrb-text-gold {
  color: #48ffff;
}

.zzrb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.zzrb-col {
  flex: 1;
  min-width: 280px;
}
/* ================= FOOTER ================= */
#zzrb-footer {
  background: #1e1e1e;
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 60px 0 40px;
}

.zzrb-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.zzrb-footer a:hover {
  color: #d4af37;
}

/* Top Section */
.zzrb-footer-top {
  text-align: center;
  margin-bottom: 50px;
}
.zzrb-footer-logo span {
  font-size: 28px;
  font-weight: 700;
  color: #d4af37;
}
.zzrb-footer-tagline {
  font-size: 14px;
  color: #ccc;
  margin-top: 8px;
}

/* Footer Cards */
.zzrb-footer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.zzrb-footer-card {
  flex: 1 1 250px;
}
.zzrb-footer-card h4 {
  font-size: 18px;
  color: #d4af37;
  margin-bottom: 12px;
}
.zzrb-footer-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zzrb-footer-card ul li {
  margin-bottom: 8px;
}
.zzrb-footer-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* Logos Grid */
.footer-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
  align-items: center;
  margin-top: 15px;
}
.footer-logos-grid img {
  width: 100%;
  max-width: 80px;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.3s, filter 0.3s;
}
.footer-logos-grid img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Bottom Section */
.zzrb-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}
.zzrb-burger {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  transition: transform 0.3s ease;
}

.zzrb-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  transition: all 0.35s ease;
}


.zzrb-burger span:nth-child(1) {
  top: 0;
}
.zzrb-burger span:nth-child(2) {
  top: 9px;
}
.zzrb-burger span:nth-child(3) {
  top: 18px;
}
.zzrb-burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  background: #ffd700;
}
.zzrb-burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.zzrb-burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
  background: #ffd700;
}

.zzrb-burger:active {
  transform: scale(0.9);
}
.zzrb-age-popup {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 30, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.zzrb-age-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* Card */
.zzrb-popup-card {
  background: #1e1e1e;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  animation: popupScale 0.4s ease;
}
@keyframes popupScale {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Close Button */
.zzrb-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}
.zzrb-popup-close:hover {
  color: #d4af37;
}

/* Title and Text */
.zzrb-popup-card h2 {
  font-size: 24px;
  color: #d4af37;
  margin-bottom: 20px;
}
.zzrb-popup-text {
  font-size: 16px;
  color: #eee;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Buttons */
.zzrb-popup-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.zzrb-btn-primary {
  background: #d4af37;
  color: #1e1e1e;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.zzrb-btn-primary:hover {
  background: #c49a2c;
  transform: translateY(-2px);
}

.zzrb-btn-ghost {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.zzrb-btn-ghost:hover {
  background: #d4af37;
  color: #1e1e1e;
  transform: translateY(-2px);
}


/* ===== COOKIE POPUP (bottom) ===== */
.zzrb-cookie-popup {
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px;
  background: transparent;
  backdrop-filter: none;
  animation: none;
}

.zzrb-cookie-card {
  background: #014d35;
  color: #fff;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  max-width: 420px;
  width: 100%;
  animation: cbSlideUp 0.5s ease forwards;
}

.zzrb-cookie-card h3 {
  font-size: 1.1rem;
  color: #48ffff;
  margin-bottom: 0.6rem;
}

.zzrb-cookie-text {
  font-size: 0.9rem;
  color: #c0f0ff;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.zzrb-cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.zzrb-hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.zzrb-slide {
  position: absolute; /* <- важно */
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.zzrb-slide.active {
  opacity: 1;
  z-index: 1;
}
.zzrb-hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

/* ===== Slider Background ===== */
.zzrb-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zzrb-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.zzrb-slide.active {
  opacity: 1;
}

/* ===== Overlay ===== */
.zzrb-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* ===== Hero Inner ===== */
.zzrb-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Hero Left ===== */
.zzrb-hero-left {
  flex: 1 1 500px;
  min-width: 300px;
}

.zzrb-kicker {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  
  margin-bottom: 0.5rem;
}



.zzrb-hero-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0ff;
}

/* ===== Hero Right (Age Alert) ===== */
.zzrb-hero-right {
  flex: 0 0 480px;
  max-width: 100%;
}

.zzrb-age-alert {
  height: max-content;
  background: #47463e;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255,215,0,0.25);
  border: 2px solid rgba(255,215,0,0.3);
}

.zzrb-age-alert h2 {
  font-size: 2rem;
  color: #ff48c4;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}

.zzrb-age-alert p {
  font-size: 1rem;
  color: #e0e0ff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.zzrb-age-divider {
  width: 60px;
  height: 3px;
  background: #800020;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}
.zzrb-age-popup {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,30,0.95), rgba(51,0,34,0.95));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.zzrb-age-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== Popup Card ===== */
.zzrb-popup-card {
  background: #47463e;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255,215,0,0.25);
  border: 2px solid rgba(255,215,0,0.3);
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease;
}

.zzrb-age-popup.active .zzrb-popup-card {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Close Button ===== */
.zzrb-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #ff48c4;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.zzrb-popup-close:hover {
  transform: scale(1.2);
}

/* ===== Title ===== */
.zzrb-popup-card h2 {
  font-size: 2rem;
  color: #ff48c4;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Text ===== */
.zzrb-popup-text {
  color: #e0e0ff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.zzrb-popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.zzrb-btn-primary {
  background: #ffd700;
  color: #47463e;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.zzrb-btn-primary:hover {
   background: #ff88d0; box-shadow: 0 0 15px rgba(255,72,196,0.4);
  transform: translateY(-2px);
  
}

.zzrb-btn-ghost {
  background: transparent;
  color: #ff48c4;
  border: 1px solid #ffd700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zzrb-btn-ghost:hover {
  background: rgba(255,72,196,0.2);
}
#zzrb-age-popup {
  display: none; /* Скрыт по умолчанию */
  position: fixed;
  inset: 0;
  background: rgba(66, 19, 51, 0.637);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}



.zzrb-privacy {
  background: #1e1e1e;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #333;
}

.zzrb-privacy-intro {
  text-align: center;
  font-size: 1.15rem;
  max-width: 850px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
  color: #fff;
}

.zzrb-privacy-block {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px 30px 80px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.zzrb-block-icon {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 40px;
  height: 40px;
  fill: #ff48c4;
}

.zzrb-privacy-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.zzrb-privacy-block h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff48c4;
}

.zzrb-privacy-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.zzrb-privacy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}
.zzrb-privacy-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #444;
}
.zzrb-privacy-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff48c4;
  font-weight: bold;
}
  #zzrb-age-popup.active {
  display: flex;
  opacity: 1;
}
.zzrb-top-banner {
    background-color: #ff48c4;
    color: #000;
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .zzrb-features-block {
    padding: 4rem 1rem;
  }
  .zzrb-features-block-title {
    font-size: 2rem;
  }
#zzrb-burger {
  position: relative;
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  background: transparent;
  z-index: 2000;
}

#zzrb-burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.4s ease;
}


  #zzrb-burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(2px);
}

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

#zzrb-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-2px);
}

#zzrb-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg,#330022,#0d0b2e);
  backdrop-filter: blur(6px);
  transition: right 0.5s ease;
  z-index: 1500;
  padding-top: 80px;
}

#zzrb-nav.active {
  right: 0;
  margin-left: -20px;
  align-items: flex-start;
}

#zzrb-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

#zzrb-nav a {
  color: #ff48c4;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

#zzrb-nav a:hover {
  color: #48ffff;
}

  .zzrb-hero {
    
    height: max-content;
  }
  .zzrb-hero-ctas {
    justify-content: space-evenly;
  }
  
  .zzrb-footer-logos-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .zzrb-hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .zzrb-hero-right {
    margin-top: 40px;
  }

  .zzrb-hero-title {
    font-size: 2.2rem;
  }
  
  .zzrb-offer-highlight {
    flex-direction: column;
  }
  .zzrb-offer-banner, .zzrb-offer-content {
    flex: 1 1 100%;
  }
  .zzrb-section-title {
    font-size: 2rem;
  }
  .zzrb-footer-grid { grid-template-columns:1fr }
  .zzrb-nav { display:none; position:absolute; top:66px; left:16px; right:16px; background:#fff; border-top-right-radius:12px; border-bottom-right-radius:12px; padding:14px; box-shadow:0 10px 30px rgba(0,0,51,0.2) }
  .zzrb-nav.active { display:flex; flex-direction:column; gap:8px }
  .zzrb-burger { display:flex }
  .zzrb-about-row {
    flex-direction: column-reverse;
    text-align: center;
  }

  
}

@media (max-width: 768px) {
  .zzrb-privacy-intro {
    font-size: 1.2rem;
  }
  .zzrb-privacy-block h2 {
    font-size: 1.3rem;
  }
  .zzrb-privacy-list {
    padding-left: 25px;
  }
  .zzrb-section-subtitle {
    font-size: 1.3rem;
  }
  .zzrb-btn.zzrb-btn-line {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}