/* ===========================
   Global Styles & Reset
   =========================== */
* {
  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: #e0e0e0;
  background: #0a0a0f;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Site-wide background image placed in HTML */
.site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  pointer-events: none;
  opacity: 0.6;
}

/* Dark overlay for better text readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.7);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20% 30%,
      rgba(255, 215, 0, 0.15),
      transparent
    ),
    radial-gradient(2px 2px at 60% 70%, rgba(0, 105, 148, 0.15), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 215, 0, 0.1), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(0, 105, 148, 0.1), transparent);
  background-size: 200% 200%;
  animation: cityLights 20s ease-in-out infinite;
  z-index: -1;
  opacity: 0.3;
}

@keyframes cityLights {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

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

/* ===========================
   Typography
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #ffd700;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0a0f;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-cta {
  background: linear-gradient(135deg, #006994 0%, #00a8e8 100%);
  color: #fff;
  font-size: 1.2rem;
  padding: 15px 40px;
  box-shadow: 0 4px 15px rgba(0, 105, 148, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 105, 148, 0.6);
}

/* ===========================
   Age Verification Modal
   =========================== */
.modal {
  display: flex;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 2px solid #ffd700;
  box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
}

.age-modal-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd700;
}

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

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

.modal-buttons .btn {
  min-width: 120px;
}

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  z-index: 9999;
  border-top: 3px solid #ffd700;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text-wrapper {
  flex: 1;
}

.cookie-text-wrapper p {
  margin: 0 0 5px 0;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.cookie-links {
  font-size: 0.85rem;
  margin-top: 5px;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  color: #e0e0e0;
}

.cookie-content a {
  color: #ffd700;
  text-decoration: underline;
}

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

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

/* ===========================
   Header & Navigation
   =========================== */
.header {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.logo a:hover {
  color: #ffed4e;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
}

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

/* Burger Menu */
.menu-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 25px;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: #ffd700;
  border-radius: 3px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 0;
}

/* Burger Animation */
.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(2) {
  transform: scale(0);
}

.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #ffd700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 50px;
  color: #e0e0e0;
}

.hero-image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-photo {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.trust-badges {
  margin-top: 60px;
}

/* Compact variant under hero */
.trust-badges--compact h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.trust-badges--compact .badges-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.trust-badges--compact .badge-item {
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badges--compact .badge-icon {
  font-size: 1.1rem;
}

.trust-badges--compact .badge-text {
  font-size: 0.8rem;
  color: #e0e0e0;
}

.trust-badges h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #ffd700;
}

.badges-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.badge-item {
  background: rgba(26, 26, 46, 0.8);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  flex: 0 1 auto;
  max-width: 250px;
  transition: all 0.3s ease;
}

.badge-item:hover {
  border-color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.badge-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.badge-item p {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin: 0;
}

/* Offers Section */
.offers {
  padding: 80px 0;
  background: rgba(26, 26, 46, 0.5);
}
.offers .section-title {
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
}
.offer-card {
  display: flex;
  gap: 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 0;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  margin-bottom: 25px;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2), 0 0 30px rgba(255, 215, 0, 0.1);
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4),
    0 0 50px rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.7);
}
.offer-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: transparent;
}
.offer-logo {
  width: 100%;
  max-width: 280px;
}
.offer-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.offer-right {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: center;
}
.offer-metrics {
  display: none;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.metric-row span {
  flex: 1;
}
.offer-right h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
.offer-desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}
.payment-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.offer-right .btn-cta {
  align-self: flex-start;
  padding: 14px 35px;
  font-size: 1.15rem;
}

/* ===========================
   Reviews Section
   =========================== */
.reviews {
  padding: 80px 0;
}

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

