body {
  background-color: #ecfbff;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: #1e293b;
  --sb-track-color: transparent;
  --sb-thumb-color: #fa99a6;
  --sb-size: 8px;
}

body.preloading {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-preloader-logo {
  width: 96px;
  height: auto;
  animation: preloaderPulse 1.1s ease-in-out infinite;
}

body.preloader-hidden .site-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

@media (max-width: 767px) {
  html {
    scroll-behavior: smooth;
  }

  body *:not(.site-preloader):not(.site-preloader *) {
    animation: none !important;
    transition: none !important;
  }
}

.top-bar {
  padding: 0.5rem 0.25rem;
}

.site-logo img {
  transition: opacity 0.3s ease;
}

.logo-dark {
  display: none;
}

.dark .logo-light {
  display: none;
}

.dark .logo-dark {
  display: block;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #016aa3;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 168, 235, 0.35);
  border-radius: 999px;
  box-shadow: inset 0 0 10px rgba(12, 168, 235, 0.15), 0 6px 20px rgba(0, 136, 204, 0.2);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.5);
  color: #1e293b;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dark-mode-toggle:hover {
  background: #ffffff;
  border-color: #0056b3;
  color: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
  transform: scale(1.05);
}

.dark-mode-toggle i {
  font-size: 1.1rem;
}

/* Dark mode styles */
.dark body {
  background-color: #0f172a;
  color: #e2e8f0;
}

.dark .liquid-bg {
  background: #0f172a;
}

.dark .glass-card {
  background: rgba(30, 41, 59, 0.6) !important;
  border: 1px solid rgba(148, 163, 184, 0.1) !important;
  color: #e2e8f0;
}

.dark .system-status {
  background: rgba(30, 41, 59, 0.8);
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.3);
}

.dark .dark-mode-toggle {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.2);
  color: #f1f5f9;
}

.dark .dark-mode-toggle:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: #60a5fa;
  color: #60a5fa;
}

/* High-tech animated background */
.liquid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #f0f7ff;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 25s infinite ease-in-out;
}

.orb-1 {
  top: -15%;
  left: -15%;
  width: 60vw;
  height: 60vw;
  background: transparent;
  animation-delay: 0s;
  display: none;
}

.orb-2 {
  bottom: -20%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: transparent;
  animation-delay: -8s;
  display: none;
}

.orb-3 {
  top: 50%;
  left: 50%;
  width: 50vw;
  height: 50vw;
  background: transparent;
  animation-delay: -15s;
  opacity: 0.2;
  display: none;
}

/* Grid overlay for high-tech feel */
.liquid-bg::before {
  display: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(40px, -60px) rotate(15deg) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) rotate(-10deg) scale(0.9);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.glass-card {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.5) !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  padding: 2rem !important;
  text-align: center !important;
}

.glass-card--compact {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 1rem !important;
  padding: 0.75rem 1rem !important;
  text-align: left !important;
}

.dark .glass-card {
  background: #0f172a !important;
  border-color: #1e293b !important;
}

.glass-card::before {
  content: none;
}

.glass-input {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  outline: none !important;
}

/* Override Tailwind forms plugin white background */
input[type="text"],
input:where(:not([type])),
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="week"],
textarea,
select {
  background-color: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  outline: none !important;
  color: #1e293b !important;
}

/* Remove number input spinner arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

.glass-input:focus {
  background: #ffffff;
  border-color: #0056b3 !important;
  box-shadow: none !important;
  outline: none !important;
  ring: 0 !important;
}

/* Override Tailwind focus styles */
input:focus,
textarea:focus,
select:focus {
  --tw-ring-color: #0056b3 !important;
  --tw-ring-offset-color: transparent !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  border-color: #0056b3 !important;
  box-shadow: none !important;
}

.glass-input::placeholder {
  color: rgba(30, 41, 59, 0.4);
}

/* Dark mode input styles */
.dark input[type="text"],
.dark input:where(:not([type])),
.dark input[type="email"],
.dark input[type="url"],
.dark input[type="password"],
.dark input[type="number"],
.dark input[type="date"],
.dark input[type="datetime-local"],
.dark input[type="month"],
.dark input[type="search"],
.dark input[type="tel"],
.dark input[type="time"],
.dark input[type="week"],
.dark textarea,
.dark select {
  background-color: rgba(30, 41, 59, 0.5) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  color: #e2e8f0 !important;
}

