/* ===================================
   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: #e8e8e8;
  background: #0a0e14;
  overflow-x: hidden;
}

/* Site-wide background image inserted via HTML */
.page-main {
  position: relative;
}

.site-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}

/* Ensure content paints above the background image */
.page-main > section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

/* ===================================
   Color Variables
   =================================== */
:root {
  --primary-emerald: #0d5c4f;
  --primary-emerald-light: #10755f;
  --primary-emerald-dark: #083d33;
  --accent-gold: #d4af37;
  --accent-gold-light: #f0c75e;
  --accent-gold-dark: #b8941f;
  --bg-dark: #0a0e14;
  --bg-card: #131920;
  --bg-card-hover: #1a2129;
  --text-light: #e8e8e8;
  --text-muted: #9ca3af;
  --border-color: #1f2937;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-gold);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold-light);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--primary-emerald-dark) 100%
  );
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.modal-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

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

.btn-yes {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.btn-yes:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.btn-no {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-muted);
}

.btn-no:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
}

/* ===================================
   Cookie Banner
   =================================== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--primary-emerald-dark) 0%,
    var(--bg-card) 100%
  );
  padding: 1.5rem;
  z-index: 9999;
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.active {
  display: block;
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
  min-width: 250px;
}

.cookie-content a {
  color: var(--accent-gold-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-accept,
.btn-reject {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.btn-accept:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-reject {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-muted);
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-gold);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: none;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--accent-gold);
}

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

/* Burger Menu - Hidden by default */
.burger-toggle {
  display: none;
}

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

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--accent-gold);
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  opacity: 0;
}

.hero-background::before {
  content: "♠ ♥ ♦ ♣";
  position: absolute;
  top: 20%;
  left: 10%;
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.05);
  transform: rotate(-15deg);
}

.hero-background::after {
  content: "♠ ♥ ♦ ♣";
  position: absolute;
  bottom: 10%;
  right: 10%;
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.05);
  transform: rotate(15deg);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-image {
  margin: 1rem auto 0;
}

.hero-photo {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  text-shadow: 2px 2px 10px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.trust-title h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--accent-gold-light);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(13, 92, 79, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
  background: rgba(13, 92, 79, 0.5);
}

.trust-icon {
  font-size: 2rem;
}

.trust-text h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-light);
  font-weight: 600;
}

/* ===================================
   Offers Section
   =================================== */
.offers {
  padding: 5rem 0;
  background: transparent;
}

.offer-card {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--primary-emerald-dark) 100%
  );
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.offer-card.featured {
  border-width: 3px;
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

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

.offer-logo {
  min-width: 150px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 10px;
  /* border: 2px solid var(--accent-gold); */
}

.logo-img {
  width: 100%;
  max-height: 100%;
  display: block;
}

.logo-placeholder {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.offer-content {
  flex: 1;
}

.offer-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.star {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.rating-text {
  color: var(--text-light);
  font-weight: 600;
  margin-left: 0.5rem;
}

.offer-description {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.payment-label {
  font-weight: 600;
  color: var(--accent-gold-light);
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.payment-method {
  background: rgba(212, 175, 55, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 0.85rem;
  color: var(--text-light);
  border: 1px solid var(--accent-gold);
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta {
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--accent-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.offer-terms {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
  padding: 5rem 0;
  background: transparent;
}

.section-image {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.section-photo {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
}

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

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  border-color: var(--accent-gold-light);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.author-name {
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===================================
   Security Section
   =================================== */
.security {
  padding: 5rem 0;
  background: transparent;
}

.security-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.security-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.certifications-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.certification-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
  text-align: center;
  transition: all 0.3s ease;
}

.certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  border-color: var(--accent-gold-light);
}

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

.certification-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.certification-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
  padding: 5rem 0;
  background: transparent;
}

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

.faq-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold-light);
}

.faq-question {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* ===================================
   Banners Section
   =================================== */
.banners {
  padding: 5rem 0;
  background: transparent;
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* New banner items: dark bg, white icons, equal size */
.banner-item {
  background: transparent;
  border: 0;
  border-radius: 10px;
  min-height: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.banner-img {
  max-width: 100%;
  max-height: 80%;
  filter: none;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  padding: 5rem 0;
  background: transparent;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
}

.contact-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(13, 92, 79, 0.2);
  border-radius: 8px;
}

.contact-label {
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 1rem;
}

.contact-link {
  color: var(--accent-gold-light);
  font-size: 1.1rem;
  word-break: break-all;
}

.contact-value {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--bg-dark);
  padding: 3rem 0 2rem;
  border-top: 2px solid var(--accent-gold);
  position: relative;
  z-index: 2;
}

.footer-responsible {
  margin-bottom: 3rem;
}

.responsible-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.responsible-icon {
  min-width: 80px;
}

.icon-18 {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.responsible-text h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.responsible-text h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold-light);
}

.responsible-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.age-restriction {
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-copyright p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

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

  /* Hide default nav */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(10, 14, 20, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 1.5rem;
    border-left: 2px solid var(--accent-gold);
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  /* Show nav when burger is checked */
  .burger-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  /* Burger animation to X */
  .burger-toggle:checked ~ .burger-icon .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

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

  .burger-toggle:checked ~ .burger-icon .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Adjust sections */
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .trust-features {
    gap: 1rem;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .offer-card {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }

  .offer-logo {
    width: 120px;
    height: 120px;
    min-width: 120px;
  }

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

  .cookie-buttons {
    justify-content: center;
  }

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

  .responsible-icon {
    margin: 0 auto;
  }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

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

  /* Compact trust badges: 2 columns, tiny but readable */
  .trust-title h2 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .trust-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.5rem;
  }

  .trust-icon {
    font-size: 1rem;
    line-height: 1;
  }

  .trust-text h3 {
    font-size: 0.72rem;
    line-height: 1.15;
    font-weight: 600;
  }

  /* Make offer section more prominent on mobile */
  .offer-card {
    padding: 1.5rem;
  }

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

  .offer-description {
    font-size: 1rem;
  }

  .btn-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
  }

  .star {
    font-size: 1.4rem;
  }

  .rating-text {
    font-size: 1.1rem;
  }

  .payment-methods {
    justify-content: center;
  }

  .payment-method {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  /* Contact */
  .contact-info {
    padding: 2rem 1.5rem;
  }

  .contact-link {
    font-size: 1rem;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Nav menu narrower on mobile */
  .nav {
    width: 80%;
    max-width: 300px;
  }

  /* Modal */
  .modal-content {
    padding: 2rem 1.5rem;
  }

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

  .btn-yes,
  .btn-no {
    width: 100%;
  }

  /* Cookie banner */
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .btn-accept,
  .btn-reject {
    width: 100%;
  }

  /* Banners: 2 columns on mobile, 5th centered on its own row */
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 0.75rem;
  }

  .banners-grid .banner-item {
    width: 100%;
    max-width: 260px;
    min-height: 130px;
    height: 130px;
  }

  .banners-grid .banner-item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 260px;
  }
}
