/* ============================================================================
   RoyalChipsPlay - Casino Platform Stylesheet
   Colors: Emerald Green (#047857), Gold (#D4AF37), Black (#0A0A0A)
   Optimized for performance - minimal shadows, no heavy blur filters
   ============================================================================ */

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  line-height: 1.6;
  color: #e5e5e5;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

/* Global site background image container (image element lives in HTML) */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.site-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

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

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

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

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #d4af37;
  text-align: center;
  max-width: 450px;
  margin: 20px;
}

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  border-color: #d4af37;
  color: #d4af37;
}

/* ============================================================================
   Cookie Banner
   ============================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(26, 26, 26, 0.98) 100%
  );
  border-top: 2px solid #d4af37;
  padding: 20px;
  display: none;
  z-index: 9999;
}

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

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

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

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

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

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

/* ============================================================================
   Header & Navigation
   ============================================================================ */
.header {
  background: rgba(10, 10, 10, 0.95);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #f4d03f;
}

.logo-simple {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d4af37;
  text-decoration: none;
}

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

.nav a {
  color: #e5e5e5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #047857;
  transition: width 0.3s ease;
}

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

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

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

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

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

/* ============================================================================
   Hero Section
   ============================================================================ */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(4, 120, 87, 0.15) 0%,
    rgba(10, 10, 10, 0) 100%
  );
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.05);
}