.dark .glass-input:focus,
.dark input:focus,
.dark textarea:focus,
.dark select:focus {
  background-color: rgba(30, 41, 59, 0.7) !important;
  border-color: #60a5fa !important;
}

.dark .glass-input::placeholder,
.dark input::placeholder,
.dark textarea::placeholder {
  color: rgba(226, 232, 240, 0.4);
}

.btn-glossy {
  background: #0056b3;
  border: 1px solid #0056b3;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #f0f9ff;
}

.btn-glossy:hover {
  transform: translateY(-2px);
  /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 30px rgba(12, 168, 235, 0.6); */
  filter: brightness(1.1);
}

.btn-glossy::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}

.btn-glossy:active::after {
  opacity: 1;
  transform: scale(1);
  transition: 0s;
}

.btn-secondary-glossy {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(12, 168, 235, 0.4);
  backdrop-filter: blur(4px);
  color: #016aa3;
  transition: all 0.3s;
}

.btn-secondary-glossy:hover {
  background: rgba(224, 242, 254, 0.9);
  border-color: rgba(12, 168, 235, 0.6);
  box-shadow: 0 0 20px rgba(12, 168, 235, 0.25);
}

.selection-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.selection-card:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.selection-card.active {
  background: #f8fafc;
  border-color: #0056b3;
  box-shadow: none;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a7f3d0;
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  margin-top: 0.2rem;
  width: fit-content;
}

.terms-row {
  background: rgba(224, 242, 254, 0.6);
  border: 1px solid rgba(12, 168, 235, 0.35);
}

.terms-row input[type="checkbox"] {
  accent-color: #0088cc;
}

.terms-link {
  color: #0088cc;
  text-decoration: underline;
}

.footer-bar {
  border-top: 1px solid rgba(15, 23, 42, 0.3);
  padding: 1.25rem 0 0.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0f172a;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: #0f172a;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #1d4ed8;
}

.footer-copy {
  color: #1e293b;
  letter-spacing: 0.12em;
}

/* Mobile-responsive footer centering */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }
}

/* Mobile card width fixes for profile pages */
@media (max-width: 768px) {
  main.max-w-6xl {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  main.max-w-6xl .glass-card {
    width: 100%;
    max-width: 100%;
  }
}

.verified-badge-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
  border-radius: 999px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.verified-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.6);
  border-radius: 999px;
}

/* Authenticity Image */
.authenticity-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.authenticity-image:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: scale(1.02);
}

.dark .authenticity-image {
  border-color: rgba(148, 163, 184, 0.2);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.5s ease-out,
              padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1rem;
  opacity: 0;
}

.faq-content.active {
  max-height: 600px;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.6s ease-in,
              padding 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0.75rem 0.9rem 0.75rem;
  opacity: 1;
}

.rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-option {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
}

.package-option:hover {
  background: #f1f5f9;
  border-color: #cbd5f5;
  transform: none;
}

.package-option.selected {
  background: #f8fafc;
  border-color: #0056b3;
  box-shadow: none;
}

.package-option .package-price {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 0.5rem;
}

.package-option.selected .package-price {
  background: #e0f2fe;
  border-color: #93c5fd;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

#ageModal {
  z-index: 1100;
}

#ageModal .modal-content {
  max-width: 540px;
  width: min(92vw, 540px);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

#ageModal .glass-card {
  border-radius: 1.75rem !important;
}

#ageModal .modal-content button {
  border-radius: 1rem !important;
}

.modal-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
  justify-content: center;
  max-width: 100%;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s;
  max-width: 400px;
  justify-self: center;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-item.glass-card {
  padding: 0 !important;
}

.gallery-item:hover {
  transform: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

/* Transparent overlay to prevent direct image access */
.image-protection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
  background: transparent;
}

.gallery-click-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #f0f9ff;
  background: rgba(1, 106, 163, 0.9);
  border: 1px solid rgba(12, 168, 235, 0.6);
  border-radius: 999px;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 136, 204, 0.4);
}

.gallery-item:not(.blurred) .gallery-click-label {
  opacity: 0;
  visibility: hidden;
}

.gallery-modal-shell {
  max-height: 90vh;
}

.gallery-modal-card {
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-modal-header {
  position: sticky;
  top: 0;
  z-index: 5;
  /* background: rgba(10, 10, 20, 0.85); */
  padding-bottom: 0.75rem;
  flex-shrink: 0;
}

#galleryModal .modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.gallery-close-btn {
  color: #334155;
  transition: color 0.2s ease;
}

