:root {
  /* Colors */
  --c-deep-blue: #000f22;
  --c-deep-blue-light: #000f22;
  --c-brand-blue: #15458c;
  --c-brand-blue-hover: #1e5ba8;
  --c-accent-blue: #3b82f6;
  --c-white: #ffffff;
  --c-text: #94a3b8;
  --c-text-light: #f1f5f9;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

  /* Spacing (Fluid) */
  --s-xs: clamp(0.5rem, 1vw, 0.75rem);
  --s-sm: clamp(1rem, 2vw, 1.5rem);
  --s-md: clamp(2rem, 4vw, 3rem);
  --s-lg: clamp(4rem, 8vw, 6rem);
  --s-xl: clamp(6rem, 12vw, 10rem);

  /* Typography (Fluid) */
  --f-xs: clamp(0.75rem, 0.8vw, 0.875rem);
  --f-sm: clamp(0.875rem, 1vw, 1rem);
  --f-base: clamp(1rem, 1.2vw, 1.125rem);
  --f-lg: clamp(1.125rem, 1.5vw, 1.25rem);
  --f-xl: clamp(1.5rem, 2.5vw, 2rem);
  --f-2xl: clamp(2rem, 4vw, 3rem);
  --f-hero: clamp(3rem, 7vw, 5.5rem);
  
  /* Transitions */
  --t-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--c-deep-blue);
  color: var(--c-text);
  line-height: 1.6;
  font-size: var(--f-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--c-white);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--t-smooth);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s-sm);
}

.center {
  text-align: center;
}

.mt-4 { margin-top: var(--s-md); }
.body-large { font-size: var(--f-lg); color: var(--c-text-light); }

.section {
  padding: 5rem 0;
}

/* Components */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: var(--f-sm);
  transition: var(--t-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
  hyphens: auto;
}

.btn-primary {
  background-color: var(--c-brand-blue);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(21, 69, 140, 0.4);
}

.btn-primary:hover {
  background-color: var(--c-brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(21, 69, 140, 0.6);
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  color: var(--c-white);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
}

.section-title {
  font-size: var(--f-2xl);
  margin-bottom: var(--s-sm);
}

.section-subtitle {
  font-size: var(--f-lg);
  color: var(--c-text);
  max-width: 600px;
  margin: 0 auto var(--s-lg) auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--t-smooth);
  padding: var(--s-xs) 0;
}

.header.scrolled {
  background: rgba(4, 13, 26, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.desktop-nav ul {
  display: block;
}

.logo-link {
  display: block;
}

.header-logo {
  height: 40px;
  width: auto;
}

.logo-box.small {
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  color: var(--c-text-light);
  font-size: var(--f-sm);
  font-weight: 500;
}

.desktop-nav a:hover {
  color: var(--c-white);
}

/* Language Selector */
.lang-selector-container {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--c-white);
  font-size: var(--f-sm);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: var(--t-smooth);
}

.lang-btn:hover {
  color: var(--c-accent-blue);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 80px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--t-smooth);
  z-index: 200;
}

.lang-selector-container:hover .lang-dropdown,
.lang-selector-container:focus-within .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--c-text-light);
  font-size: var(--f-sm);
  padding: 0.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
}

.mobile-lang-wrapper {
  margin-right: 0.5rem;
}

.mobile-lang-grid {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--c-white);
  transition: var(--t-smooth);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: auto;
  max-width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 98;
  border-radius: 0 0 24px 24px;
  border-bottom: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: translate3d(0, -20px, 0);
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.mobile-menu.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.mobile-menu a {
  font-size: var(--f-lg);
  color: var(--c-white);
  font-weight: 500;
  display: block;
}

.mobile-lang-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.mobile-lang-grid .lang-option {
  width: auto;
  min-width: 60px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--c-text-light);
  font-weight: 500;
  text-align: center;
  font-size: var(--f-sm);
}

.mobile-lang-grid .lang-option:hover,
.mobile-lang-grid .lang-option.active {
  background: var(--c-brand-blue);
  color: var(--c-white);
  border-color: var(--c-brand-blue);
}

/* Gallery Slider */
.gallery-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.gallery-slide img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--c-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-btn:hover {
  background: rgba(255,255,255,0.2);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.gallery-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dots .dot.active {
  background: var(--c-white);
  transform: scale(1.2);
}

/* Footer Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 4rem;
  overflow: hidden;
}

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

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin: 0 auto;
}

.hero-descriptor {
  color: var(--c-text);
  font-size: var(--f-sm);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-brand {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

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

.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.hero-description {
  font-size: var(--f-base);
  color: var(--c-text-light);
  line-height: 1.7;
  max-width: 550px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* About Section */
.about-section {
  padding: var(--s-xl) 0;
  background: linear-gradient(to bottom, var(--c-deep-blue), var(--c-deep-blue-light));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-lg);
  align-items: center;
}