.hero-content h1 {
  font-size: 2.75rem;
  color: #d4af37;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin-bottom: 48px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-media {
  margin: 0 auto 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

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

.verified-title {
  font-size: 1.5rem;
  color: #047857;
  margin-bottom: 24px;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.feature-item:hover {
  background: rgba(4, 120, 87, 0.15);
  border-color: #047857;
}

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

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

/* ============================================================================
   Sections
   ============================================================================ */
section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  color: #d4af37;
  margin-bottom: 48px;
}

/* ============================================================================
   Offers Section
   ============================================================================ */
.offers {
  background: linear-gradient(
    180deg,
    rgba(4, 120, 87, 0.12) 0%,
    rgba(4, 120, 87, 0.08) 50%,
    rgba(4, 120, 87, 0.12) 100%
  );
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-card {
  /* Desktop default: no grid, use 2-column flex 50/50 */
  display: flex;
  gap: 24px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(4, 120, 87, 0);
}

.offer-card:hover {
  border-color: #047857;
  transform: translateY(-3px);
  box-shadow: 0 0 24px rgba(4, 120, 87, 0.25);
}

.offer-left {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
}
.offer-logo {
  width: 100%;
}
.offer-stats {
  display: none; /* hide stats on desktop */
}
.offer-right {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-logo {
  width: 100%;
  /* height: 120px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: #b8b8b8;
  white-space: nowrap;
}

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

.offer-right h3 {
  font-size: 1.75rem;
  color: #d4af37;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.offer-description {
  color: #c8c8c8;
  margin-bottom: 16px;
  line-height: 1.7;
}

.payment-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.payment-methods i {
  font-size: 28px;
  color: #ffffff;
  opacity: 0.95;
  filter: drop-shadow(0 0 8px rgba(4, 120, 87, 0.35));
}

.btn-offer {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
  box-shadow: 0 0 0 rgba(4, 120, 87, 0);
}

.btn-offer:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(4, 120, 87, 0.35);
}

/* ============================================================================
   Reviews Section
   ============================================================================ */
.reviews {
  background: linear-gradient(
    180deg,
    rgba(4, 120, 87, 0.1) 0%,
    rgba(4, 120, 87, 0.06) 100%
  );
}
.offers .section-title {
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: #d4af37;
  transform: translateY(-3px);
}

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

.review-text {
  color: #c8c8c8;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

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

/* ============================================================================
   Security Section
   ============================================================================ */
.security {
  background: linear-gradient(
    180deg,
    rgba(4, 120, 87, 0.1) 0%,
    rgba(4, 120, 87, 0.06) 100%
  );
}

.section-image {
  max-width: 1000px;
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(4, 120, 87, 0.35);
}

.section-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.security-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  color: #c8c8c8;
  line-height: 1.8;
  text-align: center;
}

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

.subsection-title {
  text-align: center;
  font-size: 1.75rem;
  color: #047857;
  margin: 48px 0 32px;
}

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

.cert-card {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-card:hover {
  border-color: #047857;
  transform: translateY(-3px);
}

.cert-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

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

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

/* ============================================================================
   FAQ Section
   ============================================================================ */
.faq {
  background: linear-gradient(
    180deg,
    rgba(4, 120, 87, 0.12) 0%,
    rgba(4, 120, 87, 0.06) 100%
  );
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

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

.faq-answer {
  color: #c8c8c8;
  line-height: 1.7;
}

/* ============================================================================
   Banners Section
   ============================================================================ */
.banners {
  background: linear-gradient(
    180deg,
    rgba(4, 120, 87, 0.1) 0%,
    rgba(4, 120, 87, 0.06) 100%
  );
}

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

.banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
  aspect-ratio: 3 / 1; /* stabilizes layout */
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.banner-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.35);
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* ensure white logos on dark bg */
}

/* ============================================================================
   Contact Section
   ============================================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact {
  background: linear-gradient(
    180deg,
    rgba(4, 120, 87, 0.1) 0%,
    rgba(4, 120, 87, 0.06) 100%
  );
}

.contact-info h3,
.contact-form h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  color: #c8c8c8;
  line-height: 1.7;
}

.contact-info a {
  color: #047857;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Simple contact layout */
.contact-simple {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 10px;
  padding: 20px;
}

.contact-intro {
  color: #c8c8c8;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 12px;
}

.wrap-link {
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 600px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}

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

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 6px;
  background: rgba(26, 26, 26, 0.6);
  color: #e5e5e5;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #047857;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c8c8c8;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

.checkbox-label a {
  color: #047857;
  text-decoration: underline;
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border-top: 2px solid rgba(4, 120, 87, 0.3);
  padding: 50px 0 30px;
  margin-top: 50px;
}

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

.responsible-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(4, 120, 87, 0.3);
  border-radius: 10px;
}

.responsible-icon {
  flex-shrink: 0;
}

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

.responsible-text h4 {
  color: #b8b8b8;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.responsible-text p {
  color: #c8c8c8;
  line-height: 1.7;
  margin-bottom: 8px;
}

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

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

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

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

.footer-copyright {
  text-align: center;
  color: #777;
  padding-top: 16px;
  border-top: 1px solid rgba(4, 120, 87, 0.2);
}

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

.legal-page h1 {
  color: #d4af37;
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.legal-updated {
  color: #777;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  color: #047857;
  font-size: 1.6rem;
  margin-bottom: 16px;
  margin-top: 24px;
}

.legal-section h3 {
  color: #b8b8b8;
  font-size: 1.3rem;
  margin-bottom: 12px;
  margin-top: 20px;
}

.legal-section p {
  color: #c8c8c8;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section ul {
  margin-left: 24px;
  margin-bottom: 12px;
}

.legal-section li {
  color: #c8c8c8;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-section a {
  color: #047857;
  text-decoration: underline;
}

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

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

/* ============================================================================
   Responsive - Tablet (<900px)
   ============================================================================ */
@media (max-width: 900px) {
  /* Burger Menu */
  .burger-icon {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 2px solid rgba(4, 120, 87, 0.3);
    z-index: 999;
    overflow-y: auto;
  }

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

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

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

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

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

  /* Offers */
  .offer-card {
    display: grid; /* phones/tablets: switch to grid */
    grid-template-columns: 1fr 1fr; /* 50/50 */
    text-align: left;
    gap: 16px;
  }

  .offer-left {
    display: block;
    flex: initial;
  }
  .offer-logo {
    grid-column: auto;
    grid-row: auto;
    margin: 0 auto 8px;
    align-self: auto;
  }
  .offer-right {
    grid-column: 2;
    display: block;
  }
  .offer-stats {
    display: block; /* show stats on mobile */
    grid-column: auto;
  }
  .stat-row {
    justify-content: space-between;
  }
  .offer-right {
    grid-column: 2;
  }

  .btn-offer {
    align-self: flex-start;
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Banners */
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .banners-grid.is-odd .banner-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 260px; /* keep same size, no stretching */
  }

  /* Certifications */
  .certifications-row {
    flex-wrap: wrap;
  }

  .cert-card {
    flex: 1 1 calc(50% - 10px);
    max-width: none;
  }

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

/* ============================================================================
   Responsive - Mobile (<600px)
   ============================================================================ */
@media (max-width: 600px) {
  /* Hero */
  .hero {
    padding: 50px 0 40px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .verified-title {
    font-size: 1.2rem;
  }

  .features-row {
    gap: 8px;
    max-width: 100%;
  }

  .feature-item {
    flex: 0 0 auto;
    padding: 8px 12px;
  }

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

  /* Sections */
  section {
    padding: 40px 0;
  }

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

  /* Offers */
  .offers {
    padding: 24px 0;
  }

  .offers-grid {
    gap: 16px;
  }

  .offer-logo {
    height: 100px;
  }
  .offer-card {
    padding: 14px;
  }

  .offer-description {
    display: none;
  }

  .offer-right h3 {
    font-size: 1.4rem;
  }

  /* FAQ */
  .faq {
    padding: 30px 0;
  }

  .faq-item {
    padding: 16px;
  }

  /* Security */
  .security {
    padding: 30px 0;
  }

  .certifications-row {
    flex-direction: column;
  }

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

  /* Banners */
  .banners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Modal */
  .modal-content {
    padding: 30px 20px;
    margin: 15px;
  }

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

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

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

  /* Cookie Banner */
  .cookie-buttons {
    flex-direction: column;
  }

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

  /* Nav */
  .nav {
    width: 100%;
  }

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

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  /* Legal */
  .legal-page h1 {
    font-size: 1.75rem;
  }
}