.gallery-close-btn:hover {
  color: #0f172a;
}

.gallery-modal-card .gallery-grid {
  max-height: calc(90vh - 210px);
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1 1 auto;
  min-height: 300px;
}

.gallery-modal-card > div:last-child {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .gallery-item {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .modal.active {
    align-items: flex-start;
  }

  #ageModal.modal.active {
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  #ageModal .modal-content {
    width: 100%;
    max-width: 440px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem;
  }

  .gallery-item {
    border-radius: 0.75rem;
    aspect-ratio: auto;
    width: 100%;
    height: 200px;
    max-width: none;
    flex-shrink: 0;
  }

  .gallery-modal-shell {
    width: 100% !important;
    height: 100vh;
    max-height: 100vh;
    margin: 0;
    padding-top: 0;
  }

  .gallery-modal-card {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0 !important;
    padding: 0.75rem !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .gallery-modal-header {
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
  }

  .gallery-modal-card .gallery-grid {
    max-height: none !important;
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .gallery-modal-card > div:last-child {
    flex-shrink: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .gallery-item {
    aspect-ratio: auto;
    height: 160px;
    max-width: none;
    flex-shrink: 0;
  }
  
  .gallery-modal-card .gallery-grid {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto !important;
    padding: 0.5rem;
  }

  .gallery-modal-header h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 375px) {
  .gallery-item {
    height: 140px;
  }
  
  .gallery-grid {
    gap: 0.625rem;
  }
}

@media (max-width: 320px) {
  .gallery-item {
    height: 120px;
  }
}

.gallery-item.blurred img {
  filter: blur(5px);
  transition: filter 0.5s ease;
}

.gallery-item:not(.blurred) img {
  filter: none;
  transition: filter 0.5s ease;
}

.gallery-item.blurred .watermark-text {
  font-size: 3rem;
  opacity: 0.8;
}

/* Hide watermarks when blurred */
.gallery-item.blurred .watermark-pattern,
.gallery-item.blurred .diagonal-watermark {
  opacity: 0;
  visibility: hidden;
}

/* Show watermarks when unblurred */
.gallery-item:not(.blurred) .watermark-pattern,
.gallery-item:not(.blurred) .diagonal-watermark {
  opacity: 1;
  visibility: visible;
}

/* Watermark Overlay */
.watermark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 100px,
    rgba(12, 168, 235, 0.15) 100px,
    rgba(12, 168, 235, 0.15) 200px
  );
  pointer-events: none;
  z-index: 2;
}

.watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(12, 168, 235, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.watermark-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(12, 168, 235, 0.03) 35px,
      rgba(12, 168, 235, 0.03) 70px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      rgba(12, 168, 235, 0.03) 35px,
      rgba(12, 168, 235, 0.03) 70px
    );
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.diagonal-watermark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  transform: rotate(-20deg);
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.diagonal-watermark span {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(12, 168, 235, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  white-space: nowrap;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

/* Image Viewer Modal */
#imageViewerModal {
  z-index: 1200;
}

.image-viewer-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.image-viewer-container img {
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-viewer-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #1e293b;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1201;
}

.image-viewer-close:hover {
  background: #ffffff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.image-viewer-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: #1e293b;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1201;
}

.image-viewer-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.image-viewer-prev {
  left: 1.5rem;
}

.image-viewer-next {
  right: 1.5rem;
}

@media (max-width: 768px) {
  .image-viewer-container {
    padding: 1rem;
  }
  
  .image-viewer-container img {
    max-width: 95%;
    max-height: 85vh;
  }
  
  .image-viewer-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  
  .image-viewer-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .image-viewer-prev {
    left: 1rem;
  }
  
  .image-viewer-next {
    right: 1rem;
  }
}

.dark .image-viewer-close,
.dark .image-viewer-nav {
  background: rgba(30, 41, 59, 0.95);
  color: #f1f5f9;
}

.dark #galleryModal .modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.dark .gallery-close-btn {
  color: #f8fafc !important;
}

.dark .gallery-close-btn:hover {
  color: #fa99a6 !important;
}

.dark .image-viewer-close:hover,
.dark .image-viewer-nav:hover {
  background: rgba(51, 65, 85, 0.95);
}

/* Additional dark mode styles */
.dark .package-option {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.dark .package-option:hover {
  background: rgba(51, 65, 85, 0.6);
  border-color: rgba(148, 163, 184, 0.3);
}

.dark .package-option.selected {
  background: rgba(30, 41, 59, 0.7);
  border-color: #60a5fa;
}

.dark .package-option .package-price {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #f1f5f9;
}

.dark .package-option.selected .package-price {
  background: rgba(96, 165, 250, 0.2);
  border-color: #60a5fa;
  color: #60a5fa;
}

.dark .btn-secondary-glossy {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
}

.dark .btn-secondary-glossy:hover {
  background: rgba(51, 65, 85, 0.8);
  border-color: rgba(148, 163, 184, 0.4);
}

.dark .selection-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.dark .selection-card:hover {
  background: rgba(51, 65, 85, 0.6);
  border-color: rgba(148, 163, 184, 0.3);
}

.dark .selection-card.active {
  background: rgba(30, 41, 59, 0.7);
  border-color: #60a5fa;
}

.dark .terms-row {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.dark .terms-link {
  color: #60a5fa;
}

.dark .footer-bar {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.dark .footer-inner {
  color: rgba(226, 232, 240, 0.6);
}

.dark .footer-link {
  color: rgba(226, 232, 240, 0.6);
}

.dark .footer-link:hover {
  color: #60a5fa;
}

.footer-link-pink {
  transition: color 0.2s ease;
}

.footer-link-pink:hover {
  color: #fa99a6 !important;
}

.dark .modal-content {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.dark .age-modal-content {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.dark #ageModal .modal-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.dark .diagonal-watermark span {
  color: rgba(96, 165, 250, 0.1);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
  color: #f1f5f9;
}

.dark p,
.dark span,
.dark div {
  color: #e2e8f0;
}

.dark .text-slate-700 {
  color: #cbd5e1 !important;
}

.dark .text-slate-600 {
  color: #cbd5e1 !important;
}

.dark .text-slate-500 {
  color: #94a3b8 !important;
}

.dark .text-slate-800 {
  color: #f1f5f9 !important;
}

.dark .text-primary {
  color: #60a5fa !important;
}

.dark .bg-primary\/5 {
  background-color: rgba(96, 165, 250, 0.1) !important;
}

.dark .bg-primary\/10 {
  background-color: rgba(96, 165, 250, 0.15) !important;
}

.dark .border-primary\/20 {
  border-color: rgba(96, 165, 250, 0.2) !important;
}

.dark .payment-pill {
  color: #86efac;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.dark .fa-lock,
.dark .fa-camera,
.dark .fa-video,
.dark i {
  opacity: 0.9;
}

.dark .bg-white {
  background-color: rgba(30, 41, 59, 0.6) !important;
}

.dark .border-slate-200 {
  border-color: rgba(148, 163, 184, 0.2) !important;
}

.dark .hover\:bg-slate-50:hover {
  background-color: rgba(51, 65, 85, 0.6) !important;
}

.dark .shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3) !important;
}

.dark .fa-images {
  color: #e2e8f0 !important;
}

/* Enhanced Model Cards */
.model-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  position: relative;
}

.model-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  padding: 2px;
  background: linear-gradient(135deg, rgba(12, 168, 235, 0.3), rgba(0, 136, 204, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.model-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(12, 168, 235, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(12, 168, 235, 0.3);
}

.model-card:hover::before {
  opacity: 1;
}

.model-card-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
}

.model-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover .model-card-image {
  transform: scale(1.1);
}

.model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.model-card:hover .model-card-overlay {
  opacity: 0.8;
}

.model-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0ca8eb 0%, #0088cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(12, 168, 235, 0.4);
  z-index: 2;
  transition: all 0.3s ease;
}

.model-card-badge i {
  color: #ffffff;
  font-size: 0.75rem;
}

.model-card:hover .model-card-badge {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 20px rgba(12, 168, 235, 0.6);
}

.model-card-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 3;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.model-card-hover-icon i {
  color: #0ca8eb;
  font-size: 1.25rem;
}

.model-card:hover .model-card-hover-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.model-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.model-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.model-card:hover .model-card-title {
  color: #0ca8eb;
}

.model-card-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0.25rem 0 0 0;
  line-height: 1.4;
}

.model-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0ca8eb;
  transition: all 0.3s ease;
}

.model-card-action i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.model-card:hover .model-card-action i {
  transform: translateX(4px);
}

/* Dark mode support for model cards */
.dark .model-card {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(148, 163, 184, 0.2);
}

.dark .model-card-image-wrapper {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.dark .model-card-content {
  background: rgba(30, 41, 59, 0.8);
}

.dark .model-card-title {
  color: #e2e8f0;
}

.dark .model-card:hover .model-card-title {
  color: #60a5fa;
}

.dark .model-card-subtitle {
  color: #94a3b8;
}

.dark .model-card-action {
  border-top-color: rgba(148, 163, 184, 0.2);
  color: #60a5fa;
}

.dark .model-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 20px 40px rgba(96, 165, 250, 0.1), 0 8px 16px rgba(0, 0, 0, 0.3);
}

.dark .model-card-hover-icon {
  background: rgba(30, 41, 59, 0.95);
}

.dark .model-card-hover-icon i {
  color: #60a5fa;
}

.dark .model-card-badge {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.dark .model-card:hover .model-card-badge {
  box-shadow: 0 6px 20px rgba(96, 165, 250, 0.6);
}

/* /models page: match landing page black + pink palette */
body.models-theme-landing {
  background-color: #000000 !important;
  color: #ffffff;
}

body.models-theme-landing .liquid-bg,
body.models-theme-landing .orb,
body.models-theme-landing .liquid-bg::before {
  background: #000000 !important;
}

body.models-theme-landing .top-bar {
  padding: 0.75rem 0.25rem;
}

body.models-theme-landing .site-logo {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

body.models-theme-landing .dark-mode-toggle {
  display: none;
}

body.models-theme-landing .dark-mode-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fa99a6;
}

body.models-theme-landing .dark-mode-toggle:hover {
  background: rgba(250, 153, 166, 0.14);
  border-color: rgba(250, 153, 166, 0.55);
  color: #fa99a6;
}

body.models-theme-landing .glass-card {
  background: #0a0a0a !important;
  border: 1px solid rgba(250, 153, 166, 0.22) !important;
  box-shadow: 0 0 0 1px rgba(250, 153, 166, 0.08), 0 16px 40px rgba(0, 0, 0, 0.45) !important;
}

body.models-theme-landing .text-slate-800,
body.models-theme-landing .text-slate-700,
body.models-theme-landing .text-slate-600 {
  color: #ffffff !important;
}

body.models-theme-landing .text-slate-500 {
  color: #cbd5e1 !important;
}

body.models-theme-landing .text-primary {
  color: #fa99a6 !important;
}

body.models-theme-landing .bg-primary\/5 {
  background-color: rgba(250, 153, 166, 0.08) !important;
}

body.models-theme-landing .bg-primary\/10 {
  background-color: rgba(250, 153, 166, 0.14) !important;
}

body.models-theme-landing .border-primary\/20 {
  border-color: rgba(250, 153, 166, 0.22) !important;
}

body.models-theme-landing .border-primary\/30 {
  border-color: rgba(250, 153, 166, 0.3) !important;
}

body.models-theme-landing .model-card {
  background: #0a0a0a;
  border-color: rgba(250, 153, 166, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

body.models-theme-landing .model-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(250, 153, 166, 0.7));
}

body.models-theme-landing .model-card:hover {
  border-color: rgba(250, 153, 166, 0.55);
  box-shadow: none;
}

body.models-theme-landing .model-card-image-wrapper,
body.models-theme-landing .model-card-content {
  background: #0a0a0a;
}

body.models-theme-landing .model-card-title,
body.models-theme-landing .model-card-action {
  color: #ffffff;
}

body.models-theme-landing .model-card:hover .model-card-title,
body.models-theme-landing .model-card-action,
body.models-theme-landing .model-card-action i {
  color: #fa99a6;
}

body.models-theme-landing .model-card-action {
  border-top-color: rgba(250, 153, 166, 0.2);
}

body.models-theme-landing .model-card-badge {
  background: linear-gradient(135deg, #fa99a6 0%, #f87d8e 100%);
  box-shadow: 0 4px 16px rgba(250, 153, 166, 0.45);
}

body.models-theme-landing .footer-bar {
  border-top: 1px solid rgba(250, 153, 166, 0.22);
}

body.models-theme-landing .footer-inner,
body.models-theme-landing .footer-link,
body.models-theme-landing .footer-copy {
  color: rgba(255, 255, 255, 0.8);
}

body.models-theme-landing .footer-link:hover {
  color: #fa99a6;
}