.portrait-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
}

.portrait-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #111 0%, #000 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.placeholder-text {
  color: rgba(255,255,255,0.3);
  font-size: var(--f-sm);
}

.why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-line {
  width: 40px;
  height: 1px;
  background-color: var(--c-accent-blue);
}

.why-item h4 {
  font-size: var(--f-base);
  font-weight: 500;
  margin: 0;
}

/* Services */
.services-section {
  padding: var(--s-xl) 0;
  background: linear-gradient(to bottom, var(--c-deep-blue-light), var(--c-deep-blue));
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
  margin-top: var(--s-lg);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
  align-items: center;
  position: relative;
}

.service-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-row.reverse .service-visual {
  order: 1;
}

.service-row.reverse .service-content {
  order: 2;
}

.service-number {
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}

.service-number.accent {
  color: var(--c-brand-blue);
  font-size: 4rem;
  margin-bottom: 1rem;
}

.service-content {
  padding: var(--s-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  font-size: var(--f-xl);
  margin-bottom: 1rem;
}

.service-visual {
  height: 100%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.visual-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

/* VIP Section */
.vip-section {
  padding: var(--s-xl) 0;
  background: linear-gradient(to bottom, var(--c-deep-blue), var(--c-deep-blue-light));
}

.vip-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0;
}

.vip-content {
  padding: var(--s-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vip-media {
  background: #000;
  position: relative;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.3);
  background: repeating-linear-gradient(45deg, #0a0a0a, #0a0a0a 10px, #111 10px, #111 20px);
}

/* Contact */
.contact-section {
  padding: var(--s-xl) 0;
  background: linear-gradient(to bottom, var(--c-deep-blue-light), var(--c-deep-blue));
}

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

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: var(--s-lg);
}

.contact-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.contact-card:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.contact-card h4 {
  font-size: var(--f-base);
  margin-bottom: 0.25rem;
}

.contact-card p {
  color: var(--c-text);
  margin: 0;
}

.label {
  font-size: var(--f-sm);
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.glass-badge {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  font-size: var(--f-xs);
  color: var(--c-text-light);
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, var(--c-deep-blue), #02070f);
  padding: var(--s-lg) 0 2rem 0;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-md);
  margin-bottom: var(--s-md);
}

.footer-brand p {
  color: var(--c-text);
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
  font-size: var(--f-sm);
  color: var(--c-white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--c-text);
  font-size: var(--f-sm);
}

.footer-links a:hover {
  color: var(--c-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  text-align: center;
  font-size: var(--f-xs);
  color: var(--c-text);
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--c-text);
  opacity: 0.7;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--c-white);
}

/* Floating Action Buttons */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.wa-fab {
  background: #25D366;
  color: #fff;
}

.wa-fab:hover {
  transform: scale(1.1);
  background: #128C7E;
}

.top-fab {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--c-white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.top-fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-fab:hover {
  background: rgba(255,255,255,0.1);
}
  z-index: 100;
}

.full-width {
  width: 100%;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-row.reverse .service-visual {
    order: 2;
  }
  .service-row.reverse .service-content {
    order: 1;
  }
  .vip-container {
    grid-template-columns: 1fr;
  }
  .vip-media {
    aspect-ratio: 16/9;
  }
}

@media (min-width: 769px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hidden-mobile {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links ul {
    align-items: center;
  }
  .footer-logo {
    display: block;
    margin: 0 auto 1rem auto;
  }
  .fab-container {
    bottom: 1rem;
    right: 1rem;
  }
  .fab {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Modal Base Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 15, 34, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Legal text modal specific styles */
.modal.legal-modal {
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  text-align: left;
}

.modal.legal-modal h2 {
  color: var(--c-accent);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.modal.legal-modal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--c-white);
}

.modal.legal-modal p, .modal.legal-modal ul {
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal.legal-modal ul {
  padding-left: 1.5rem;
}

.modal.legal-modal li {
  margin-bottom: 0.5rem;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal h3 {
  margin-bottom: 0.5rem;
  color: var(--c-white);
}

.modal p {
  color: var(--c-text-light);
  margin-bottom: 1.5rem;
  font-size: var(--f-sm);
  word-wrap: break-word;
  hyphens: auto;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--c-text-light);
  margin-top: 1.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--c-accent);
}
