/* Betbrzo — Emerald & Gold Theme (mluk- prefixed) */
/* ================= RESET ================= */
* {box-sizing: border-box;margin:0;padding:0}
html,body{height:100%}
.mluk-body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #f5fff8;
  color: #073d2f;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

/* ================= HEADER ================= */
.mluk-header { 
  position:sticky; top:0; z-index:50; 
  background: linear-gradient(180deg, #3b2f2f 0%, #5c4a3a 100%); 
  box-shadow:0 6px 20px rgba(0,95,75,0.08); 
}
.mluk-header-row { display:flex;align-items:center;justify-content:space-between;padding:14px ; gap:16px; }
.mluk-brand { display:flex; align-items:center; gap:12px; color:#d4af37; text-decoration:none; font-weight:800; }
.mluk-logo { font-size:26px; transform:translateY(-2px) }
.mluk-site-name { font-size:1.25rem; letter-spacing:0.4px }
.mluk-site-name span { color:#e4c465 } 

.mluk-nav { display:flex; gap:20px; align-items:center; }
.mluk-nav a { color:#d4af37; font-weight:700; padding:8px 10px; border-radius:8px; transition:all .18s; text-decoration:none; }
.mluk-nav a:hover { background: rgba(0,95,75,0.06); transform:translateY(-2px) }

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

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

/* ================= HERO ================= */
.mluk-hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(0deg, #3b2f2f 0%, #5c4a3a 100%);
  color: #f5e6d2;
  font-family: "Inter", sans-serif;
}

.mluk-hero-new::before {
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  z-index:1;
}

.mluk-hero-new .mluk-container {
  position: relative;
  z-index:2;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  padding:80px 20px;
  gap:40px;
}

.mluk-hero-text {
  flex:1;
  min-width:280px;
}

.mluk-hero-text .mluk-kicker-new {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  padding:6px 14px;
  border-radius:50px;
  background: linear-gradient(135deg, #a67c52, #d4af37);
  color:#fff;
  font-size:0.9rem;
  margin-bottom:12px;
}

.mluk-hero-text h1 {
  font-size:2.3rem;
  font-weight:800;
  color:#f5e6d2;
  margin-bottom:20px;
  line-height:1.2;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.mluk-hero-text p {
  font-size:1.05rem;
  line-height:1.6;
  max-width:520px;
  color:#f7ecd9;
  margin-bottom:30px;
}

.mluk-hero-buttons {
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.mluk-btn-glow {
  background: linear-gradient(135deg, #d4af37, #f5e6d2);
  color:#4b2e2a;
  font-weight:700;
  padding:12px 24px;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(212,175,55,0.4);
  transition: all 0.3s ease;
}

.mluk-btn-glow:hover {
  transform: translateY(-3px);
  box-shadow:0 10px 28px rgba(212,175,55,0.6);
}

.mluk-btn-outline {
  border:2px solid #d4af37;
  color:#d4af37;
  background:transparent;
  padding:12px 24px;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  transition:all 0.3s ease;
}

.mluk-btn-outline:hover {
  background:#d4af37;
  color:#4b2e2a;
  box-shadow:0 0 12px rgba(212,175,55,0.5);
}

.mluk-hero-image-block {
  flex:1;
  min-width:250px;
  display:flex;
  justify-content:center;
  position:relative;
}

.mluk-hero-image-block img {
  max-width:100%;
  border-radius:20px;
  box-shadow:0 15px 50px rgba(0,0,0,0.3);
  transform:rotate(-2deg);
  transition: all 0.5s ease;
  animation: mlukFloatCard 4s ease-in-out infinite;
}

.mluk-hero-image-block::after {
  content:"";
  position:absolute;
  top:-20px;
  left:-20px;
  width:120%;
  height:120%;
  background:rgba(212,175,55,0.05);
  border-radius:25px;
  transform:rotate(-5deg);
}

@keyframes mlukFloatCard {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

/* Decorative shapes */
.mluk-hero-shapes span {
  position:absolute;
  border-radius:50%;
  background: rgba(212,175,55,0.05);
  pointer-events:none;
}


/* ===== Parallax Effect ===== */
.mluk-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ================= OFFERS ================= */
.mluk-offers-modern {
  background: linear-gradient(180deg, #3b2f2f 0%, #5c4a3a 100%);
  color: #f4ecd8;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.mluk-offers-header {
  text-align: center;
  margin-bottom: 60px;
}

.mluk-kicker-modern {
  display: inline-block;
  background: linear-gradient(135deg, #8c6c42, #c9a76a);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.mluk-offers-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #f4ecd8;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.mluk-offers-subtitle {
  font-size: 1.05rem;
  color: #e0d6b9;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Card ===== */
.mluk-offer-card {
  display: flex;
  background: linear-gradient(145deg, #4b3c34, #362b23);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mluk-offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ===== Left visual block ===== */
.mluk-offer-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(139,108,66,0.1), rgba(201,167,106,0.1));
}

.mluk-offer-logo-wrapper {
  background: #5c4937;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.mluk-offer-logo-modern {
  max-width: 140px;
  display: block;
}

.mluk-offer-rating-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mluk-stars-modern {
  color: #d4af37;
  font-size: 1.3rem;
}

.mluk-score-modern {
  color: #f4ecd8;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== Right content block ===== */
.mluk-offer-details {
  flex: 2;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mluk-offer-title-modern {
  font-size: 2rem;
  color: #d4af37;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mluk-offer-desc-modern {
  font-size: 1rem;
  color: #e0d6b9;
  line-height: 1.6;
  margin-bottom: 25px;
}

.mluk-offer-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 20px;
}

.mluk-offer-features-modern li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f4ecd8;
  font-size: 0.97rem;
}

.mluk-offer-features-modern i {
  color: #d4af37;
  font-size: 1.1rem;
}

/* ===== Action button ===== */
.mluk-offer-actions-modern {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.mluk-btn-modern {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mluk-btn-gold-modern {
  background: linear-gradient(135deg, #c9a76a, #8c6c42);
  color: #3b2f2f;
  box-shadow: 0 6px 20px rgba(196,163,95,0.4);
}

.mluk-btn-gold-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196,163,95,0.6);
}

.mluk-legal-modern {
  font-size: 0.85rem;
  color: #d8caa5;
}
/* ================= ABOUT ================= */
.mluk-features-modern {
  background: linear-gradient(0deg, #3b2f2f 0%, #5c4937 100%);
  color: #f4ecd8;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.mluk-features-header {
  text-align: center;
  margin-bottom: 60px;
}

.mluk-kicker-modern {
  display: inline-block;
  background: linear-gradient(135deg, #c9a76a, #8c6c42);
  color: #3b2f2f;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.mluk-features-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.mluk-features-subtitle {
  font-size: 1rem;
  color: #e0d6b9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Features cards grid ===== */
.mluk-features-cards {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(380px, 2fr));
    gap: 85px;
}
.mluk-feature-card {
  background: linear-gradient(145deg, #4b3c34, #362b23);
  border-radius: 20px;
  padding: 30px 55px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mluk-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.mluk-feature-icon-wrapper {
  background: linear-gradient(135deg, #c9a76a, #8c6c42);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #3b2f2f;
  box-shadow: 0 6px 20px rgba(196,163,95,0.4);
  transition: transform 0.3s ease;
}

.mluk-feature-card:hover .mluk-feature-icon-wrapper {
  transform: scale(1.1);
}

.mluk-feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 12px;
}

.mluk-feature-text {
  font-size: 0.95rem;
  color: #e0d6b9;
  line-height: 1.6;
}
.mluk-about-modern {
  background: linear-gradient(0deg, #3b2f2f 0%, #5c4937 100%);
  color: #f4ecd8;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.mluk-about-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: linear-gradient(145deg, #4b3c34, #362b23);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.mluk-about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

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

.mluk-about-icon {
  font-size: 3rem;
  color: #d4af37;
  background: linear-gradient(135deg, #c9a76a, #8c6c42);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(196,163,95,0.5);
  flex-shrink: 0;
}

.mluk-about-content {
  max-width: 600px;
}

.mluk-about-title {
  font-size: 2rem;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.mluk-about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0d6b9;
}

.mluk-about-image-wrapper {
  flex-shrink: 0;
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.mluk-about-image-wrapper:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.mluk-about-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.mluk-faq-modern {
  background: linear-gradient(0deg, #3b2f2f 0%, #5c4937 100%);
  color: #f4ecd8;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.mluk-section-head-modern {
  text-align: center;
  margin-bottom: 60px;
}

.mluk-section-head-modern .mluk-kicker-small {
  font-size: 1rem;
  color: #d4af37;
  margin-bottom: 8px;
}

.mluk-section-head-modern h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 12px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.mluk-section-head-modern p {
  font-size: 1rem;
  color: #e0d6b9;
}

.mluk-faq-grid {
  display: grid;
  gap: 25px;
}
.age-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-popup-content {
  background: #4b2e2a; /* кофейно-бронзовая гамма */
  color: #f3e6d1;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  font-family: 'Arial', sans-serif;
}

.age-popup h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.age-popup p {
  margin-bottom: 1.5rem;
}

.age-popup-buttons button {
  padding: 0.7rem 1.5rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.age-popup-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-yes {
  background: linear-gradient(135deg, #c6a216, #8b5e3c);
  color: #fff;
}

.btn-yes:hover {
  filter: brightness(1.1);
}

.btn-no {
  background: #7b3f2f;
  color: #fff;
}

.btn-no:hover {
  filter: brightness(1.1);
}
.mluk-faq-card {
  background: linear-gradient(145deg, #4b3c34, #362b23);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mluk-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.mluk-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 25px;
  font-weight: 600;
  color: #d4af37;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.mluk-faq-header:hover {
  background: rgba(212,175,55,0.1);
}

.mluk-faq-toggle {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.mluk-faq-card.active .mluk-faq-toggle {
  transform: rotate(45deg);
}

.mluk-faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #e0d6b9;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mluk-faq-card.active .mluk-faq-body {
  max-height: 400px;
  padding: 15px 25px 25px 25px;
}
.mluk-icon {
  font-size: 1.2rem;
  color: #ffd700;
  transition: transform 0.3s ease;
}

.mluk-icon.rotated {
  transform: rotate(45deg);
}
.mluk-section.mluk-alt {
  background: linear-gradient(180deg, #0d1f14 0%, #123820 100%);
  color: #fff;
  padding: 80px 0;
}

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

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

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

.mluk-btn.mluk-btn-line:hover {
  background-color: #ffd700;
  color: #0d1f14;
  box-shadow: 0 0 10px #ffd700a6;
}

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

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

.mluk-text-gold {
  color: #ffd700;
}

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

.mluk-col {
  flex: 1;
  min-width: 280px;
}
.mluk-values-modern {
  background: linear-gradient(180deg, #3b2f2f 0%, #5c4937 100%);
  color: #f4ecd8;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.mluk-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.mluk-value-card {
  background: linear-gradient(145deg, #4a3a33, #3b2a23);
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
  padding: 30px 25px;
  flex: 1 1 400px;
  max-width: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mluk-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.mluk-value-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.mluk-value-card h3 {
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mluk-value-card p {
  color: #e0d6b9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mluk-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 8px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mluk-btn-outline:hover {
  background: #d4af37;
  color: #3b2a23;
}

.mluk-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mluk-value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #e0d6b9;
}

.mluk-value-list li i {
  color: #d4af37;
}
.mluk-contact {
  background: linear-gradient(0deg, #3b2f2f 0%, #5c4937 100%);
  color: #f4ecd8;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.mluk-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.mluk-contact-form, .mluk-contact-info {
  flex: 1 1 450px;
  max-width: 500px;
  background: linear-gradient(145deg, #4a3a33, #3b2a23);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mluk-contact-form:hover, .mluk-contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.mluk-contact-title {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mluk-contact-sub {
  margin-bottom: 25px;
  color: #e0d6b9;
  line-height: 1.6;
}

.mluk-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #f4ecd8;
}

.mluk-form input, 
.mluk-form textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: #5b4235;
  color: #f4ecd8;
}

.mluk-form input::placeholder,
.mluk-form textarea::placeholder {
  color: #d4af37;
}

.mluk-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4af37;
  color: #3b2a23;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mluk-btn-gold:hover {
  background: #e0c06e;
}

.mluk-contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.mluk-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #e0d6b9;
  font-weight: 500;
}

.mluk-contact-list li i {
  color: #d4af37;
}

.mluk-contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  width: 36px;
  height: 36px;
  background: #5b4235;
  border-radius: 50%;
  color: #d4af37;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mluk-contact-social a:hover {
  background: #d4af37;
  color: #3b2a23;
}
/* ================= FOOTER ================= */
.mluk-footer {
  background: linear-gradient(160deg, #3c2e2b, #5b4235);
  color: #f4ecd8;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.mluk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mluk-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mluk-footer-col {
  flex: 1 1 280px;
  min-width: 250px;
}
.mluk-footer-col h4 {
  margin-bottom: 10px;
}
.mluk-footer-logo span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
}

.mluk-footer-links {
  list-style: none;
  padding: 0;
}

.mluk-footer-links li {
  margin-bottom: 10px;
}

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

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

.mluk-footer-age {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #e0d6b9;
}

.footer-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-logos-grid a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logos-grid a:hover {
  transform: scale(1.1);
}

.footer-logos-grid img {
  height: 50px;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
}

.mluk-footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #c0a06b;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 15px;
}


.mluk-burger {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  transition: transform 0.3s ease;
}

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

/* Полоски в обычном состоянии */
.mluk-burger span:nth-child(1) {
  top: 0;
}
.mluk-burger span:nth-child(2) {
  top: 9px;
}
.mluk-burger span:nth-child(3) {
  top: 18px;
}
.mluk-burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  background: #d4af37;
}
.mluk-burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.mluk-burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
  background: #d4af37;
}

/* Анимация клика */
.mluk-burger:active {
  transform: scale(0.9);
}
.mluk-age-popup,
.mluk-cookie-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(1, 50, 32, 0.85);
  backdrop-filter: blur(6px);
  z-index: 1200;
  animation: cbFadeIn 0.4s ease forwards;
}

/* fade-in эффект */
@keyframes cbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== POPUP CARD ===== */
.mluk-popup-card {
  background: #014d35;
  color: #fff;
  max-width: 480px;
  width: 90%;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  position: relative;
  transform: translateY(-10px);
  animation: cbSlideUp 0.5s ease forwards;
}

/* slide-up эффект */
@keyframes cbSlideUp {
  to { transform: translateY(0); opacity: 1; }
}

/* ===== CLOSE BUTTON ===== */
.mluk-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}

.mluk-popup-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* ===== POPUP TEXT ===== */
.mluk-popup-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #d4af37;
  letter-spacing: 0.3px;
}

.mluk-popup-text {
  color: #eaeaea;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

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

.mluk-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: inherit;
}

.mluk-btn-primary {
  background: #d4af37;
  color: #013220;
}
.mluk-btn-primary:hover {
  background: #e3c052;
}

.mluk-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.mluk-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

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

.mluk-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;
}

.mluk-cookie-card h3 {
  font-size: 1.1rem;
  color: #d4af37;
  margin-bottom: 0.6rem;
}

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

.mluk-cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.crb-cookie-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1200;
  animation: fadeIn 0.4s ease forwards;
}

.crb-cookie-card {
  background: linear-gradient(135deg, #064e3b 0%, #052e24 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  width: 100%;
  margin: 20px;
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  transform: translateY(100%);
  animation: slideUp 0.6s ease forwards;
}

.crb-cookie-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 20px;
  color: #c5a100;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.crb-cookie-close:hover {
  color: #f7d84a;
  transform: rotate(90deg);
}

.crb-cookie-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #f7d84a;
}

.crb-cookie-text {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.crb-cookie-text a.crb-link {
  color: #f7d84a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.crb-cookie-text a.crb-link:hover {
  color: #ffd700;
}

.crb-cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.crb-btn {
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.crb-btn-primary {
  background-color: #f7d84a;
  color: #064e3b;
  border: none;
}

.crb-btn-primary:hover {
  background-color: #ffe877;
  color: #052e24;
}

.crb-btn-ghost {
  background-color: transparent;
  border: 1.5px solid #f7d84a;
  color: #f7d84a;
}

.crb-btn-ghost:hover {
  background-color: #f7d84a;
  color: #064e3b;
}
.mluk-privacy {
  background: linear-gradient(180deg, #3b2f2f 0%, #5c4a3a 100%);
  color: #fff;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  color: #f7d84a;
}

.mluk-privacy-intro {
  font-size: 1.15rem;
  margin-bottom: 50px;
  line-height: 1.6;
  text-align: center;
  color: #f7ecd9;
}

.mluk-privacy-block {
  background: rgba(255, 235, 200, 0.08);
  border-left: 4px solid #c69c6d;
  padding: 25px 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mluk-privacy-block:hover {
  background: rgba(255, 235, 200, 0.15);
  transform: translateY(-3px);
}

.mluk-privacy-block h2 {
  color: #ffd27f;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.mluk-privacy-block p,
.mluk-privacy-block ul li {
  font-size: 0.95rem;
  color: #f0e6d2;
  line-height: 1.6;
}

.mluk-privacy-list {
  margin: 10px 0 15px 20px;
  list-style-type: disc;
}

.mluk-privacy-list li {
  margin-bottom: 6px;
}

.mluk-privacy-block.final {
  border-left-color: #ffb84d;
  font-weight: 500;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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




/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .mluk-container {
    padding: 0 5px;
  }
.mluk-features-cards {
    
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}
  .mluk-hero-buttons {
    flex-wrap: nowrap;
  }
  .mluk-footer-logos-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .mluk-hero-new .mluk-container {
    flex-direction:column-reverse;
    text-align:center;
    padding:60px 20px;
  }

  .mluk-hero-image-block {
    margin-top:40px;
  }

  .mluk-hero-text h1 {
    font-size:1.6rem;
  }
  .mluk-features-grid { grid-template-columns:1fr }
  .mluk-offer-grid { grid-template-columns:1fr }
  .mluk-footer-grid { grid-template-columns:1fr }
  .mluk-nav { display:none; position:absolute; top:66px; left:16px; right:16px; background:linear-gradient(0deg, #3b2f2f 0%, #5c4a3a 100%); border-radius:12px; padding:14px; box-shadow:0 10px 30px rgba(0,95,75,0.08) }
  .mluk-nav.active { display:flex; flex-direction:column; gap:8px; align-items: flex-start; }
  .mluk-burger { display:flex }
  .mluk-about-card {
    flex-direction: column;
    text-align: center;
  }
  .mluk-about-reverse {
    flex-direction: column;
  }
  .mluk-about-image-wrapper {
    width: 100%;
    margin-top: 20px;
  }
  .mluk-offer-card {
    flex-direction: column;
    text-align: center;
  }

  .mluk-offer-visual {
    padding: 30px 0;
  }

  .mluk-offer-details {
    padding: 20px 15px;
  }

  .mluk-offer-actions-modern {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .mluk-section-subtitle {
    font-size: 1.3rem;
  }
  .mluk-btn.mluk-btn-line {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}