.review-card {
  background: rgba(26, 26, 46, 0.8);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.review-rating {
  margin-bottom: 15px;
}

.review-rating .star {
  color: #ffd700;
  font-size: 1.2rem;
}

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

.review-author {
  font-weight: 600;
  color: #ffd700;
}

/* ===========================
   Trust Section
   =========================== */
.trust {
  padding: 80px 0;
  background: rgba(26, 26, 46, 0.5);
}

.trust-content {
  max-width: 900px;
  margin: 0 auto;
}

.trust-intro {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #e0e0e0;
  line-height: 1.8;
}

.trust-text {
  margin-bottom: 20px;
  color: #e0e0e0;
  line-height: 1.8;
}

.certifications-title {
  font-size: 1.8rem;
  text-align: center;
  margin: 50px 0 30px;
  color: #ffd700;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.cert-item {
  background: rgba(26, 26, 46, 0.8);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.cert-item:hover {
  border-color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.cert-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffd700;
}

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

/* ===========================
   Contact Section
   =========================== */
.contact {
  padding: 80px 0;
}

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

.contact-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  line-height: 1.8;
}

.contact-info {
  background: rgba(26, 26, 46, 0.8);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-email,
.contact-website {
  margin: 15px 0;
  font-size: 1.1rem;
  color: #e0e0e0;
  word-break: break-word;
}

.contact-email a {
  color: #ffd700;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-website span {
  color: #ffd700;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
  padding: 80px 0;
  background: rgba(26, 26, 46, 0.5);
}

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

.faq-item {
  background: rgba(26, 26, 46, 0.8);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ffd700;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

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

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

/* ===========================
   Banners Section
   =========================== */
.banners {
  padding: 80px 0;
}

.banners-grid {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e0e16;
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  height: 100px;
  flex: 0 0 calc((100% - 4 * 30px) / 5);
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.banner-item:hover {
  border-color: #ffd700;
  transform: translateY(-3px);
}

.banner-item img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.banner-placeholder {
  background: rgba(26, 26, 46, 0.5);
  padding: 100px 20px;
  border-radius: 10px;
  border: 2px dashed rgba(255, 215, 0, 0.3);
  text-align: center;
  color: #e0e0e0;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: rgba(10, 10, 15, 0.95);
  padding: 60px 0 30px;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-responsibility {
  margin-bottom: 50px;
}

.responsibility-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.5);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.responsibility-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

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

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

.responsibility-text p {
  margin-bottom: 15px;
  color: #e0e0e0;
  line-height: 1.8;
}

.age-restriction {
  font-weight: 700;
  color: #ffd700;
}

.footer-links {
  text-align: center;
  margin-bottom: 30px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

.footer-nav a:hover {
  color: #ffd700;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  color: #e0e0e0;
}

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

  /* Hide default nav, show as mobile menu */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
  }

  .menu-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  }

  .nav a {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
  }

  /* Hero Mobile */
  .hero {
    padding: 20px 0 10px;
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .hero-subtitle,
  .hero-image {
    display: none;
  }
  .trust-badges--compact {
    margin-top: 15px;
  }
  .trust-badges--compact h3 {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  .trust-badges--compact .badges-grid {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .trust-badges--compact .badge-item {
    padding: 6px 4px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
  }
  .trust-badges--compact .badge-icon {
    font-size: 0.9rem;
  }
  .trust-badges--compact .badge-text {
    font-size: 0.65rem;
    line-height: 1.1;
  }

  /* Offers Mobile - 2 columns */
  .offers {
    padding: 15px 0;
  }
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 15px;
    margin-bottom: 12px;
  }
  .offer-left {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .offer-logo {
    margin-bottom: 8px;
  }
  .offer-metrics {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
  }
  .metric-row {
    flex-direction: column;
    gap: 3px;
    margin-bottom: 4px;
  }
  .offer-right {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .offer-right h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .offer-desc {
    font-size: 0.75rem;
    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: 5px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .offer-right .btn-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Other sections */
  .section-title {
    font-size: 2rem;
  }

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

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

@media (max-width: 600px) {
  /* Trust badges: 2 columns, extra small text */
  .trust-badges--compact h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .trust-badges--compact .badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .trust-badges--compact .badge-item {
    padding: 8px;
  }

  .trust-badges--compact .badge-icon {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .trust-badges--compact .badge-item p {
    font-size: 0.7rem;
    line-height: 1.2;
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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

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

  .banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    overflow: visible;
    justify-items: center;
  }

  /* Центрируем последний баннер при нечетном количестве */
  .banners-grid > .banner-item:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .banner-item {
    flex: initial;
    min-width: 0;
    width: 100%;
    height: 80px;
  }

  .banner-item img {
    max-height: 48px;
  }

  .badges-grid {
    flex-direction: column;
    align-items: center;
  }

  .badge-item {
    max-width: 100%;
  }
}
