/* ============================================
   COMPONENTS — Cards, Buttons, Modals, etc.
   ============================================ */

/* ═══════════════════════════════════════════
   ✦✦✦ HOTELS LUXURY WRAPPER ✦✦✦
   Dark gradient with floating gold particles
   ═══════════════════════════════════════════ */

.hotels-luxe-wrap {
  position: relative;
  margin: 30px 16px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
    linear-gradient(135deg,
      #0a0806 0%,
      #14100a 30%,
      #1a140c 60%,
      #12100a 100%
    );
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(212, 175, 55, 0.08) inset,
    0 0 0 1px rgba(212, 175, 55, 0.12);
  padding: 40px 0;
  animation: hotelsWrapIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hotelsWrapIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Floating gold particles inside hotels wrap */
.hotels-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hotels-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(212, 175, 55, 0.9),
    rgba(212, 175, 55, 0)
  );
  box-shadow:
    0 0 12px rgba(212, 175, 55, 0.9),
    0 0 24px rgba(212, 175, 55, 0.4);
  animation: hotelParticleFloat 5s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0;
}

@keyframes hotelParticleFloat {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  25% {
    opacity: 1;
    transform: translate(25px, -20px) scale(1.3);
  }
  50% {
    opacity: 0.8;
    transform: translate(-15px, -35px) scale(1);
  }
  75% {
    opacity: 1;
    transform: translate(20px, -25px) scale(1.4);
  }
}

/* Gold corner ornaments */
.hotels-corner {
  position: absolute;
  width: 70px;
  height: 70px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
  transition: all 0.5s ease;
}

.hotels-corner-tl {
  top: 20px; left: 20px;
  border-top: 2px solid rgba(212, 175, 55, 0.8);
  border-left: 2px solid rgba(212, 175, 55, 0.8);
  border-top-left-radius: 14px;
}

.hotels-corner-tr {
  top: 20px; right: 20px;
  border-top: 2px solid rgba(212, 175, 55, 0.8);
  border-right: 2px solid rgba(212, 175, 55, 0.8);
  border-top-right-radius: 14px;
}

.hotels-corner-bl {
  bottom: 20px; left: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.8);
  border-left: 2px solid rgba(212, 175, 55, 0.8);
  border-bottom-left-radius: 14px;
}

.hotels-corner-br {
  bottom: 20px; right: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.8);
  border-right: 2px solid rgba(212, 175, 55, 0.8);
  border-bottom-right-radius: 14px;
}

.hotels-luxe-wrap:hover .hotels-corner {
  opacity: 1;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
}

/* Sweeping gold shine at top */
.hotels-luxe-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0) 20%,
    rgba(212, 175, 55, 0.9) 50%,
    rgba(212, 175, 55, 0) 80%,
    transparent 100%
  );
  animation: hotelsShimmer 4s ease-in-out infinite;
}

@keyframes hotelsShimmer {
  0%, 100% { opacity: 0.3; transform: translateX(-30%); }
  50% { opacity: 1; transform: translateX(30%); }
}

/* Mobile responsive */
@media (max-width: 720px) {
  .hotels-luxe-wrap {
    margin: 20px 12px;
    border-radius: 20px;
    padding: 24px 0;
  }

  .hotels-corner {
    width: 45px;
    height: 45px;
  }

  .hotels-corner-tl, .hotels-corner-tr { top: 12px; }
  .hotels-corner-bl, .hotels-corner-br { bottom: 12px; }
  .hotels-corner-tl, .hotels-corner-bl { left: 12px; }
  .hotels-corner-tr, .hotels-corner-br { right: 12px; }
}

/* ═══════════════════════════════════════════
   ✦✦✦ HERO LUXURY BANNER ✦✦✦
   Replaces the promo video with a premium
   animated experience matching the brand.
   ═══════════════════════════════════════════ */

.hero-luxe-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    linear-gradient(135deg,
      #0a0806 0%,
      #14100a 30%,
      #1a140c 60%,
      #12100a 100%
    );
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(212, 175, 55, 0.08) inset,
    0 0 0 1px rgba(212, 175, 55, 0.1);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ═══════════════════════════════════════════
   ✦ Gold Particles (floating dots) ✦
   ═══════════════════════════════════════════ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(212, 175, 55, 0.9),
    rgba(212, 175, 55, 0)
  );
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  animation: particleFloat 4s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0;
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  25% {
    opacity: 1;
    transform: translate(20px, -15px) scale(1.2);
  }
  50% {
    opacity: 0.8;
    transform: translate(-10px, -30px) scale(1);
  }
  75% {
    opacity: 1;
    transform: translate(15px, -20px) scale(1.3);
  }
}

/* ═══════════════════════════════════════════
   ✦ Sweeping Gold Shine ✦
   ═══════════════════════════════════════════ */
.hero-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 40%,
    rgba(212, 175, 55, 0.08) 47%,
    rgba(212, 175, 55, 0.15) 50%,
    rgba(212, 175, 55, 0.08) 53%,
    transparent 60%,
    transparent 100%
  );
  animation: heroShine 6s ease-in-out infinite;
  background-size: 200% 100%;
}

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

/* ═══════════════════════════════════════════
   ✦ Corner Ornaments (elegant frame) ✦
   ═══════════════════════════════════════════ */
.hero-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  opacity: 0.7;
}

.hero-corner-tl {
  top: 20px;
  left: 20px;
  border-top: 2px solid rgba(212, 175, 55, 0.8);
  border-left: 2px solid rgba(212, 175, 55, 0.8);
  border-top-left-radius: 12px;
}

.hero-corner-tr {
  top: 20px;
  right: 20px;
  border-top: 2px solid rgba(212, 175, 55, 0.8);
  border-right: 2px solid rgba(212, 175, 55, 0.8);
  border-top-right-radius: 12px;
}

.hero-corner-bl {
  bottom: 20px;
  left: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.8);
  border-left: 2px solid rgba(212, 175, 55, 0.8);
  border-bottom-left-radius: 12px;
}

.hero-corner-br {
  bottom: 20px;
  right: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.8);
  border-right: 2px solid rgba(212, 175, 55, 0.8);
  border-bottom-right-radius: 12px;
}

/* Corners glow on hover */
.hero-luxe-banner:hover .hero-corner {
  opacity: 1;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transition: all 0.5s ease;
}

/* ═══════════════════════════════════════════
   ✦ Content ✦
   ═══════════════════════════════════════════ */
.hero-luxe-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  animation: heroContentIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ✦ Eyebrow with stars ✦ */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-eb-line {
  flex: 0 1 60px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212, 175, 55, 0.8), transparent
  );
}

.hero-eb-star {
  color: #d4af37;
  font-size: 14px;
  animation: heroStarSpin 3s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

@keyframes heroStarSpin {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: rotate(180deg) scale(1.3);
    opacity: 1;
  }
}

.hero-eb-text {
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
  white-space: nowrap;
}

/* ✦ Title with two lines ✦ */
.hero-luxe-title {
  margin: 0 0 20px;
  line-height: 1.2;
  font-weight: 400;
}

.hero-title-line {
  display: block;
  font-family: 'Playfair Display', 'Georgia', serif;
}

.hero-title-gold {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg,
    #f5d068 0%,
    #d4af37 25%,
    #f5e5a3 50%,
    #d4af37 75%,
    #b8941f 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroGoldShift 5s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

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

.hero-title-white {
  font-size: 22px;
  color: rgba(245, 240, 224, 0.9);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ✦ Subtitle ✦ */
.hero-luxe-sub {
  font-size: 15px;
  color: rgba(245, 240, 224, 0.75);
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 560px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   ✦ Stats Row ✦
   ═══════════════════════════════════════════ */
.hero-luxe-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.4s ease;
}

.hero-stat:hover {
  transform: translateY(-4px);
}

.hero-stat-num {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(180deg, #f5d068 0%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(212, 175, 55, 0.85);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg,
    transparent, rgba(212, 175, 55, 0.6), transparent
  );
}

/* ═══════════════════════════════════════════
   ✦ CTA (Call to Action) ✦
   ═══════════════════════════════════════════ */
.hero-luxe-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.hero-luxe-cta:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.9);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.hero-cta-arrow {
  animation: heroArrowBounce 2s ease-in-out infinite;
  font-size: 14px;
}

.hero-cta-arrow:last-child {
  animation-delay: 0.3s;
}

@keyframes heroArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ═══════════════════════════════════════════
   ✦ Responsive — Mobile ✦
   ═══════════════════════════════════════════ */
@media (max-width: 720px) {
  .hero-luxe-banner {
    min-height: 360px;
    padding: 40px 20px;
    border-radius: 18px;
  }

  .hero-title-gold {
    font-size: 36px;
  }

  .hero-title-white {
    font-size: 16px;
  }

  .hero-luxe-sub {
    font-size: 13px;
  }

  .hero-luxe-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 30px;
  }

  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-stat-divider {
    height: 32px;
  }

  .hero-corner {
    width: 40px;
    height: 40px;
  }

  .hero-corner-tl, .hero-corner-tr { top: 12px; }
  .hero-corner-bl, .hero-corner-br { bottom: 12px; }
  .hero-corner-tl, .hero-corner-bl { left: 12px; }
  .hero-corner-tr, .hero-corner-br { right: 12px; }

  .hero-eb-line {
    flex: 0 1 30px;
  }

  .hero-eb-text {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .hero-luxe-cta {
    font-size: 11px;
    padding: 10px 20px;
    letter-spacing: 2px;
  }
}

@media (max-width: 400px) {
  .hero-title-gold {
    font-size: 28px;
  }

  .hero-luxe-stats {
    gap: 12px;
  }

  .hero-stat-divider {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   ✦ LUXURY AUTH MODAL — Google + Phone
   ═══════════════════════════════════════════ */

/* Fade animation for all auth elements */
@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.auth-fade {
  opacity: 0;
  animation: authFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--fade-delay, 0s);
}

/* Modal card entrance */
@keyframes authCardIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(30px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.auth-luxe {
  animation: authCardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  background: linear-gradient(180deg,
    rgba(20, 16, 8, 0.98) 0%,
    rgba(12, 10, 6, 0.99) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(212, 175, 55, 0.08) inset,
    0 0 0 1px rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

/* Shimmering gold line at top */
.auth-luxe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 175, 55, 0) 20%,
    rgba(212, 175, 55, 0.9) 50%,
    rgba(212, 175, 55, 0) 80%,
    transparent 100%
  );
  animation: authShimmer 3s ease-in-out infinite;
}

@keyframes authShimmer {
  0%, 100% { opacity: 0.3; transform: translateX(-30%); }
  50% { opacity: 1; transform: translateX(30%); }
}

/* Corner ornaments */
.auth-luxe::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212, 175, 55, 0.4), transparent
  );
}

/* ✦ Luxury eyebrow with lines and stars ✦ */
.auth-eyebrow-luxe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 24px;
  animation: authFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-eb-line {
  flex: 0 1 40px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212, 175, 55, 0.6), transparent
  );
}

.auth-eb-star {
  color: rgba(212, 175, 55, 0.85);
  font-size: 12px;
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.auth-eb-text {
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* ═══════════════════════════════════════════
   ✦ GOOGLE BUTTON — LUXURY CENTERED
   Simple, clean, "Google" text centered
   ═══════════════════════════════════════════ */

.social-login-group {
  display: block !important;
  width: 100% !important;
  margin: 20px 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  text-align: center !important;
  direction: ltr !important;
}

.google-btn-luxe {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  outline: none !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
  direction: ltr !important;
  text-align: center !important;
  float: none !important;
}

.google-btn-luxe:hover {
  transform: translateY(-2px);
}

.google-btn-luxe:active {
  transform: translateY(0);
}

.google-btn-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 24px;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg,
    rgba(28, 24, 16, 0.95) 0%,
    rgba(20, 18, 12, 0.98) 100%
  );
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1;
  min-height: 60px;
  direction: ltr !important;
  text-align: center;
}

.google-btn-luxe:hover .google-btn-inner {
  border-color: rgba(212, 175, 55, 0.9);
  background: linear-gradient(135deg,
    rgba(36, 30, 18, 1) 0%,
    rgba(28, 24, 14, 1) 100%
  );
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

/* Glowing gold shine effect */
.google-btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
  animation: googleGlowSpin 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 14px;
}

.google-btn-luxe:hover .google-btn-glow {
  opacity: 1;
}

@keyframes googleGlowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* White circle icon */
.google-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: #ffffff;
  border-radius: 50%;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 0 12px rgba(212, 175, 55, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.google-btn-icon svg {
  width: 22px;
  height: 22px;
}

.google-btn-luxe:hover .google-btn-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(212, 175, 55, 0.5);
}

/* "Google" text — clean, centered, gold accent */
.google-btn-text {
  color: #f5e5a3;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(212, 175, 55, 0.3);
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  white-space: nowrap;
}

.google-btn-luxe:hover .google-btn-text {
  color: #ffd94d;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 175, 55, 0.7);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .google-btn-inner {
    padding: 14px 20px;
    font-size: 14px;
    min-height: 52px;
    gap: 10px;
  }

  .google-btn-text {
    font-size: 13px;
    letter-spacing: 2.5px;
  }

  .google-btn-icon {
    width: 30px;
    height: 30px;
  }

  .google-btn-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ═══════════════════════════════════════════
   ✦ PHONE FIELD — LUXURY DESIGN
   ═══════════════════════════════════════════ */

.phone-field-luxe {
  position: relative;
}

.phone-field-luxe label {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.phone-input-luxe {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg,
    rgba(28, 24, 16, 0.7) 0%,
    rgba(20, 18, 12, 0.85) 100%
  );
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
}

/* Golden shimmer at bottom */
.phone-input-luxe::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.8),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-input-luxe:focus-within {
  border-color: rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg,
    rgba(36, 30, 18, 0.9) 0%,
    rgba(28, 24, 14, 0.95) 100%
  );
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}

.phone-input-luxe:focus-within::after {
  transform: scaleX(1);
}

/* Country code box (+964) */
.phone-cc-luxe {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border-right: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  min-width: 90px;
  justify-content: center;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
}

.phone-input-luxe:focus-within .phone-cc-luxe {
  background: linear-gradient(135deg,
    rgba(212, 175, 55, 0.25) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
}

.phone-cc-flag {
  font-size: 18px;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

.phone-cc-code {
  font-family: 'Segoe UI', sans-serif;
  font-variant-numeric: tabular-nums;
}

/* Phone number input */
.phone-input-luxe input[type="tel"] {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  border: none;
  outline: none;
  color: #f5f0e0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-family: 'Segoe UI', sans-serif;
  font-variant-numeric: tabular-nums;
  text-align: left;
  direction: ltr;
  unicode-bidi: bidi-override;
}

.phone-input-luxe input[type="tel"]::placeholder {
  color: rgba(212, 175, 55, 0.35);
  letter-spacing: 2px;
  font-weight: 400;
}

.phone-input-luxe input[type="tel"]:focus {
  color: #ffffff;
}

/* RTL: place country code on right instead */
[dir="rtl"] .phone-input-luxe {
  /* Keep LTR inside since phone is universal LTR */
}

[dir="rtl"] .phone-cc-luxe {
  border-right: none;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
}

/* Extra spacing for phone field */
.form-field.phone-field-luxe {
  margin: 18px 0;
}

/* ═══════════════════════════════════════════
   ✦ Enhanced divider ✦
   ═══════════════════════════════════════════ */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: rgba(212, 175, 55, 0.7);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212, 175, 55, 0.4), transparent
  );
}


/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all .25s;
  cursor: pointer;
  font-family: inherit;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--gold-glow); }

.btn-gold-sm {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* ✦ Take Back Money button — luxury red gradient ✦ */
.btn-danger-sm {
  background: linear-gradient(135deg, #c0392b 0%, #8b1e14 100%);
  color: #ffffff;
  padding: 10px 18px;
  border: 1px solid rgba(255, 100, 100, 0.4);
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 4px 12px rgba(192, 57, 43, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}
.btn-danger-sm:hover {
  background: linear-gradient(135deg, #e04532 0%, #a52818 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 20px rgba(192, 57, 43, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-danger-sm:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
}
.btn-outline:hover { background: var(--gold); color: #0a0a0a; }

.btn-block { display: flex; width: 100%; }
.btn-logout {
  background: linear-gradient(135deg, #c0392b, #8e2820);
  color: #fff;
  margin-top: 24px;
  padding: 18px;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(192,57,43,.3);
}
.btn-logout:hover { transform: translateY(-2px); }

.btn-link {
  font-size: 28px; color: var(--gold);
  padding: 4px 10px;
}

/* ============ LANG SELECT ============ */
.lang-select {
  background: var(--bg-2); border: 1px solid var(--line);
  color: var(--text); padding: 8px 12px; border-radius: 8px;
  font: inherit; cursor: pointer; outline: none;
}
.lang-select:focus { border-color: var(--gold); }

/* ============ CARDS ============ */
.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.card-head h3 { font-family: var(--font-display); color: var(--gold); font-size: 22px; }

/* ============ HOTEL CARD ============ */
.hotel-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.hotel-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow); }
.hotel-card:active { transform: scale(.98); }

/* Fade-in animation specifically for hotel detail page */
#detail.active {
  animation: detailFadeIn .8s cubic-bezier(.22,.61,.36,1);
}
@keyframes detailFadeIn {
  from {
    opacity: 0;
    transform: scale(.96) translateY(20px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
.hotel-img {
  height: 230px;
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* ✦ Lazy-loaded card image — fades in when loaded ✦ */
.hotel-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}
.hotel-img > img[src] {
  opacity: 1;
}

/* ============ Blurred BG with Circular Logo ============ */
.hotel-img-blur {
  height: 260px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hotel-img-blur::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(10px) brightness(.55);
  transform: scale(1.15);
  z-index: 0;
}
.hotel-img-blur::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.hotel-img-blur .hotel-badge { z-index: 3; }
.hotel-logo-wrap {
  position: relative; z-index: 2;
  width: 130px; height: 130px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 10, 10, .55);
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, .15),
    0 8px 30px rgba(0, 0, 0, .6),
    inset 0 0 20px rgba(212, 175, 55, .15);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all .45s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
}
.hotel-logo-wrap:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 6px rgba(212, 175, 55, .25),
    0 12px 40px rgba(212, 175, 55, .35),
    inset 0 0 25px rgba(212, 175, 55, .3);
}
.hotel-logo-wrap.zoomed {
  transform: scale(1.45);
  box-shadow:
    0 0 0 8px rgba(212, 175, 55, .35),
    0 18px 60px rgba(212, 175, 55, .5),
    inset 0 0 30px rgba(212, 175, 55, .4);
}
.hotel-logo {
  width: 90%; height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, .35));
}
.hotel-logo-wrap.no-logo::after {
  content: attr(data-initial);
  position: absolute;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(212, 175, 55, .5);
}
.hotel-img-actual {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hotel-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #0a0a0a;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  z-index: 2;
}
body[dir="rtl"] .hotel-badge { left: auto; right: 14px; }
.hotel-info { padding: 20px; }
.hotel-name { font-family: var(--font-display); font-size: 22px; color: var(--gold); margin-bottom: 4px; }
.hotel-city { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
.hotel-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.hotel-price { font-size: 20px; font-weight: 700; color: var(--text); }
.hotel-price small { color: var(--muted); font-weight: 400; font-size: 12px; }
.hotel-rating { color: var(--gold); font-weight: 600; font-size: 14px; }

/* ============ FORMS ============ */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label {
  display: block; font-size: 12px;
  color: var(--gold); letter-spacing: 1px;
  margin-bottom: 8px; text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 10px;
  outline: none;
  font: inherit;
  transition: border-color .2s;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }

/* ============ BOOKING SUMMARY ============ */
/* ============ PIN Modal — RESET LUXURY ============ */
.pin-box {
  width: min(420px, 92%) !important;
  text-align: center;
  padding: 40px 32px !important;
  border: 1.5px solid var(--danger) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at top, rgba(192,57,43,.10) 0%, transparent 60%),
    var(--bg-1) !important;
  box-shadow:
    inset 0 0 0 1px rgba(192,57,43,.18),
    0 0 40px rgba(192,57,43,.35),
    0 0 90px rgba(192,57,43,.18),
    0 30px 70px -20px rgba(0,0,0,.85) !important;
}
.pin-icon {
  font-size: 60px;
  color: var(--danger);
  filter: drop-shadow(0 0 18px rgba(192,57,43,.6));
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
}
.pin-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--danger);
  margin-bottom: 6px;
}
.pin-sub { color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.pin-input {
  width: 100%;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(192,57,43,.4);
  color: var(--text);
  padding: 18px;
  border-radius: 12px;
  font-size: 28px;
  font-family: monospace;
  letter-spacing: 8px;
  text-align: center;
  outline: none;
  transition: all .25s;
}
.pin-input:focus {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(192,57,43,.2);
}
.pin-error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 12px;
  padding: 10px;
  background: rgba(192,57,43,.1);
  border-radius: 8px;
  border: 1px solid rgba(192,57,43,.3);
}
.pin-actions { margin-top: 18px; }

/* Red reset button */
.btn-reset {
  border-color: var(--danger) !important;
  color: var(--danger) !important;
}
.btn-reset:hover {
  background: var(--danger) !important;
  color: #fff !important;
}

/* ============ COMPLAINTS card ============ */
.complaints-card {
  border: 1px solid rgba(212,175,55,.3);
}
.complaint-item {
  padding: 18px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(212,175,55,.04) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  transition: all .25s;
}
.complaint-item:hover {
  border-color: rgba(212,175,55,.4);
  transform: translateX(-4px);
}
body[dir="rtl"] .complaint-item:hover { transform: translateX(4px); }
.complaint-item:last-child { margin-bottom: 0; }
.complaint-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.complaint-user strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
  display: block;
  letter-spacing: .5px;
}
.complaint-user .muted {
  font-size: 12px;
  display: block;
  margin-top: 2px;
}
.complaint-stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(212,175,55,.5);
}
.complaint-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.complaint-date {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1px;
}

/* ============ Settings — Luxury "♛ ناوچەی ئەدمین" button ============ */
#goAdminBtn {
  position: relative;
  background: linear-gradient(135deg, rgba(212,175,55,.10) 0%, rgba(212,175,55,.02) 100%);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px !important;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px !important;
  margin-top: 18px !important;
  box-shadow: 0 8px 24px rgba(212,175,55,.18);
  overflow: hidden;
  transition: background .3s, box-shadow .3s, transform .3s;
}
/* Shimmer line (subtle) */
#goAdminBtn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,235,160,.25), transparent);
  transition: left .8s;
  pointer-events: none;
}
#goAdminBtn:hover::before { left: 100%; }

/* Hover — KEEP gold text and brand visible, don't go black */
#goAdminBtn:hover {
  background: linear-gradient(135deg, rgba(212,175,55,.22) 0%, rgba(212,175,55,.10) 100%);
  color: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow:
    0 12px 30px rgba(212,175,55,.35),
    inset 0 0 20px rgba(212,175,55,.15);
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(244,209,96,.7);
}
#goAdminBtn:active { transform: translateY(0); }

/* ============ Luxury helevanfareeq Name (Settings + Admin) ============ */
.made-by-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 6px !important;
  font-size: 28px;
  background: linear-gradient(120deg,
    #fff 0%,
    var(--gold-2) 30%,
    var(--gold) 50%,
    var(--gold-3) 70%,
    #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: nameShine 5s linear infinite, nameFloat 4s ease-in-out infinite;
  text-shadow: 0 0 40px rgba(212,175,55,.4);
  position: relative;
  display: inline-block;
}
@keyframes nameShine {
  to { background-position: 200% center; }
}
@keyframes nameFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
/* Subtle gold glow around name */
.made-by {
  position: relative;
}
.made-by::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60%; height: 80px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(212,175,55,.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.made-by > * { position: relative; z-index: 1; }

/* ============ Rating Modal — LUXURY ============ */
.rating-box {
  width: min(480px, 92%) !important;
  text-align: center;
  padding: 44px 36px 32px !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.12) 0%, transparent 65%),
    radial-gradient(circle at 80% 100%, rgba(212,175,55,.06) 0%, transparent 50%),
    linear-gradient(180deg, #181410 0%, var(--bg-1) 60%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.20),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 50px rgba(212,175,55,.4),
    0 0 110px rgba(212,175,55,.22),
    0 0 180px rgba(212,175,55,.10),
    0 40px 90px -20px rgba(0,0,0,.9) !important;
  position: relative;
  overflow: visible !important;
  animation: ratingAuraPulse 3s ease-in-out infinite;
  /* Hide ugly scrollbar */
  max-height: 92vh;
  overflow-y: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rating-box::-webkit-scrollbar { width: 0; display: none; }

@keyframes ratingAuraPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.20),
      inset 0 1px 0 rgba(255,255,255,.05),
      0 0 50px rgba(212,175,55,.4),
      0 0 110px rgba(212,175,55,.22),
      0 0 180px rgba(212,175,55,.10),
      0 40px 90px -20px rgba(0,0,0,.9);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.32),
      inset 0 1px 0 rgba(255,255,255,.08),
      0 0 75px rgba(212,175,55,.6),
      0 0 150px rgba(212,175,55,.38),
      0 0 220px rgba(212,175,55,.18),
      0 40px 90px -20px rgba(0,0,0,.9);
  }
}

/* Spinning gold ring around modal */
.rating-box::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 25px;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--gold-2) 20%,
    var(--gold) 40%,
    transparent 50%,
    var(--gold) 60%,
    var(--gold-2) 80%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ratingRingSpin 10s linear infinite;
  pointer-events: none;
  opacity: .7;
  z-index: 0;
}
@keyframes ratingRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Top gold ribbon */
.rating-box::after {
  content: '✦ YOUR EXPERIENCE ✦';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 6px 22px;
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(212,175,55,.5);
  z-index: 2;
  white-space: nowrap;
}

.rating-icon {
  font-size: 64px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(212,175,55,.7));
  animation: ratingIconFloat 3.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
  line-height: 1;
}
@keyframes ratingIconFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  33%      { transform: translateY(-6px) rotate(-5deg); }
  66%      { transform: translateY(-3px) rotate(5deg); }
}

.rating-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  background: linear-gradient(120deg, #fff 0%, var(--gold-2) 40%, var(--gold) 60%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ratingTitleShine 4s linear infinite;
  position: relative;
  z-index: 1;
}
@keyframes ratingTitleShine { to { background-position: 200% center; } }

.rating-sub {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Stars — larger, more glow */
.stars {
  display: flex; justify-content: center; gap: 12px;
  margin: 12px 0 8px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.stars .star {
  font-size: 52px;
  color: #2a2a2a;
  cursor: pointer;
  transition: all .25s cubic-bezier(.34, 1.56, .64, 1);
  user-select: none;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
  line-height: 1;
}
.stars .star:hover {
  transform: scale(1.2) translateY(-4px);
}
.stars .star.active {
  color: var(--gold);
  text-shadow:
    0 0 8px rgba(244,209,96,.9),
    0 0 24px rgba(212,175,55,.7),
    0 0 40px rgba(212,175,55,.4),
    0 2px 6px rgba(0,0,0,.5);
  animation: starPop .45s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes starPop {
  0%   { transform: scale(.6) rotate(-180deg); }
  60%  { transform: scale(1.4) rotate(20deg); }
  100% { transform: scale(1) rotate(0); }
}

.rating-label {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  height: 30px;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(212,175,55,.5);
  position: relative;
  z-index: 1;
}

/* Complaints field with luxury styling */
.rating-box .form-field { position: relative; z-index: 1; }
.rating-box .form-field label {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 8px;
}
.rating-box .form-field textarea {
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  resize: none;
  transition: all .25s;
}
.rating-box .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15), inset 0 0 12px rgba(212,175,55,.05);
}

.rating-actions { margin-top: 22px; position: relative; z-index: 1; }
.rating-actions .btn-gold {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rating-actions .btn-link {
  color: var(--muted);
  font-size: 12px;
  margin-top: 12px;
  display: block;
  width: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .25s;
}
.rating-actions .btn-link:hover { color: var(--gold); }

/* ============ Confirm Booking Modal — LUXURY ============ */
.confirm-booking-box {
  width: min(480px, 92%) !important;
  text-align: center;
  padding: 44px 36px 36px !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.12) 0%, transparent 65%),
    radial-gradient(circle at 80% 100%, rgba(212,175,55,.06) 0%, transparent 50%),
    linear-gradient(180deg, #181410 0%, var(--bg-1) 60%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.20),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 50px rgba(212,175,55,.4),
    0 0 110px rgba(212,175,55,.22),
    0 0 180px rgba(212,175,55,.10),
    0 40px 90px -20px rgba(0,0,0,.9) !important;
  position: relative;
  overflow: visible !important;
  animation: confirmAuraPulse 3s ease-in-out infinite;
}
@keyframes confirmAuraPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.20),
      inset 0 1px 0 rgba(255,255,255,.05),
      0 0 50px rgba(212,175,55,.4),
      0 0 110px rgba(212,175,55,.22),
      0 0 180px rgba(212,175,55,.10),
      0 40px 90px -20px rgba(0,0,0,.9);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.32),
      inset 0 1px 0 rgba(255,255,255,.08),
      0 0 75px rgba(212,175,55,.6),
      0 0 150px rgba(212,175,55,.38),
      0 0 220px rgba(212,175,55,.18),
      0 40px 90px -20px rgba(0,0,0,.9);
  }
}
/* Gold spinning ring around modal */
.confirm-booking-box::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 25px;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--gold-2) 20%,
    var(--gold) 40%,
    transparent 50%,
    var(--gold) 60%,
    var(--gold-2) 80%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: confirmRingSpin 8s linear infinite;
  pointer-events: none;
  opacity: .7;
  z-index: 0;
}
@keyframes confirmRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Top gold ribbon "GRATUS" */
.confirm-booking-box::after {
  content: '✦ GRATUS COMPANY ✦';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 6px 22px;
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(212,175,55,.5);
  z-index: 2;
}
.confirm-icon {
  font-size: 70px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(212,175,55,.7));
  animation: confirmCrownFloat 3.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
  line-height: 1;
}
@keyframes confirmCrownFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  33%      { transform: translateY(-6px) rotate(-2deg); }
  66%      { transform: translateY(-3px) rotate(2deg); }
}
.confirm-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
  background: linear-gradient(120deg, #fff 0%, var(--gold-2) 40%, var(--gold) 60%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: confirmTitleShine 4s linear infinite;
  position: relative;
  z-index: 1;
}
@keyframes confirmTitleShine {
  to { background-position: 200% center; }
}
.confirm-message {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* Wallet card — premium */
.confirm-wallet {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 22px;
  height: 145px;
  transition: all .3s;
  border: 1px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 0 20px rgba(212,175,55,.25);
  z-index: 1;
}
.confirm-wallet-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0e0e0e 0%, #2a2010 40%, #6f5410 70%, #b8941f 100%);
}
.confirm-wallet-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 25%, rgba(244,209,96,.5) 0%, transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(212,175,55,.25) 0%, transparent 40%);
}
.confirm-wallet-bg::after {
  content: 'GRATUS';
  position: absolute;
  bottom: 10px; right: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,.3);
}
body[dir="rtl"] .confirm-wallet-bg::after { right: auto; left: 16px; }
.confirm-wallet-content {
  position: relative; z-index: 1;
  height: 100%;
  padding: 20px 24px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  color: #fff;
  text-align: left;
}
body[dir="rtl"] .confirm-wallet-content { align-items: flex-end; text-align: right; }
.confirm-wallet-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.confirm-wallet-balance {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.confirm-wallet-needed {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  display: flex; gap: 8px; align-items: baseline;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.confirm-wallet-needed strong {
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
}
.confirm-question {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 22px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.confirm-actions .btn {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Red flash when wallet is empty */
@keyframes walletRedFlash {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(192, 57, 43, 0);
    transform: scale(1);
  }
  20%, 60% {
    box-shadow: 0 0 0 4px rgba(192, 57, 43, .55), 0 0 30px rgba(192, 57, 43, .55);
    transform: scale(1.02);
  }
  40% {
    transform: translateX(-4px) scale(1.02);
  }
  50% {
    transform: translateX(4px) scale(1.02);
  }
}
.wallet-red-flash {
  animation: walletRedFlash 1s ease;
}
.wallet-red-flash .confirm-wallet-bg {
  background: linear-gradient(135deg, #1a0606 0%, #3a0d0d 50%, #c0392b 100%) !important;
}
.wallet-red-flash .confirm-wallet-balance,
.wallet-red-flash .confirm-wallet-needed strong {
  color: #ff6b6b !important;
}

.deposit-notice {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(192,57,43,.12), rgba(212,175,55,.06));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin-bottom: 12px;
  position: relative; overflow: hidden;
}
.deposit-notice::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold), var(--gold-3));
}
body[dir="rtl"] .deposit-notice::before { left: auto; right: 0; }
.deposit-icon { font-size: 28px; flex-shrink: 0; }
.deposit-text strong {
  display: block; color: var(--gold);
  font-family: var(--font-display); font-size: 18px;
  margin-bottom: 4px; letter-spacing: 1px;
}
.deposit-text p {
  color: var(--text); font-size: 13px; line-height: 1.5; margin: 0;
}

/* ============ Luxury Settings card ============ */
#settings .account-card {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.08) 0%, transparent 60%),
    var(--bg-1);
  border: 1px solid var(--gold);
  box-shadow:
    0 0 0 1px rgba(212,175,55,.08),
    0 20px 40px -20px rgba(0,0,0,.6);
  position: relative; overflow: hidden;
}
#settings .account-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
#settings .account-avatar {
  border: 3px solid var(--gold);
  box-shadow: 0 0 25px rgba(212,175,55,.4), inset 0 0 15px rgba(212,175,55,.2);
}
/* ═══════════════════════════════════════════
   ✦ LUXURY USER NAME — Gold glow + serif ✦
   ═══════════════════════════════════════════ */
#settings .account-info h2 {
  position: relative;
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: 2px;
  padding: 6px 18px;
  margin-bottom: 10px;
  background: linear-gradient(135deg,
    #f5d068 0%,
    #d4af37 25%,
    #ffe9a3 50%,
    #d4af37 75%,
    #b8941f 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: nameGoldShift 5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 8px rgba(212, 175, 55, 0.4))
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
  text-transform: capitalize;
}

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

/* Soft luxury glow behind the name */
#settings .account-info h2::before {
  content: '';
  position: absolute;
  inset: -20% -8% -20% -8%;
  background: radial-gradient(ellipse at center,
    rgba(212, 175, 55, 0.25) 0%,
    rgba(212, 175, 55, 0.12) 30%,
    transparent 65%
  );
  filter: blur(18px);
  z-index: -1;
  animation: nameGlowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes nameGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Elegant serif star ornaments flanking the name */
#settings .account-info h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 175, 55, 0.7),
    transparent
  );
}

/* Mobile adjust — still luxury, just a bit smaller */
@media (max-width: 640px) {
  #settings .account-info h2 {
    font-size: 34px;
    letter-spacing: 1.5px;
    padding: 4px 12px;
  }
}

@media (max-width: 400px) {
  #settings .account-info h2 {
    font-size: 28px;
  }
}
#settings .card {
  border-color: rgba(212,175,55,.15);
  transition: border-color .3s;
}
#settings .card:hover { border-color: rgba(212,175,55,.4); }
#settings .setting-row { padding: 18px 0; }
#settings .setting-icon {
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
  border: 1px solid var(--gold);
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(212,175,55,.3));
}
#settings .setting-left h4 {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
}
#settings .made-by {
  padding: 30px; margin-top: 30px;
  background: linear-gradient(135deg, rgba(212,175,55,.06), rgba(212,175,55,.01));
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius);
}
#settings .made-by-text { font-size: 12px; letter-spacing: 4px; }
#settings .made-by-name { font-size: 28px; letter-spacing: 6px; }
#settings #bigLogoutBtn { box-shadow: 0 8px 30px rgba(192,57,43,.35); }
#settings #goAdminBtn {
  background: linear-gradient(135deg, rgba(212,175,55,.10), transparent);
  border-color: var(--gold);
  position: relative;
}

.booking-perks {
  margin-top: 8px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.03));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.perks-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}
.perk-item::before { content: ''; }

.booking-summary {
  margin-top: 8px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
}
.booking-summary h3 { color: var(--gold); font-family: var(--font-display); margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; }
.summary-row.total {
  padding-top: 14px; margin-top: 6px;
  border-top: 1px solid var(--line);
  font-size: 20px; color: var(--gold);
}

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(6px); }
.modal-box {
  position: relative; z-index: 1;
  width: min(440px, 92%);
  max-height: 90vh; overflow-y: auto;
  padding: 36px 30px;
  border: 1px solid var(--gold);
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96);} to {opacity:1; transform:none;} }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  font-size: 22px; color: var(--muted);
  padding: 4px 10px;
}
body[dir="rtl"] .modal-close { right: auto; left: 14px; }

/* ============ TABS ============ */
.tabs { display: flex; gap: 8px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.tab {
  padding: 12px 24px; color: var(--muted);
  border-bottom: 2px solid transparent;
  font-weight: 600;
  transition: all .2s;
}
.tab.active { color: var(--gold); border-color: var(--gold); }
.tab-pane { display: none; }
.tab-pane.active {
  display: grid;
  animation: tabPaneFadeIn .55s cubic-bezier(.22, .61, .36, 1);
}
@keyframes tabPaneFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.97);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Tab indicator slides smoothly between buttons */
.tabs .tab {
  position: relative;
  transition: color .3s ease;
}
.tabs .tab.active {
  color: var(--gold);
}
.tabs .tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: tabUnderlineSlide .4s ease;
}
@keyframes tabUnderlineSlide {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ============ BOTTOM NAV ============ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background:
    linear-gradient(180deg, rgba(212,175,55,.04) 0%, transparent 30%),
    linear-gradient(180deg, #0a0908 0%, #08070a 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,.2);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  box-shadow:
    0 -8px 30px rgba(0,0,0,.6),
    0 -2px 20px rgba(212,175,55,.1);
}
/* Gold accent line on top */
.bottom-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
}
body.theme-light .bottom-nav { background: rgba(255,255,255,.96); }
.nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px;
  color: var(--muted); font-size: 11px;
  transition: color .2s;
}
.nav-item .nav-icon {
  font-size: 22px;
  transition: transform .2s;
}
.nav-item.active { color: var(--gold); }
.nav-item.active .nav-icon { transform: scale(1.15); }
.nav-item:hover { color: var(--gold); }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  background: var(--bg-2); color: var(--text);
  border: 1px solid var(--gold);
  padding: 14px 24px; border-radius: 12px;
  z-index: 300;
  box-shadow: var(--shadow-gold);
  animation: toastIn .3s ease;
}
@keyframes toastIn { from {opacity:0; transform: translate(-50%, 20px);} to {opacity:1; transform: translateX(-50%);} }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }

/* ============ LOADING SCREEN ============ */
.loader-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: #000;
  display: grid; place-items: center;
  animation: loaderIn .35s ease;
}
.loader-overlay.fading-out {
  animation: loaderOut .7s ease forwards;
  pointer-events: none;
}
@keyframes loaderIn {
  from { opacity: 0; backdrop-filter: blur(0); }
  to   { opacity: 1; backdrop-filter: blur(8px); }
}
@keyframes loaderOut {
  from { opacity: 1; transform: scale(1); filter: blur(0); }
  to   { opacity: 0; transform: scale(1.05); filter: blur(8px); }
}
.loader-content { text-align: center; }
.loader-image {
  width: 520px;
  max-width: 88vw;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: pulse 1.8s ease-in-out infinite;
}
.loader-spinner {
  margin: 24px auto 0;
  width: 50px; height: 50px;
  border: 3px solid rgba(212,175,55,.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .65; transform: scale(.96); }
}

/* ============ THANK YOU SCREEN ============ */
.thanks-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: radial-gradient(circle at center, rgba(26,20,5,.98), rgba(10,10,10,.98));
  display: grid; place-items: center;
  animation: thanksIn .6s ease;
}
@keyframes thanksIn { from { opacity: 0; } to { opacity: 1; } }
.thanks-content {
  text-align: center; padding: 40px;
  max-width: 540px;
  animation: thanksScale .8s ease;
}
@keyframes thanksScale {
  0% { opacity: 0; transform: scale(.85); }
  100% { opacity: 1; transform: scale(1); }
}
.thanks-icon {
  font-size: 90px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.thanks-title {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.thanks-sub { color: var(--muted); font-size: 18px; margin-bottom: 24px; }
.thanks-id {
  display: inline-block;
  padding: 10px 22px;
  background: var(--bg-2);
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  font-family: monospace;
  letter-spacing: 2px;
}

/* ============ ADMIN ============ */
.admin-prompt-box { text-align: center; padding: 50px 32px; }
.admin-prompt-box .icon { font-size: 60px; margin-bottom: 16px; color: var(--gold); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  background: var(--bg-2);
  border-radius: 10px;
  overflow: hidden;
}
.admin-table th, .admin-table td {
  padding: 12px 14px;
  text-align: start;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.admin-table th {
  background: var(--bg-3);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
}
.admin-table tr:hover td { background: rgba(212,175,55,.06); }
.admin-hotel-select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.admin-hotel-pick {
  padding: 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.admin-hotel-pick:hover, .admin-hotel-pick.active {
  border-color: var(--gold);
  background: rgba(212,175,55,.08);
  transform: translateY(-3px);
}
.admin-hotel-pick h4 { color: var(--gold); font-family: var(--font-display); font-size: 18px; }

/* ============ CLUB PRICING ============ */
.club-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s;
}
.club-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.club-card-img {
  height: 220px;
  background: linear-gradient(135deg, #1a0011, #0a0a0a);
  background-size: cover; background-position: center;
  position: relative;
  filter: brightness(.85);
}
.club-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%);
}

/* Luxury fallback when club has no image */
.club-card-img-empty {
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.18) 0%, transparent 65%),
    radial-gradient(ellipse at bottom, rgba(0,0,0,.65) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #1a0d05 50%, #08060a 100%);
  filter: none;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.club-card-img-empty::before {
  background:
    repeating-linear-gradient(45deg, rgba(212,175,55,.04) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
}
.club-card-img-empty .club-card-emblem {
  font-family: var(--font-display);
  font-size: 92px;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212,175,55,.55), 0 0 60px rgba(212,175,55,.25);
  animation: emblemFloat 3.5s ease-in-out infinite;
  z-index: 1;
}
@keyframes emblemFloat {
  0%, 100% { transform: translateY(-12px) scale(1); opacity: .85; }
  50%      { transform: translateY(0) scale(1.05); opacity: 1; }
}
.club-card-name {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  z-index: 1;
}
.club-card-name h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.club-card-name p { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.club-card-body { padding: 22px; }
.club-perk {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(212,175,55,.08);
  border: 1px dashed var(--gold);
  border-radius: 10px;
  color: var(--gold);
  font-weight: 600; font-size: 13px;
  margin-bottom: 14px;
}
.club-prices { display: grid; gap: 8px; }
.club-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
body[dir="rtl"] .club-price-row { border-left: none; border-right: 3px solid var(--gold); }
.club-price-row.today {
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
  border-color: var(--gold-2);
}
.club-price-day { font-size: 13px; color: var(--text); }
.club-price-amount { font-weight: 700; color: var(--gold); font-family: var(--font-display); font-size: 18px; }
.club-today-badge {
  display: inline-block;
  margin-inline-start: 8px;
  padding: 3px 12px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow:
    0 4px 14px rgba(212,175,55,.55),
    inset 0 1px 0 rgba(255,255,255,.40);
  animation: todayBadgePulse 2.5s ease-in-out infinite;
  position: relative;
}
@keyframes todayBadgePulse {
  0%, 100% {
    box-shadow:
      0 4px 14px rgba(212,175,55,.50),
      inset 0 1px 0 rgba(255,255,255,.40);
  }
  50% {
    box-shadow:
      0 6px 22px rgba(212,175,55,.75),
      0 0 30px rgba(244,209,96,.40),
      inset 0 1px 0 rgba(255,255,255,.55);
  }
}

/* ============ ICONS upgrade — bigger, more luxe ============ */
.feature-icon, .nav-icon, .history-icon, .setting-icon {
  font-feature-settings: "ss01";
}
.nav-icon {
  font-size: 30px !important;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(212,175,55,.35));
}
.nav-item.active .nav-icon {
  text-shadow: 0 0 20px var(--gold);
}
.nav-item span { font-size: 12px; font-weight: 600; letter-spacing: .5px; }
.feature-icon { font-size: 38px !important; }
.setting-icon { font-size: 24px !important; }
.history-icon { font-size: 22px !important; }

/* ============ MADE-BY ============ */
.made-by {
  text-align: center;
  margin: 30px 0 10px;
  padding: 20px;
  border-top: 1px solid var(--line);
}
.made-by-text {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.made-by-name {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ============ WELCOME BANNER ============ */
.welcome-banner {
  position: relative;
  padding: 70px 0 50px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border-bottom: 1px solid rgba(212,175,55,.2);
  overflow: hidden;
}
.welcome-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.welcome-inner { position: relative; z-index: 1; }
.welcome-eyebrow {
  display: inline-block;
  font-size: 32px;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold);
  margin-bottom: 14px;
  animation: float 3s ease-in-out infinite;
}
.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(120deg, #ffffff 0%, var(--gold-2) 40%, var(--gold) 60%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  animation: shineText 4s linear infinite;
}
@keyframes shineText {
  to { background-position: 200% center; }
}
.welcome-sub {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 2px;
}

/* ============ Brand logo image ============ */
.brand-logo {
  width: 52px; height: 52px;
  object-fit: contain;
}

/* ============ BACK BUTTON — Elegant pill ============ */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 14px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 100px;
  color: var(--gold);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  cursor: pointer;
  transition: all .3s ease;
  margin-right: 14px;
  position: relative;
  overflow: hidden;
}
.back-btn svg {
  transition: transform .3s ease;
  stroke: var(--gold);
}
.back-btn-text { line-height: 1; }
body[dir="rtl"] .back-btn {
  margin-right: 0;
  margin-left: 14px;
  padding: 8px 14px 8px 18px;
}
body[dir="rtl"] .back-btn svg { transform: scaleX(-1); }
.back-btn:hover {
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(212,175,55,.25);
}
.back-btn:hover svg { transform: translateX(-3px); }
body[dir="rtl"] .back-btn:hover svg { transform: scaleX(-1) translateX(-3px); }
.back-btn:active { transform: scale(.96); }
.back-btn.hidden { display: none; }

@media (max-width: 768px) {
  .back-btn { padding: 8px 12px; }
  .back-btn-text { display: none; }
}


/* ============ WALLET ============ */
.wallet-card {
  position: relative;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  height: 220px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
}
.wallet-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2310 50%, #b8941f 100%);
}
.wallet-card-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(212,175,55,.4) 0%, transparent 50%);
}
.wallet-card-content {
  position: relative; z-index: 1;
  height: 100%; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}
.wallet-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.wallet-chip {
  background: rgba(0,0,0,.4);
  padding: 4px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold);
}
.wallet-balance { font-family: var(--font-display); font-size: 44px; font-weight: 700; letter-spacing: 1px; }

.wallet-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }

/* ============ GRATUS COIN PACKS — LUXURY ============ */
.coin-packs-card {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.06) 0%, transparent 60%),
    var(--bg-1);
  border: 1px solid var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,.15);
}
.coin-packs-sub {
  margin-bottom: 18px !important;
  font-size: 13px !important;
}
.coin-packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.coin-pack {
  position: relative;
  padding: 22px 18px 18px;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(212,175,55,.05) 100%);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
}
.coin-pack::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(212,175,55,.08) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.coin-pack:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(212,175,55,.25);
}
.coin-pack:hover::before { opacity: 1; }
.coin-pack.popular {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(212,175,55,.10) 100%);
  box-shadow: 0 0 20px rgba(212,175,55,.2);
}
.coin-pack.best {
  border-color: var(--gold-2);
  background: linear-gradient(135deg, #1a1410 0%, rgba(244,209,96,.12) 100%);
  box-shadow: 0 0 30px rgba(244,209,96,.3), inset 0 0 30px rgba(212,175,55,.08);
  animation: bestGlow 3s ease-in-out infinite;
}
@keyframes bestGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(244,209,96,.3), inset 0 0 30px rgba(212,175,55,.08); }
  50%      { box-shadow: 0 0 50px rgba(244,209,96,.55), inset 0 0 40px rgba(212,175,55,.15); }
}
.coin-pack-tag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(212,175,55,.45);
  z-index: 2;
}
.coin-pack-tag.best-tag {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-size: 10px;
}
.coin-pack-icon {
  position: relative;
  z-index: 1;
  font-size: 36px;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(212,175,55,.5));
  margin-bottom: 8px;
  animation: float 3s ease-in-out infinite;
}
.coin-pack-value {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--gold-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.coin-pack-label {
  position: relative; z-index: 1;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 3px;
  margin-bottom: 14px;
  margin-top: 2px;
}
.coin-pack-price {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: baseline; gap: 8px;
  margin-bottom: 6px;
}
.coin-pack-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--danger);
}
.coin-pack-new {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}
.coin-pack-iqd {
  position: relative; z-index: 1;
  font-size: 13px;
  color: var(--gold-2);
  font-family: monospace;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.coin-pack-save {
  position: relative; z-index: 1;
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  background: rgba(39,174,96,.12);
  border: 1px solid rgba(39,174,96,.4);
  border-radius: 100px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: .5px;
  white-space: nowrap;
  width: auto;
}

/* ============ ADD MONEY BOX — LUXURY ============ */
.add-money-box {
  position: relative;
  margin-bottom: 24px;
  padding: 26px 28px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.18) 0%, transparent 60%),
    radial-gradient(circle at bottom left, rgba(244,209,96,.08) 0%, transparent 50%),
    linear-gradient(135deg, #181410 0%, #221710 50%, #2a2010 100%);
  border: 1.5px solid var(--gold);
  border-radius: 22px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.20),
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 40px rgba(212,175,55,.30),
    0 0 90px rgba(212,175,55,.15),
    0 18px 40px -10px rgba(0,0,0,.7);
  animation: addMoneyAura 3.5s ease-in-out infinite;
}
@keyframes addMoneyAura {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.20),
      inset 0 1px 0 rgba(255,255,255,.04),
      0 0 40px rgba(212,175,55,.30),
      0 0 90px rgba(212,175,55,.15),
      0 18px 40px -10px rgba(0,0,0,.7);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.32),
      inset 0 1px 0 rgba(255,255,255,.08),
      0 0 65px rgba(212,175,55,.5),
      0 0 130px rgba(212,175,55,.3),
      0 18px 40px -10px rgba(0,0,0,.7);
  }
}
.add-money-box::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: conic-gradient(from 0deg, transparent, var(--gold-2), transparent 40%, var(--gold), transparent 70%, var(--gold-2), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 8s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
  padding: 2px;
}
@keyframes borderSpin {
  to { transform: rotate(360deg); }
}
.add-money-box::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244,209,96,.18), transparent);
  transition: left .8s;
}
.add-money-box:hover::before { left: 100%; }
.add-money-box:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--gold-2);
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.25),
    0 0 50px rgba(212,175,55,.45),
    0 18px 40px -10px rgba(0,0,0,.7);
}
.add-money-glow {
  position: absolute;
  top: 50%; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,.18) 0%, transparent 70%);
  transform: translateY(-50%);
  filter: blur(20px);
  animation: addMoneyPulse 3s ease-in-out infinite;
}
body[dir="rtl"] .add-money-glow { right: auto; left: -50px; }
@keyframes addMoneyPulse {
  0%, 100% { opacity: .6; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1; transform: translateY(-50%) scale(1.15); }
}
.add-money-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.add-money-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-radius: 16px;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(212,175,55,.4);
  animation: float 3s ease-in-out infinite;
}
.add-money-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  background: linear-gradient(120deg, #fff 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  letter-spacing: .5px;
}
.add-money-text p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.add-money-max {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-2);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 100px;
  padding: 3px 12px;
  letter-spacing: 1px;
}
.add-money-arrow {
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s;
}
body[dir="rtl"] .add-money-arrow { transform: scaleX(-1); }
.add-money-box:hover .add-money-arrow {
  transform: translateX(6px);
}
body[dir="rtl"] .add-money-box:hover .add-money-arrow {
  transform: scaleX(-1) translateX(6px);
}

/* ============ FUNDS / TOP-UP MODAL — LUXURY ============ */
.funds-luxe-box {
  width: min(440px, 92%) !important;
  text-align: center;
  padding: 38px 30px !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.10) 0%, transparent 60%),
    var(--bg-1) !important;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.18),
    0 0 40px rgba(212,175,55,.35),
    0 0 90px rgba(212,175,55,.18),
    0 30px 70px -20px rgba(0,0,0,.85) !important;
  backdrop-filter: blur(20px);
}
.funds-icon {
  font-size: 58px;
  color: var(--gold);
  filter: drop-shadow(0 0 22px rgba(212,175,55,.55));
  animation: float 3s ease-in-out infinite;
  margin-bottom: 6px;
}
.funds-title {
  font-family: var(--font-display);
  font-size: 28px;
  background: linear-gradient(120deg, #fff 0%, var(--gold) 60%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.funds-warning {
  display: flex; align-items: flex-start; gap: 12px;
  background: linear-gradient(135deg, rgba(192,57,43,.10), rgba(212,175,55,.05));
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: start;
}
.funds-warning-icon { font-size: 24px; color: var(--gold); flex-shrink: 0; }
.funds-warning p { font-size: 13px; color: var(--text); line-height: 1.5; margin: 0; }
.funds-iqd-preview {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin: -8px 0 16px;
  letter-spacing: 1px;
}
.funds-note { font-size: 11px !important; margin-top: 14px; letter-spacing: 1px; }

/* ============ Money Request items ============ */
.request-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px; align-items: center;
  padding: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
}
.request-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(212,175,55,.1);
  border-radius: 50%;
  font-size: 20px;
}
.request-details h4 { font-size: 16px; color: var(--gold); font-family: var(--font-display); margin-bottom: 2px; }
.request-details p { font-size: 12px; color: var(--muted); }

.request-admin-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(212,175,55,.04) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  transition: all .25s;
}
.request-admin-item:hover { border-color: var(--gold); }
.request-admin-actions { display: flex; flex-direction: column; gap: 6px; }
.request-admin-actions .btn { padding: 8px 14px; font-size: 12px; white-space: nowrap; }

/* ============ LANGUAGE PICKER — First time visit ============ */
.lang-picker-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(20px);
  display: grid; place-items: center;
  padding: 20px;
  animation: langPickerFadeIn .6s cubic-bezier(.22, .61, .36, 1);
}
@keyframes langPickerFadeIn {
  from { opacity: 0; backdrop-filter: blur(0); }
  to   { opacity: 1; backdrop-filter: blur(20px); }
}
.lang-picker-overlay.fading-out {
  animation: langPickerFadeOut .5s ease forwards;
}
@keyframes langPickerFadeOut {
  to { opacity: 0; backdrop-filter: blur(0); }
}

.lang-picker-box {
  width: min(580px, 95%);
  background:
    radial-gradient(circle at top, rgba(212,175,55,.12) 0%, transparent 60%),
    radial-gradient(circle at bottom right, rgba(212,175,55,.06) 0%, transparent 50%),
    linear-gradient(180deg, #181410 0%, #0e0c08 100%);
  border: 1.5px solid var(--gold);
  border-radius: 28px;
  padding: 40px 36px;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.20),
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 50px rgba(212,175,55,.4),
    0 0 110px rgba(212,175,55,.22),
    0 30px 80px -10px rgba(0,0,0,.85);
  animation: langPickerSlideIn .7s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes langPickerSlideIn {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lang-picker-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(212,175,55,.15),
    0 12px 28px rgba(212,175,55,.4);
  animation: float 3s ease-in-out infinite;
}
.lang-picker-icon svg { width: 36px; height: 36px; }

.lang-picker-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(120deg, #fff 0%, var(--gold-2) 40%, var(--gold) 60%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
  letter-spacing: 1px;
}
.lang-picker-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.lang-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.lang-card {
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(212,175,55,.03) 100%);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 22px 14px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  font-family: inherit;
  color: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lang-card::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.15), transparent);
  transition: left .6s;
}
.lang-card:hover::before { left: 100%; }
.lang-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(212,175,55,.08) 100%);
}
.lang-card.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,.18) 0%, rgba(212,175,55,.06) 100%);
  box-shadow:
    0 0 0 3px rgba(212,175,55,.25),
    0 8px 24px rgba(212,175,55,.35);
  transform: translateY(-4px) scale(1.03);
}

.lang-flag {
  width: 64px; height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 4px rgba(212,175,55,.15),
    0 6px 18px rgba(0,0,0,.5);
  transition: all .35s;
}
.lang-card.selected .lang-flag {
  box-shadow:
    0 0 0 4px rgba(212,175,55,.4),
    0 8px 24px rgba(212,175,55,.5);
  transform: scale(1.08);
}
.lang-flag svg { width: 100%; height: 100%; display: block; }

.lang-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.lang-sub-name {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lang-continue-btn {
  width: 100%;
  padding: 18px;
  background: var(--bg-3);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  cursor: not-allowed;
  transition: all .3s;
  text-transform: uppercase;
}
.lang-continue-btn:not(:disabled) {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border-color: var(--gold);
  color: #0a0a0a;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212,175,55,.4);
}
.lang-continue-btn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212,175,55,.55);
}

@media (max-width: 480px) {
  /* Mobile lang picker — 3 columns, centered, vertical layout per card */
}

/* ============ LANGUAGE PICKER MODAL ============ */
.lang-picker-modal {
  position: fixed; inset: 0; z-index: 1500;
  display: grid; place-items: center;
  padding: 20px;
  animation: langPickerFadeIn .6s cubic-bezier(.22, .61, .36, 1);
}
@keyframes langPickerFadeIn {
  from { opacity: 0; backdrop-filter: blur(0); }
  to   { opacity: 1; backdrop-filter: blur(14px); }
}
/* Fade-out: smooth blur + scale */
.lang-picker-modal.fade-out {
  animation: langPickerFadeOut .7s cubic-bezier(.22, .61, .36, 1) forwards;
  pointer-events: none;
}
@keyframes langPickerFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(10px);
  }
}
.lang-picker-modal.fade-out .lang-picker-backdrop {
  animation: backdropFadeOut .7s ease forwards;
}
@keyframes backdropFadeOut {
  to { backdrop-filter: blur(0); background: rgba(0,0,0,0); }
}
.lang-picker-modal.fade-out .lang-picker-box {
  animation: boxFadeOut .7s cubic-bezier(.22, .61, .36, 1) forwards;
}
@keyframes boxFadeOut {
  to {
    opacity: 0;
    transform: scale(.85) translateY(-30px);
    filter: blur(8px);
  }
}
.lang-picker-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(14px);
}
.lang-picker-box {
  position: relative; z-index: 2;
  width: min(560px, 94%);
  padding: 50px 40px 36px;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,175,55,.08) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(244,209,96,.05) 0%, transparent 40%),
    linear-gradient(180deg, #1a1410 0%, #0e0c08 100%);
  border: 1.5px solid var(--gold);
  border-radius: 28px;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.25),
    inset 0 2px 0 rgba(255,255,255,.04),
    0 0 60px rgba(212,175,55,.35),
    0 0 120px rgba(212,175,55,.18),
    0 0 200px rgba(212,175,55,.08),
    0 40px 80px -20px rgba(0,0,0,.9);
  animation: langPickerScale .7s cubic-bezier(.22, .61, .36, 1),
             langBoxPulse 4s ease-in-out 1s infinite;
}
@keyframes langBoxPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.25),
      inset 0 2px 0 rgba(255,255,255,.04),
      0 0 60px rgba(212,175,55,.35),
      0 0 120px rgba(212,175,55,.18),
      0 0 200px rgba(212,175,55,.08),
      0 40px 80px -20px rgba(0,0,0,.9);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.4),
      inset 0 2px 0 rgba(255,255,255,.08),
      0 0 90px rgba(212,175,55,.55),
      0 0 160px rgba(212,175,55,.3),
      0 0 240px rgba(212,175,55,.15),
      0 40px 80px -20px rgba(0,0,0,.9);
  }
}

/* Spinning gold border around modal */
.lang-picker-box::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 31px;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--gold-2) 20%,
    var(--gold) 40%,
    transparent 50%,
    var(--gold) 60%,
    var(--gold-2) 80%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: langRingSpin 12s linear infinite;
  pointer-events: none;
  opacity: .6;
  z-index: -1;
}
@keyframes langRingSpin { to { transform: rotate(360deg); } }

/* Gold ribbon at top */
.lang-ribbon {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2), var(--gold));
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 5px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow:
    0 6px 20px rgba(212,175,55,.55),
    inset 0 1px 0 rgba(255,255,255,.4);
  z-index: 3;
}

/* Floating gold particles */
.lang-particles {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.lang-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: radial-gradient(circle, var(--gold-2), transparent);
  border-radius: 50%;
  filter: blur(.5px);
  opacity: 0;
  animation: particleFloat 8s linear infinite;
}
.lang-particles span:nth-child(1) { left: 8%;  top: 80%; animation-delay: 0s;   width: 5px; height: 5px; }
.lang-particles span:nth-child(2) { left: 18%; top: 90%; animation-delay: 1.2s; }
.lang-particles span:nth-child(3) { left: 30%; top: 95%; animation-delay: 2.4s; width: 6px; height: 6px; }
.lang-particles span:nth-child(4) { left: 45%; top: 85%; animation-delay: 3.6s; }
.lang-particles span:nth-child(5) { left: 58%; top: 92%; animation-delay: 4.8s; width: 5px; height: 5px; }
.lang-particles span:nth-child(6) { left: 70%; top: 88%; animation-delay: 0.6s; }
.lang-particles span:nth-child(7) { left: 82%; top: 95%; animation-delay: 1.8s; width: 6px; height: 6px; }
.lang-particles span:nth-child(8) { left: 92%; top: 82%; animation-delay: 3s;   }
.lang-particles span:nth-child(9) { left: 12%; top: 88%; animation-delay: 4.2s; width: 5px; height: 5px; }
.lang-particles span:nth-child(10){ left: 65%; top: 78%; animation-delay: 5.4s; }
@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(.6); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-400px) scale(1.2); }
}

/* Icon — glowing orb */
.lang-picker-icon-wrap {
  position: relative;
  width: 90px; height: 90px;
  margin: 0 auto 22px;
}
.lang-picker-icon-glow {
  position: absolute; inset: -15px;
  background: radial-gradient(circle, rgba(212,175,55,.45) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(8px);
  animation: iconGlow 3s ease-in-out infinite;
}
@keyframes iconGlow {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.2); }
}
@keyframes langPickerScale {
  from { opacity: 0; transform: scale(.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lang-picker-icon {
  width: 90px; height: 90px;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.2) 0%, transparent 50%),
    radial-gradient(circle, rgba(212,175,55,.5) 0%, rgba(184,148,31,.4) 50%, rgba(20,15,5,.6) 100%);
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  font-size: 50px;
  color: var(--gold-2);
  text-shadow: 0 0 20px var(--gold), 0 2px 8px rgba(0,0,0,.8);
  filter: drop-shadow(0 0 30px rgba(212,175,55,.7));
  animation: crownFloat 3s ease-in-out infinite;
  box-shadow:
    inset 0 0 25px rgba(212,175,55,.3),
    inset 0 2px 0 rgba(255,255,255,.15),
    0 8px 30px rgba(0,0,0,.6),
    0 0 40px rgba(212,175,55,.4);
}
@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  33%      { transform: translateY(-5px) rotate(-3deg); }
  66%      { transform: translateY(-2px) rotate(3deg); }
}

/* Orbit dots around crown */
.lang-picker-icon-orbit {
  position: absolute; inset: -8px;
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
  z-index: 1;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold), 0 0 18px var(--gold-glow);
  top: 50%; left: 50%;
}
.orbit-dot:nth-child(1) { transform: translate(-50%, -50%) translateX(53px); }
.orbit-dot:nth-child(2) { transform: translate(-50%, -50%) rotate(120deg) translateX(53px); animation: orbitPulse 2s ease-in-out infinite .5s; }
.orbit-dot:nth-child(3) { transform: translate(-50%, -50%) rotate(240deg) translateX(53px); animation: orbitPulse 2s ease-in-out infinite 1s; }
@keyframes orbitPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

.lang-picker-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(120deg, #fff 0%, var(--gold-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.lang-picker-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.lang-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.lang-card {
  padding: 22px 14px 18px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}
.lang-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(212,175,55,.10) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.lang-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(212,175,55,.2);
}
.lang-card:hover::before { opacity: 1; }
.lang-card.selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,.12) 0%, rgba(212,175,55,.04) 100%);
  box-shadow: 0 0 0 3px rgba(212,175,55,.25), 0 10px 30px rgba(212,175,55,.3);
  transform: translateY(-4px) scale(1.02);
}
.lang-card.selected::before { opacity: 1; }

.lang-flag {
  width: 80px; height: 80px;
  margin: 0 auto 12px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15),
    0 8px 20px rgba(0,0,0,.5),
    inset 0 0 0 2px rgba(0,0,0,.3);
  filter: drop-shadow(0 4px 10px rgba(212,175,55,.3));
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  background: var(--bg-2);
}
.lang-flag svg { display: block; width: 100%; height: 100%; }
.lang-card:hover .lang-flag {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--gold-2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.25),
    0 12px 30px rgba(212,175,55,.4),
    inset 0 0 0 2px rgba(0,0,0,.3);
}
.lang-card.selected .lang-flag {
  transform: scale(1.15);
  border-color: var(--gold-2);
  box-shadow:
    0 0 0 4px rgba(212,175,55,.4),
    0 0 30px rgba(212,175,55,.6),
    0 14px 36px rgba(0,0,0,.6),
    inset 0 0 0 2px rgba(0,0,0,.3);
}

.lang-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: .5px;
}
.lang-card.selected .lang-name { color: var(--gold); }
.lang-native {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lang-picker-continue {
  position: relative;
  width: 100%;
  padding: 18px;
  background: var(--bg-3);
  border: 1.5px solid var(--line);
  color: var(--muted);
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 6px;
  cursor: not-allowed;
  transition: all .3s;
  text-transform: uppercase;
  overflow: hidden;
}
.lang-picker-continue:not(:disabled) {
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  background-size: 200% 200%;
  color: #0a0a0a;
  border-color: var(--gold);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 8px 24px rgba(212,175,55,.5),
    0 0 40px rgba(212,175,55,.3);
  animation: btnGradientShift 4s linear infinite;
}
@keyframes btnGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Shimmer effect on the button */
.lang-picker-continue:not(:disabled)::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: btnShimmer 2.8s linear infinite;
}
@keyframes btnShimmer {
  to { left: 200%; }
}
.lang-picker-continue:not(:disabled):hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 14px 36px rgba(212,175,55,.65),
    0 0 60px rgba(212,175,55,.45);
}
.lang-picker-continue:not(:disabled):active {
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .lang-picker-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .lang-card {
    display: block !important;
    text-align: center !important;
    padding: 16px 8px !important;
  }
  body[dir="rtl"] .lang-card { text-align: center !important; }
  .lang-flag {
    width: 56px !important;
    height: 56px !important;
    margin: 0 auto 10px !important;
  }
  .lang-flag svg { width: 100% !important; height: 100% !important; }
  .lang-name {
    font-size: 14px !important;
    margin-bottom: 2px !important;
  }
  .lang-native {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
  }
  .lang-picker-title { font-size: 28px; }
  .lang-picker-box { padding: 40px 18px 24px !important; }
}

/* ============ OTP / PHONE VERIFICATION ============ */
#otpStep { text-align: center; padding: 8px 4px; }
.otp-header { margin-bottom: 22px; }
.otp-whatsapp-icon, .otp-email-icon {
  font-size: 56px;
  filter: drop-shadow(0 0 18px rgba(234, 67, 53, .5));
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
}
.otp-title {
  font-family: var(--font-display);
  font-size: 26px;
  background: linear-gradient(120deg, #fff 0%, var(--gold) 60%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.otp-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.otp-sub strong {
  color: var(--gold);
  font-family: monospace;
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
}

.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 20px 0 12px;
}
.otp-digit {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: all .25s;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.06);
}
.otp-digit:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15), inset 0 0 12px rgba(212,175,55,.1);
  transform: scale(1.05);
}
.otp-digit:not(:placeholder-shown), .otp-digit[value]:not([value=""]) {
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.02));
  border-color: var(--gold);
}

.otp-error {
  color: var(--danger);
  background: rgba(192,57,43,.10);
  border: 1px solid var(--danger);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin: 10px 0;
}

.otp-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 14px 0;
}
.otp-link {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 12px;
  cursor: pointer;
  padding: 6px 10px;
  letter-spacing: 1px;
  transition: color .2s;
}
.otp-link:hover { color: var(--gold-2); text-decoration: underline; }

.otp-whatsapp-note {
  font-size: 11px;
  color: var(--muted);
  margin: 18px 0 10px;
  letter-spacing: 1px;
}
.otp-whatsapp-btn, .otp-email-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(234, 67, 53, .4);
  transition: all .25s;
}
.otp-whatsapp-btn:hover, .otp-email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234, 67, 53, .55);
}
.wa-icon { font-size: 20px; }

/* ============ LUXURY CHAT BOX ============ */
.luxury-chat-box {
  position: relative;
  margin-bottom: 24px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #15110c 0%, #0e0c08 100%);
  border: 1px solid var(--gold);
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    0 0 35px rgba(212,175,55,.22),
    0 20px 50px -15px rgba(0,0,0,.7);
  animation: chatBoxIn .5s cubic-bezier(.22, .61, .36, 1);
}
@keyframes chatBoxIn {
  from { opacity: 0; transform: scale(.97) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Chat header */
.luxury-chat-header {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background:
    linear-gradient(135deg, rgba(212,175,55,.12) 0%, rgba(212,175,55,.03) 100%),
    rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(212,175,55,.2);
  position: relative;
}
.luxury-chat-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .4;
}
.luxury-chat-avatar {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,175,55,.4);
  flex-shrink: 0;
}
.luxury-chat-avatar.admin-avatar {
  background: linear-gradient(135deg, #2a2010 0%, var(--gold) 100%);
  color: var(--gold-2);
  border: 2px solid var(--gold);
}
.luxury-chat-info { flex: 1; min-width: 0; }
.luxury-chat-name {
  font-family: var(--font-display);
  font-size: 18px;
  background: linear-gradient(120deg, #fff 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  letter-spacing: .5px;
}
.luxury-chat-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}
.luxury-chat-status.ended .status-dot {
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
  animation: none;
}

.luxury-chat-end-btn {
  background: linear-gradient(135deg, rgba(192,57,43,.18), rgba(192,57,43,.06));
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: all .25s;
  text-transform: uppercase;
}
.luxury-chat-end-btn:hover {
  background: var(--danger);
  color: #fff;
  box-shadow: 0 6px 18px rgba(192,57,43,.5);
}
.luxury-chat-close-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 50%;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
}
.luxury-chat-close-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* Chat messages area */
.luxury-chat-messages {
  height: 360px;
  overflow-y: auto;
  padding: 20px;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.05) 0%, transparent 50%),
    rgba(0,0,0,.3);
}
.chat-msg {
  display: flex; flex-direction: column;
  margin-bottom: 14px;
  max-width: 75%;
  animation: msgFadeIn .35s cubic-bezier(.22, .61, .36, 1);
}
@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-msg.from-user { align-items: flex-end; margin-left: auto; }
.chat-msg.from-admin { align-items: flex-start; margin-right: auto; }
body[dir="rtl"] .chat-msg.from-user { align-items: flex-end; margin-left: 0; margin-right: auto; }
body[dir="rtl"] .chat-msg.from-admin { align-items: flex-start; margin-right: 0; margin-left: auto; }
.chat-msg-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.chat-msg.from-user .chat-msg-bubble {
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-bottom-right-radius: 4px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(212,175,55,.35);
}
body[dir="rtl"] .chat-msg.from-user .chat-msg-bubble {
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 4px;
}
.chat-msg.from-admin .chat-msg-bubble {
  background: linear-gradient(135deg, #2a2412 0%, #1a1612 100%);
  color: var(--text);
  border: 1px solid rgba(212,175,55,.25);
  border-bottom-left-radius: 4px;
}
body[dir="rtl"] .chat-msg.from-admin .chat-msg-bubble {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 4px;
}
.chat-msg-meta {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
  letter-spacing: 1px;
  padding: 0 6px;
}

/* Chat input */
.luxury-chat-input-row {
  display: flex; gap: 10px;
  padding: 14px 16px;
  background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(212,175,55,.2);
  align-items: center;
}
.luxury-chat-input-row input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--line);
  outline: none;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 100px;
  transition: all .25s;
}
.luxury-chat-input-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.luxury-chat-send {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .25s;
  box-shadow: 0 6px 18px rgba(212,175,55,.4);
}
.luxury-chat-send:hover {
  transform: scale(1.08) rotate(-8deg);
  box-shadow: 0 10px 25px rgba(212,175,55,.55);
}
.luxury-chat-send svg { display: block; }

/* Ended notice — shown to user when admin ends */
.chat-ended-notice {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(192,57,43,.15), rgba(192,57,43,.03));
  border-top: 1px solid var(--danger);
  border-bottom: 1px solid var(--danger);
  animation: endedFadeIn .5s ease;
}
@keyframes endedFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-ended-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--danger);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192,57,43,.5);
}
.chat-ended-notice strong {
  color: var(--danger);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.chat-ended-notice p {
  color: var(--text);
  font-size: 13px;
  margin: 0;
}

/* When ended, hide input and dim chat */
.luxury-chat-box.ended .luxury-chat-input-row { display: none; }
.luxury-chat-box.ended .luxury-chat-messages { opacity: .85; }

/* Old chat-list compat — keep for any leftover usages */
.chat-list { height: 280px; overflow-y: auto; padding: 14px; }
.chat-input-row { display: flex; gap: 8px; padding: 14px; }
.chat-input-row input { flex: 1; }

/* ============ Returning user badge + Resume button ============ */
.returning-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--danger), #e74c3c);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 100px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(192, 57, 43, .45);
  animation: returningPulse 2s ease-in-out infinite;
}
@keyframes returningPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(192, 57, 43, .45); }
  50%      { transform: scale(1.05); box-shadow: 0 6px 18px rgba(192, 57, 43, .7); }
}

.request-admin-item.returning {
  border-color: var(--danger);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(192,57,43,.06) 100%);
  box-shadow: 0 0 20px rgba(192,57,43,.15);
}
.request-admin-item.returning:hover {
  border-color: var(--danger);
  box-shadow: 0 0 30px rgba(192,57,43,.3);
}

.btn-resume {
  background: linear-gradient(135deg, var(--danger), #e74c3c) !important;
  color: #fff !important;
  border: 1px solid var(--danger) !important;
  box-shadow: 0 4px 14px rgba(192, 57, 43, .4) !important;
  font-weight: 700 !important;
  animation: btnResumeGlow 2s ease-in-out infinite;
}
@keyframes btnResumeGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(192, 57, 43, .4); }
  50%      { box-shadow: 0 6px 22px rgba(192, 57, 43, .7); }
}
.btn-resume:hover {
  background: linear-gradient(135deg, #e74c3c, var(--danger)) !important;
  transform: translateY(-2px);
}

/* ============ System messages in chat ============ */
.chat-system-msg {
  text-align: center;
  margin: 14px auto;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  display: inline-block;
  max-width: 90%;
  position: relative;
  animation: systemMsgIn .4s cubic-bezier(.22, .61, .36, 1);
}
@keyframes systemMsgIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
.chat-system-msg.ended {
  color: var(--danger);
  background: rgba(192, 57, 43, .14);
  border: 1px solid var(--danger);
  display: block;
}
.chat-system-msg.resumed {
  color: var(--success);
  background: rgba(39, 174, 96, .14);
  border: 1px solid var(--success);
  display: block;
}
.chat-system-msg.new-request {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.06));
  border: 1px solid var(--gold);
  display: block;
  box-shadow: 0 4px 16px rgba(212, 175, 55, .25);
}

/* ============ PROOF UPLOAD MODAL ============ */
.proof-box {
  width: min(540px, 94%) !important;
  padding: 30px 28px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.06) 0%, transparent 60%),
    var(--bg-1) !important;
}
.proof-steps {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.proof-steps::before {
  content: '';
  position: absolute;
  top: 14px; left: 14%; right: 14%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.proof-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative; z-index: 1;
  background: var(--bg-1); padding: 0 8px;
}
.proof-step-num {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--bg-3); color: var(--muted);
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  transition: all .3s;
}
.proof-step.active .proof-step-num {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  box-shadow: 0 0 12px rgba(212,175,55,.5);
}
.proof-step.completed .proof-step-num { background: var(--success); color: #fff; }
.proof-step-label {
  font-size: 10px; color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.proof-step.active .proof-step-label { color: var(--gold); }

.proof-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(120deg, #fff 0%, var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.proof-sub { color: var(--muted); font-size: 12px; text-align: center; margin-bottom: 20px; }

.proof-block { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.proof-block-num {
  width: 32px; height: 32px;
  background: var(--danger);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.proof-block-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
}

.proof-info-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.proof-info-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.proof-info-amount {
  display: flex; align-items: baseline; gap: 6px;
}
.proof-info-amount span:first-child {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.proof-currency {
  color: var(--danger);
  font-weight: 700;
  font-size: 14px;
}
.proof-info-number {
  display: flex; align-items: center; justify-content: space-between;
  font-family: monospace;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}
.proof-copy-btn {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
}
.proof-copy-btn:hover { background: var(--gold); color: #0a0a0a; }

/* ============ FIB BRAND ============ */
.fib-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
.fib-circle {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(16, 185, 129, .4);
}

/* ============ QR CODE — LUXURY FIB CARD ============ */
.proof-qr-area { text-align: center; }
.proof-qr-card {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
  padding: 18px;
  border-radius: 22px;
  margin-bottom: 16px;
  box-shadow:
    0 0 0 3px rgba(16, 185, 129, .15),
    0 0 30px rgba(16, 185, 129, .25),
    0 20px 50px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
  animation: qrFadeIn .6s cubic-bezier(.22, .61, .36, 1);
}
.proof-qr-card::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, .2), transparent);
  animation: qrShine 3s ease infinite;
}
@keyframes qrShine {
  to { left: 200%; }
}
@keyframes qrFadeIn {
  from { opacity: 0; transform: scale(.85) rotateY(20deg); }
  to   { opacity: 1; transform: scale(1) rotateY(0); }
}
.fib-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(16, 185, 129, .3);
}
.fib-logo-big {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .4);
}
.fib-text { text-align: start; }
.fib-title {
  font-size: 22px;
  font-weight: 800;
  color: #047857;
  line-height: 1;
  letter-spacing: 1px;
}
.fib-subtitle {
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 1px;
  margin-top: 2px;
}
.proof-qr-image { display: block; position: relative; }
.proof-qr-name {
  color: #047857;
  font-size: 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(16, 185, 129, .3);
  font-weight: 600;
  letter-spacing: 1px;
}
.proof-scan-btn {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 6px 18px rgba(16, 185, 129, .4);
  transition: all .25s;
}
.proof-scan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, .55);
}

.proof-upload-area {
  display: block;
  background: var(--bg-2);
  border: 2px dashed rgba(212,175,55,.3);
  border-radius: 14px;
  padding: 38px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
}
.proof-upload-area:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.05);
}
.proof-upload-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}
.proof-upload-text {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
}
.proof-upload-formats {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
}
.proof-uploaded-name {
  margin-top: 14px;
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
}
.proof-user-info {
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 8px;
  padding: 8px;
}
.coin-pack-btn {
  position: relative; z-index: 1;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .25s;
  text-transform: uppercase;
}
.coin-pack:hover .coin-pack-btn {
  box-shadow: 0 6px 18px rgba(212,175,55,.45);
}

@media (max-width: 768px) {
  .coin-packs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .coin-packs-grid { grid-template-columns: 1fr; }
}

.transactions { display: grid; gap: 10px; }
.transaction {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px;
  background: var(--bg-2);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.transaction-info h4 { font-size: 14px; margin-bottom: 2px; }
.transaction-info p { font-size: 12px; color: var(--muted); }
.transaction-amount { font-weight: 700; }
.transaction-amount.in { color: var(--success); }
.transaction-amount.out { color: var(--danger); }

/* ============================================
   ✦ LOCATIONS — Luxury Hotel Cards + Waze CTA ✦
   ============================================ */
.locations-list { display: grid; gap: 24px; }

.luxury-loc-card {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 22px;
  overflow: hidden;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  box-shadow:
    0 18px 50px -22px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(212,175,55,.10);
  position: relative;
}
.luxury-loc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  opacity: .6;
}
.luxury-loc-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px -22px rgba(0,0,0,.9),
    0 0 50px rgba(212,175,55,.20),
    inset 0 1px 0 rgba(212,175,55,.18);
}

.luxury-loc-card .location-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) brightness(.95);
}
.luxury-loc-card .location-img::after { content: none; }
.loc-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.90) 100%),
    linear-gradient(90deg, rgba(0,0,0,.30) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.30) 100%);
}
.loc-name-block {
  position: absolute;
  bottom: 14px; left: 22px; right: 22px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  z-index: 2;
}
.loc-name-block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  letter-spacing: .5px;
  text-shadow: 0 2px 16px rgba(0,0,0,.7);
  margin: 0;
  background: linear-gradient(120deg, #fff 30%, var(--gold-2) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loc-rating {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(212,175,55,.45);
}

.luxury-loc-card .location-details {
  padding: 22px 24px 8px;
}
.loc-addr-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(212,175,55,.20);
  margin-bottom: 14px;
}
.loc-pin { font-size: 22px; line-height: 1; padding-top: 2px; }
.loc-addr {
  color: var(--text); font-size: 14px; line-height: 1.55; margin-bottom: 2px;
}
.loc-city {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}

.loc-phones {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 4px;
}
.loc-phone {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.03));
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 100px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  direction: ltr;
  transition: all .25s;
}
.loc-phone:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212,175,55,.40);
}

.luxury-loc-card .location-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px 22px 22px;
}

/* ✦ WAZE BUTTON — bold luxury CTA ✦ */
.btn-waze {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #33ccff 0%, #1ea7e3 60%, #0a7fbf 100%);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 14px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255,255,255,.15);
  box-shadow:
    0 8px 22px rgba(30,167,227,.45),
    inset 0 1px 0 rgba(255,255,255,.30);
  transition: all .3s;
}
.btn-waze:active { transform: translateY(-1px) scale(.99); }
.btn-waze::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transition: left .7s;
  pointer-events: none;
}
.btn-waze span,
.btn-waze svg { pointer-events: none; }
.btn-waze:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 32px rgba(30,167,227,.55),
    0 0 35px rgba(51,204,255,.30),
    inset 0 1px 0 rgba(255,255,255,.40);
}
.btn-waze:hover::before { left: 100%; }
.waze-icon {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.btn-loc-call {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.05));
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  -webkit-tap-highlight-color: rgba(212,175,55,.20);
  transition: all .25s;
}
.btn-loc-call:active { transform: translateY(0) scale(.99); }
.btn-loc-call:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212,175,55,.45);
}

@media (max-width: 600px) {
  .luxury-loc-card .location-img { height: 180px; }
  .loc-name-block h3 { font-size: 22px; }
  .luxury-loc-card .location-actions { grid-template-columns: 1fr; }
  .btn-waze, .btn-loc-call { padding: 13px 18px; font-size: 14px; }
}

/* ============ CLUB ============ */
@keyframes ageFadeOut {
  from { opacity: 1; transform: scale(1); filter: blur(0); }
  to   { opacity: 0; transform: scale(.94) translateY(10px); filter: blur(10px); }
}
@keyframes ageFadeIn {
  from { opacity: 0; transform: scale(.94) translateY(10px); filter: blur(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.age-fading-out { animation: ageFadeOut .45s ease forwards; pointer-events: none; }
.age-fading-in  { animation: ageFadeIn .7s ease; }

/* ============ LUXURY ADMIN ============ */
.admin-luxe-box {
  position: relative;
  max-width: 540px; margin: 0 auto;
  padding: 50px 40px; text-align: center;
  background: radial-gradient(circle at top, rgba(212,175,55,.08) 0%, transparent 70%), var(--bg-1);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(212,175,55,.1), 0 30px 60px -20px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.admin-luxe-box::before, .admin-luxe-box::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.admin-luxe-box::before { top: 0; }
.admin-luxe-box::after { bottom: 0; }
.admin-crown {
  font-size: 64px;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(212,175,55,.5));
  margin-bottom: 8px;
  animation: float 3s ease-in-out infinite;
}
.admin-eyebrow {
  display: inline-block;
  font-size: 11px; color: var(--gold);
  letter-spacing: 5px; text-transform: uppercase;
  margin-bottom: 14px; padding: 6px 18px;
  border: 1px solid var(--gold); border-radius: 100px;
  background: rgba(212,175,55,.06);
}
.admin-luxe-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  background: linear-gradient(120deg, #ffffff 0%, var(--gold) 60%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  animation: shineText 5s linear infinite;
}
.admin-luxe-sub {
  font-size: 15px; margin-bottom: 30px !important;
  max-width: 380px; margin-left: auto !important; margin-right: auto !important;
}
.admin-prompt-actions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; max-width: 380px; margin: 0 auto;
}
.admin-secure-note {
  margin-top: 18px; font-size: 11px;
  color: var(--muted); letter-spacing: 2px; text-transform: uppercase;
}

/* Admin Dashboard Header — ULTRA LUXE */
.admin-dash-header {
  position: relative;
  margin-bottom: 30px;
  padding: 60px 40px;
  border-radius: 24px;
  overflow: hidden; text-align: center;
  border: 1.5px solid var(--gold);
  box-shadow:
    0 0 50px rgba(212,175,55,.20),
    0 0 120px rgba(212,175,55,.10),
    0 30px 70px -20px rgba(0,0,0,.85),
    inset 0 0 0 1px rgba(212,175,55,.15);
}
.admin-dash-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
  z-index: 2;
}
.admin-dash-header::after {
  content: '♛';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212,175,55,.65);
  animation: ribbonSparkle 3s ease-in-out infinite;
  z-index: 2;
}
.admin-dash-header-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,175,55,.30) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(244,209,96,.22) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(184,148,31,.10) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #08070a 50%, #1a1610 100%);
}
.admin-dash-header-content { position: relative; z-index: 1; padding-top: 16px; }
.admin-eyebrow {
  text-shadow: 0 0 14px rgba(212,175,55,.50);
  background: rgba(0,0,0,.35);
}
.admin-dash-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 700;
  background: linear-gradient(120deg,
    #ffffff 0%,
    var(--gold-2) 40%,
    #ffffff 50%,
    var(--gold) 60%,
    var(--gold-3) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(212,175,55,.30);
  margin: 12px 0;
  animation: shineText 6s linear infinite;
  letter-spacing: 1px;
}
.admin-dash-sub {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .85;
}

/* Stats Cards */
.admin-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 28px;
}
.stat-card {
  position: relative; padding: 28px 20px;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%);
  border: 1.5px solid rgba(212,175,55,.25);
  border-radius: 18px;
  text-align: center; overflow: hidden;
  transition: all .35s cubic-bezier(.22,.61,.36,1);
  box-shadow:
    0 12px 30px -12px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(212,175,55,.10);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  opacity: .7;
}
.stat-card::after {
  content: '✦';
  position: absolute;
  top: 8px; right: 12px;
  color: var(--gold);
  font-size: 11px;
  opacity: .45;
  text-shadow: 0 0 8px rgba(212,175,55,.55);
  animation: ribbonSparkle 3s ease-in-out infinite;
}
body[dir="rtl"] .stat-card::after { right: auto; left: 12px; }
.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow:
    0 22px 50px -16px rgba(0,0,0,.85),
    0 0 35px rgba(212,175,55,.25),
    inset 0 1px 0 rgba(212,175,55,.18);
}
.stat-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 14px rgba(212,175,55,.50));
  transition: transform .3s;
}
.stat-card:hover .stat-icon {
  transform: rotate(-8deg) scale(1.1);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold-2), var(--gold), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 0 0 22px rgba(212,175,55,.30);
}
.stat-label {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .8;
  font-weight: 600;
}

#adminDashboard .made-by {
  margin-top: 40px; padding: 28px;
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--radius); text-align: center;
}
#adminDashboard .made-by .made-by-text { font-size: 13px; letter-spacing: 3px; margin-bottom: 6px; }
#adminDashboard .made-by .made-by-name {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 4px; margin-bottom: 8px;
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
#adminDashboard .made-by-tag {
  font-size: 11px; color: var(--muted);
  letter-spacing: 3px; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   ✦✦✦ ULTRA LUXURY MADE-BY TEXT ✦✦✦
   Both the "Made by" caption and the signature
   name get premium serif treatment now.
   ═══════════════════════════════════════════ */

/* "Made by" caption — bigger, gold, refined */
.made-by-text {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: 3px !important;
  color: #d4af37 !important;
  margin-bottom: 12px !important;
  text-shadow:
    0 0 12px rgba(212, 175, 55, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
}

.made-by-name {
  position: relative !important;
  display: inline-block !important;
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 46px !important;
  line-height: 1.2 !important;
  letter-spacing: 3px !important;
  padding: 12px 32px !important;
  margin: 4px auto 10px !important;
  background: linear-gradient(135deg,
    #f5d068 0%,
    #d4af37 20%,
    #ffe9a3 40%,
    #fff2c0 50%,
    #ffe9a3 60%,
    #d4af37 80%,
    #a87e10 100%
  ) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: madeByGoldShift 6s ease-in-out infinite;
  filter:
    drop-shadow(0 0 12px rgba(212, 175, 55, 0.5))
    drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
  text-transform: lowercase !important;
  cursor: pointer !important;
  /* ✦ Interactive 3D tilt — driven by mouse via JS custom props ✦ */
  transform:
    perspective(700px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    scale(var(--tilt-scale, 1));
  transition: transform 0.15s ease-out, filter 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform, filter;
}

.made-by-name:hover {
  filter:
    drop-shadow(0 0 24px rgba(255, 220, 100, 0.85))
    drop-shadow(0 0 48px rgba(212, 175, 55, 0.5))
    drop-shadow(0 5px 12px rgba(0, 0, 0, 0.7));
}

/* ✦ Mouse-tracking spotlight overlay ✦ */
.name-spotlight {
  position: absolute !important;
  inset: -10% !important;
  border-radius: inherit !important;
  background: radial-gradient(
    circle 140px at var(--sx, 50%) var(--sy, 50%),
    rgba(255, 245, 200, 0.55) 0%,
    rgba(255, 220, 130, 0.25) 25%,
    rgba(212, 175, 55, 0.08) 50%,
    transparent 75%
  ) !important;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none !important;
  z-index: 1;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: initial !important;
  filter: blur(2px);
}
.name-spotlight.is-visible {
  opacity: 1;
}

/* ✦ Sparkle burst on click ✦ */
.name-spark {
  position: absolute !important;
  left: var(--sox, 50%) !important;
  top: var(--soy, 50%) !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle,
    #ffe9a3 0%,
    #d4af37 40%,
    rgba(212, 175, 55, 0) 100%
  ) !important;
  box-shadow:
    0 0 12px rgba(255, 220, 130, 0.9),
    0 0 24px rgba(212, 175, 55, 0.6);
  pointer-events: none !important;
  z-index: 10;
  animation: nameSparkFly 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: initial !important;
  filter: initial !important;
  transform-style: flat;
}

@keyframes nameSparkFly {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px)))
      scale(0.3);
  }
}

/* Slight :active elastic squish */
.made-by-name:active {
  --tilt-scale: 0.97 !important;
}

/* ═══════════════════════════════════════════
   ✦✦✦ MADE-BY CONTAINER — Interactive shine ✦✦✦
   The whole box lights up as the user's cursor
   moves across it.
   ═══════════════════════════════════════════ */
.made-by {
  position: relative !important;
  overflow: hidden;
  border-radius: 20px;
  transition: border-color 0.35s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Ambient shine — follows the cursor across the whole box */
.made-by::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 280px at var(--mbx, 50%) var(--mby, 50%),
    rgba(255, 240, 180, 0.18) 0%,
    rgba(212, 175, 55, 0.10) 25%,
    rgba(212, 175, 55, 0.04) 50%,
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.made-by:hover {
  border-color: rgba(212, 175, 55, 0.55) !important;
  box-shadow:
    0 0 40px rgba(212, 175, 55, 0.18),
    inset 0 0 30px rgba(212, 175, 55, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.4) !important;
}

.made-by:hover::before {
  opacity: 1;
}

/* Sweeping shine bar across the container on hover */
.made-by::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 240, 180, 0.15) 45%,
    rgba(255, 245, 200, 0.28) 50%,
    rgba(255, 240, 180, 0.15) 55%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.made-by:hover::after {
  animation: mbSweepShine 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
}

@keyframes mbSweepShine {
  0% {
    left: -60%;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

/* Keep the inner content above the shine overlays */
.made-by > * {
  position: relative;
  z-index: 2;
}

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

/* Radial glow behind the name */
.made-by-name::before {
  content: '';
  position: absolute;
  inset: -40% -12% -40% -12%;
  background: radial-gradient(ellipse at center,
    rgba(212, 175, 55, 0.35) 0%,
    rgba(212, 175, 55, 0.18) 25%,
    rgba(255, 220, 100, 0.08) 50%,
    transparent 70%
  );
  filter: blur(24px);
  z-index: -2;
  animation: madeByGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes madeByGlowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Sweeping shine across the letters */
.made-by-name::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  pointer-events: none;
  animation: madeByShine 4.5s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes madeByShine {
  0%, 100% { left: -100%; }
  50% { left: 140%; }
}

/* Gold ornamental lines flanking the name */
.made-by {
  position: relative;
}
.made-by-name-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Responsive scaling — still luxury on mobile */
@media (max-width: 640px) {
  .made-by-text {
    font-size: 18px !important;
    letter-spacing: 2px !important;
  }
  .made-by-name {
    font-size: 34px !important;
    letter-spacing: 2px !important;
    padding: 6px 18px !important;
  }
}

@media (max-width: 400px) {
  .made-by-text {
    font-size: 15px !important;
    letter-spacing: 1.5px !important;
  }
  .made-by-name {
    font-size: 28px !important;
    letter-spacing: 1.5px !important;
  }
}

/* ============================================
   ✦ LUXURY AGE-GATE — Clean dark background ✦
   ============================================ */
.age-gate {
  position: relative;
  display: grid; place-items: center;
  min-height: 90vh;
  padding: 40px 20px;
}

/* Luxury age-gate card */
.age-gate-box {
  position: relative;
  text-align: center;
  max-width: 480px;
  padding: 50px 36px !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.10) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #08070a 100%) !important;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.18),
    0 0 50px rgba(212,175,55,.25),
    0 0 130px rgba(212,175,55,.15),
    0 35px 80px -25px rgba(0,0,0,.9);
  overflow: hidden;
  animation: ageCardEntry 1s cubic-bezier(.22,.61,.36,1);
}
@keyframes ageCardEntry {
  from { opacity: 0; transform: translateY(30px) scale(.92); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* Shimmer line on top of card */
.age-gate-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}

/* Rotating gold conic glow inside card */
.age-gate-box::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(212,175,55,.06) 80deg,
    transparent 160deg,
    rgba(244,209,96,.05) 240deg,
    transparent 320deg
  );
  animation: goldBorderSpin 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.age-gate-box > * { position: relative; z-index: 1; }

/* Glowing moon/crown icon */
.age-gate-icon {
  display: inline-block;
  font-size: 80px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(212,175,55,.65)) drop-shadow(0 0 60px rgba(212,175,55,.35));
  animation: ageIconFloat 3.5s ease-in-out infinite;
}
@keyframes ageIconFloat {
  0%, 100% { transform: translateY(-4px) rotate(-3deg); }
  50%      { transform: translateY(4px) rotate(3deg); }
}

.age-gate-box h2 {
  font-family: var(--font-display);
  font-size: 34px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  background: linear-gradient(120deg, #fff 25%, var(--gold-2) 60%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212,175,55,.25);
}
.age-gate-box p {
  color: var(--muted);
  margin-bottom: 26px;
  line-height: 1.65;
  font-size: 14px;
  letter-spacing: .5px;
}

.age-input-area { margin-bottom: 14px; text-align: start; }
.age-input-area label {
  display: block; font-size: 11px;
  color: var(--gold); letter-spacing: 2px;
  margin-bottom: 8px; text-transform: uppercase;
}
.age-input-area input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 10px;
  outline: none;
  font: inherit;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  transition: all .25s;
}
.age-input-area input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.age-step1-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.age-step1-actions .btn {
  padding: 16px 22px;
  font-size: 15px;
  letter-spacing: 2px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.22,.61,.36,1);
}
.age-step1-actions .btn-gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  box-shadow:
    0 12px 28px rgba(212,175,55,.45),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -2px 0 rgba(0,0,0,.20);
}
.age-step1-actions .btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: left .9s;
  pointer-events: none;
}
.age-step1-actions .btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 40px rgba(212,175,55,.60),
    0 0 50px rgba(244,209,96,.30),
    inset 0 1px 0 rgba(255,255,255,.55);
}
.age-step1-actions .btn-gold:hover::before { left: 100%; }
.age-step1-actions .btn-outline {
  border: 1.5px solid rgba(212,175,55,.45);
  background: rgba(0,0,0,.30);
  color: var(--gold);
}
.age-step1-actions .btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.10);
  color: var(--gold-2);
  transform: translateY(-3px);
}

/* ============================================
   ✦ ULTRA-LUXURY EXTRAS for age-gate ✦
   ============================================ */

/* (aurora background removed — kept card luxury only) */

/* Corner ornaments (✦ in each card corner) */
.luxe-gate .age-gate-box .corner-orn {
  position: absolute;
  color: var(--gold);
  font-size: 14px;
  opacity: .55;
  text-shadow: 0 0 14px rgba(212,175,55,.55);
  z-index: 2;
  animation: ornPulse 3s ease-in-out infinite;
}
.luxe-gate .corner-orn.tl { top: 12px; left: 14px; }
.luxe-gate .corner-orn.tr { top: 12px; right: 14px; animation-delay: .75s; }
.luxe-gate .corner-orn.bl { bottom: 12px; left: 14px; animation-delay: 1.5s; }
.luxe-gate .corner-orn.br { bottom: 12px; right: 14px; animation-delay: 2.25s; }
@keyframes ornPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.25); }
}

/* Eyebrow above moon */
.luxe-gate .age-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 5px;
  padding: 6px 18px;
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 100px;
  margin-bottom: 18px;
  background: rgba(0,0,0,.40);
  text-shadow: 0 0 12px rgba(212,175,55,.50);
}

/* Moon / Crown with pulsing halo rings */
.luxe-gate .age-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
.luxe-gate .age-icon-halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,.45);
  transform: translate(-50%, -50%);
  animation: haloRing 3s ease-out infinite;
  pointer-events: none;
}
.luxe-gate .age-icon-halo-2 {
  animation-delay: 1.5s;
}
@keyframes haloRing {
  0%   { width: 100px; height: 100px; opacity: .8; border-width: 1.5px; }
  100% { width: 220px; height: 220px; opacity: 0;  border-width: 0.5px; }
}

/* Decorative divider with center ornament */
.luxe-gate .age-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 8px auto 16px;
  max-width: 220px;
  color: var(--gold);
}
.luxe-gate .age-divider::before,
.luxe-gate .age-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.luxe-gate .age-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.luxe-gate .age-divider span {
  font-size: 14px;
  text-shadow: 0 0 12px rgba(212,175,55,.55);
  animation: ribbonSparkle 3s ease-in-out infinite;
}

/* Title shimmer sweep effect */
.luxe-gate .age-gate-box h2 {
  position: relative;
  display: inline-block;
  background: linear-gradient(120deg,
    #fff 20%,
    var(--gold-2) 45%,
    #fff 50%,
    var(--gold) 60%,
    var(--gold-3) 80%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: titleShimmer 4s linear infinite;
}
@keyframes titleShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Bottom luxury badge */
.luxe-gate .age-bottom-badge {
  margin-top: 24px;
  padding: 10px 16px;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 4px;
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.02));
  border: 1px dashed rgba(212,175,55,.40);
  border-radius: 100px;
  text-shadow: 0 0 10px rgba(212,175,55,.30);
}

/* Subtle 3D hover lift on the whole card */
.luxe-gate .age-gate-box {
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s;
  transform-style: preserve-3d;
}
.luxe-gate .age-gate-box:hover {
  transform: translateY(-4px) perspective(900px) rotateX(2deg);
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.28),
    0 0 70px rgba(212,175,55,.35),
    0 0 160px rgba(212,175,55,.22),
    0 45px 90px -25px rgba(0,0,0,.95);
}

/* Reduce on small screens */
@media (max-width: 480px) {
  .luxe-gate .age-aurora { width: 800px; height: 500px; }
  .luxe-gate .age-icon-halo { width: 100px; height: 100px; }
  @keyframes haloRing {
    0%   { width: 80px; height: 80px; opacity: .8; }
    100% { width: 180px; height: 180px; opacity: 0; }
  }
  .luxe-gate .age-eyebrow { font-size: 10px; letter-spacing: 3px; padding: 5px 14px; }
  .luxe-gate .age-bottom-badge { font-size: 9px; letter-spacing: 3px; }
}
.age-actions { display: grid; gap: 10px; margin-top: 18px; }
.age-actions .btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.4);
}

/* Auto-calculated age display */
.age-display {
  display: flex; align-items: center; gap: 14px;
  margin-top: 6px; padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  animation: fadeIn .35s ease;
}
.age-display-icon {
  font-size: 28px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold-glow));
}
.age-display-text {
  display: flex; align-items: baseline; gap: 6px;
  font-size: 15px;
  color: var(--text);
}
.age-display-text strong {
  font-family: var(--font-display);
  font-size: 28px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.age-display.age-display-ok {
  border-color: var(--success);
  background: linear-gradient(135deg, rgba(39,174,96,.10), rgba(39,174,96,.02));
}
.age-display.age-display-bad {
  border-color: var(--danger);
  background: linear-gradient(135deg, rgba(192,57,43,.12), rgba(192,57,43,.02));
}
.age-display.age-display-bad .age-display-icon { color: var(--danger); filter: none; }
.age-display.age-display-bad .age-display-text strong {
  background: linear-gradient(135deg, #e57368, var(--danger));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.age-error {
  margin-top: 16px;
  padding: 12px;
  background: rgba(192, 57, 43, .12);
  border: 1px solid var(--danger);
  border-radius: 10px;
  color: var(--danger);
  font-size: 14px;
}

.club-content { padding-bottom: 40px; }
.club-hero {
  position: relative;
  min-height: 70vh;
  background: linear-gradient(135deg, #1a0011 0%, #0a0a0a 50%, #b8941f 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.club-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(192, 57, 43, .35) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(212, 175, 55, .25) 0%, transparent 60%);
}
.club-hero-2 {
  background: linear-gradient(135deg, #0a1a2e 0%, #0a0a0a 50%, #d4af37 100%);
}
.club-hero-2::before {
  background-image:
    radial-gradient(circle at 60% 50%, rgba(155, 89, 182, .3) 0%, transparent 60%),
    radial-gradient(circle at 40% 70%, rgba(212, 175, 55, .25) 0%, transparent 60%);
}
.club-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%); }
.club-hero-text { position: relative; z-index: 1; text-align: center; padding: 60px 20px; }
.club-eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 6px;
  color: var(--gold); text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 8px 22px; border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(0,0,0,.4);
}
.club-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700; line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #c0392b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 30px rgba(212, 175, 55, .4);
  margin-bottom: 20px;
}
.club-title-2 {
  background: linear-gradient(135deg, #fff 0%, #d4af37 50%, #9b59b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.club-sub { font-size: 20px; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }

/* ============ ACCOUNT (SETTINGS) ============ */
.account-card { padding: 30px; }
.account-header { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.account-avatar-wrap { position: relative; }
.account-avatar {
  width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border: 3px solid var(--gold);
}
.avatar-edit {
  position: absolute; bottom: 0; right: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold); color: #0a0a0a;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 14px;
  border: 2px solid var(--bg-1);
}
body[dir="rtl"] .avatar-edit { right: auto; left: 0; }
.account-info h2 { font-family: var(--font-display); color: var(--gold); font-size: 28px; margin-bottom: 6px; }
.account-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ SETTING ROWS ============ */
.setting-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.setting-row:last-child { border-bottom: none; }
.setting-left { display: flex; align-items: center; gap: 14px; }
.setting-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border-radius: 10px;
  font-size: 20px;
}
.setting-left h4 { font-size: 15px; margin-bottom: 2px; }

/* Switch (toggle) */
.switch { position: relative; display: inline-block; width: 50px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer;
  inset: 0;
  background: var(--bg-3);
  border-radius: 100px;
  transition: .3s;
}
.slider::before {
  content: '';
  position: absolute;
  height: 22px; width: 22px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
}
.switch input:checked + .slider { background: var(--gold); }
.switch input:checked + .slider::before { transform: translateX(22px); }
body[dir="rtl"] .switch input:checked + .slider::before { transform: translateX(-22px); }

/* ============ HISTORY ============ */
.history-list { display: grid; gap: 12px; }
.history-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
}
.history-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
}
.history-details h4 { font-size: 14px; color: var(--gold); margin-bottom: 4px; }
.history-details p { font-size: 12px; color: var(--muted); }
.history-amount { font-weight: 700; color: var(--text); }
.history-empty { text-align: center; padding: 40px 0; color: var(--muted); }

/* ============ HOTEL DETAIL ============ */
.detail-hero {
  height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.detail-hero::after {
  content: attr(data-name);
  position: absolute; inset: 0;
  display: grid; place-items: end center;
  padding: 40px;
  font-family: var(--font-display);
  font-size: 48px;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8) 100%);
  color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.gallery-grid img, .gallery-tile {
  width: 100%; height: 130px;
  background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
  background-size: cover; background-position: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: all .25s;
  cursor: pointer;
}
.gallery-tile:hover { transform: scale(1.04); border-color: var(--gold); box-shadow: 0 8px 20px rgba(212,175,55,.25); }

/* ============ LIGHTBOX (Click to enlarge) ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0, 0, 0, .94);
  backdrop-filter: blur(12px);
  display: none;
  place-items: center;
  padding: 40px;
  animation: lbFadeIn .35s ease;
}
.lightbox.open { display: grid; }
@keyframes lbFadeIn {
  from { opacity: 0; backdrop-filter: blur(0); }
  to   { opacity: 1; backdrop-filter: blur(12px); }
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  box-shadow: 0 30px 60px -10px rgba(0,0,0,.8), 0 0 60px rgba(212,175,55,.25);
  animation: lbImgIn .5s cubic-bezier(.22,.61,.36,1);
  cursor: zoom-out;
}
@keyframes lbImgIn {
  from { opacity: 0; transform: scale(.85); filter: blur(6px); }
  to   { opacity: 1; transform: scale(1); filter: blur(0); }
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  background: rgba(212, 175, 55, .15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 24px; font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  z-index: 1;
}
body[dir="rtl"] .lightbox-close { right: auto; left: 20px; }
.lightbox-close:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: rotate(90deg);
}

/* ============ AUTH MODAL — Elegant blur + fade ============ */
.auth-modal .modal-backdrop {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(14px);
  animation: backdropFadeIn .5s ease;
}
@keyframes backdropFadeIn {
  from { opacity: 0; backdrop-filter: blur(0); }
  to   { opacity: 1; backdrop-filter: blur(14px); }
}

/* Auth card — smooth fade-in, luxury gold glow */
.auth-card {
  width: min(420px, 92%);
  margin: 0 auto;
  padding: 28px 26px !important;
  opacity: 0;
  transform: translateY(10px);
  animation: authCardFadeIn .35s ease-out forwards;
  position: relative;
  z-index: 1;
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(212,175,55,.06) 0%, transparent 60%),
    var(--bg-1);
  box-shadow:
    /* Inner gold edge */
    inset 0 0 0 1px rgba(212,175,55,.15),
    /* Soft gold halo near card */
    0 0 30px rgba(212,175,55,.35),
    /* Bigger ambient gold light */
    0 0 80px rgba(212,175,55,.25),
    /* Far reach gold glow */
    0 0 140px rgba(212,175,55,.15),
    /* Dark dramatic drop shadow */
    0 30px 70px -20px rgba(0,0,0,.85);

  /* Hide scrollbar but allow scrolling if needed */
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.auth-card::-webkit-scrollbar { width: 0; display: none; } /* Chrome/Safari */

/* Pulsing gold aura — luxury breathing effect */
@keyframes goldAuraPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.15),
      0 0 30px rgba(212,175,55,.35),
      0 0 80px rgba(212,175,55,.25),
      0 0 140px rgba(212,175,55,.15),
      0 30px 70px -20px rgba(0,0,0,.85);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(212,175,55,.25),
      0 0 50px rgba(212,175,55,.55),
      0 0 110px rgba(212,175,55,.4),
      0 0 180px rgba(212,175,55,.25),
      0 30px 70px -20px rgba(0,0,0,.85);
  }
}

/* Animated gold border line — runs around the card */
.auth-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 19px;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--gold-2) 25%,
    var(--gold) 50%,
    var(--gold-2) 75%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: goldBorderSpin 16s linear infinite;
  pointer-events: none;
  z-index: -1;
  opacity: .35;
}
@keyframes goldBorderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes authCardFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.auth-eyebrow {
  text-align: center;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

/* Tighter form inside auth card */
.auth-card .form { gap: 14px; }
.auth-card .form-field input {
  padding: 12px 14px;
}
.auth-card .form-field label {
  margin-bottom: 6px;
  font-size: 11px;
}
.auth-card .tabs { margin-bottom: 18px; }
.auth-card .tab { padding: 10px 22px; font-size: 14px; }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.detail-main h1 { font-family: var(--font-display); font-size: 42px; color: var(--gold); margin-bottom: 10px; }
.detail-city { color: var(--muted); margin-bottom: 20px; }
.detail-rating { color: var(--gold); font-size: 18px; margin-bottom: 20px; }
.detail-desc { line-height: 1.7; margin-bottom: 24px; }

.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.amenity {
  padding: 14px;
  background: var(--bg-2);
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--line);
  font-size: 13px;
}
.amenity .icon { font-size: 24px; display: block; margin-bottom: 6px; color: var(--gold); }

.detail-side { position: sticky; top: 92px; align-self: start; }
.detail-price-card {
  padding: 24px;
  background: var(--bg-1);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
}
.detail-price-card .price { font-family: var(--font-display); font-size: 38px; color: var(--gold); margin-bottom: 6px; }
.detail-price-card small { color: var(--muted); display: block; margin-bottom: 18px; }

/* ============================================
   ✦ PROMO VIDEO — Luxury Hotel Reklam ✦
   ============================================ */
.promo-video-wrap {
  position: relative;
  width: 95%;
  max-width: 980px;
  margin: 26px auto 34px;
  aspect-ratio: 21/9;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  box-shadow:
    0 0 32px rgba(212,175,55,.25),
    0 0 90px rgba(212,175,55,.13),
    0 24px 56px -18px rgba(0,0,0,.85),
    inset 0 0 0 1px rgba(244,209,96,.18);
  background: #000;
  isolation: isolate;
  animation: promoEntry 1.1s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes promoEntry {
  from { opacity: 0; transform: translateY(40px) scale(.96); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* Rotating gold conic border behind video */
.promo-video-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    var(--gold-2) 20%,
    var(--gold) 40%,
    transparent 60%,
    var(--gold) 80%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  animation: goldBorderSpin 10s linear infinite;
  z-index: -1;
  opacity: .55;
  pointer-events: none;
}

.promo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Cinematic gradient overlay on video */
.promo-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 35%, transparent 65%, rgba(0,0,0,.75) 100%),
    linear-gradient(90deg, rgba(0,0,0,.30) 0%, transparent 25%, transparent 75%, rgba(0,0,0,.30) 100%);
}

/* Gold ribbon at top-left */
.promo-video-ribbon {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(212,175,55,.45);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.promo-video-ribbon::before {
  content: '✦';
  font-size: 14px;
  animation: ribbonSparkle 2s ease-in-out infinite;
}
@keyframes ribbonSparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%      { opacity: .6; transform: scale(1.3) rotate(180deg); }
}

/* Allow children of overlay to receive clicks (button) */
.promo-video-overlay > * { pointer-events: auto; }

/* Eyebrow above title */
.promo-video-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 100px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

.promo-video-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  background: linear-gradient(120deg, #fff 30%, var(--gold-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 6px 0 6px;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
  line-height: 1.1;
}
.promo-video-sub {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  letter-spacing: 1.5px;
}

/* Bottom luxury caption */
.promo-video-text {
  position: absolute;
  bottom: 22px;
  inset-inline-start: 22px;
  inset-inline-end: 22px;
  color: #fff;
  z-index: 3;
  pointer-events: none;
}
.promo-video-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  background: linear-gradient(120deg, #fff 30%, var(--gold-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.promo-video-text p {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Floating mute / unmute button */
.promo-mute-btn {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(6px);
  transition: all .25s;
}
.promo-mute-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(212,175,55,.6);
}

@media (max-width: 768px) {
  .promo-video-wrap {
    width: 94%;
    max-width: 560px;
    aspect-ratio: 16/9;
    margin: 18px auto 24px;
    border-radius: 14px;
  }
}
@media (max-width: 480px) {
  .promo-video-wrap {
    width: 94%;
    max-width: 440px;
    aspect-ratio: 16/9;
    margin: 16px auto 20px;
    border-radius: 12px;
  }
}

/* ============================================
   ✦ LUXURY HELP MODAL — Blur + Gold Glow ✦
   ============================================ */
.help-modal .modal-backdrop {
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: backdropFadeIn .5s ease;
}

.help-modal-card {
  width: min(560px, 94%);
  max-height: 88vh;
  margin: 0 auto;
  padding: 36px 28px !important;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.10) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #0a0908 100%) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  position: relative;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transform: translateY(20px) scale(.95);
  animation: authCardFadeIn .7s cubic-bezier(.22,.61,.36,1) .12s forwards;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    0 0 40px rgba(212,175,55,.30),
    0 0 110px rgba(212,175,55,.20),
    0 30px 70px -20px rgba(0,0,0,.85);
}
.help-modal-card::-webkit-scrollbar { width: 0; display: none; }

/* Animated shimmer line on top of modal */
.help-modal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
  border-radius: 22px 22px 0 0;
}
@keyframes shimmerLine {
  0%, 100% { opacity: .4; }
  50%      { opacity: 1; }
}

.help-modal-head {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px dashed rgba(212,175,55,.30);
}
.help-modal-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow:
    0 10px 28px rgba(212,175,55,.50),
    inset 0 0 0 2px rgba(255,255,255,.18);
  animation: phoneRing 2.5s ease-in-out infinite;
}
.help-modal-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 10px;
  padding: 4px 14px;
  border: 1px solid rgba(212,175,55,.40);
  border-radius: 100px;
}
.help-modal-head h2 {
  font-family: var(--font-display);
  font-size: 28px;
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4px 0 6px;
  letter-spacing: 1px;
}
.help-modal-head p {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== LEGACY help-phones-card (kept hidden, in case any old toggle hits it) ===== */
.help-phones-card {
  display: none !important;
}

/* === LEGACY KEYFRAMES kept for other components === */
@keyframes helpCardSlide {
  from { opacity: 0; transform: translateY(-15px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0deg); }
}
.help-phones-header h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.help-phones-header p {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.help-phones-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.help-phone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(212,175,55,.05), rgba(212,175,55,.01)),
    var(--bg-2);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 14px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.help-phone-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.10), transparent);
  transition: left .6s;
  pointer-events: none;
}
.help-phone-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212,175,55,.20);
}
.help-phone-item:hover::before { left: 100%; }

.help-phone-info h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: .5px;
}
.help-phone-info p { font-size: 12px; }

.help-phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
body[dir="rtl"] .help-phone-numbers { align-items: flex-start; }

.help-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.04));
  border: 1px solid rgba(212,175,55,.40);
  border-radius: 100px;
  color: var(--gold-2);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .5px;
  transition: all .25s;
  direction: ltr;
  font-feature-settings: "tnum";
}
.help-phone-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(212,175,55,.45);
}

.help-phone-general {
  flex-direction: column;
  text-align: center;
  background: linear-gradient(135deg, rgba(212,175,55,.08), rgba(0,0,0,.30));
}
.help-phone-general .help-phone-link {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 10px 18px;
}

@media (max-width: 600px) {
  .help-phone-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .help-phone-numbers { width: 100%; align-items: stretch; }
  body[dir="rtl"] .help-phone-numbers { align-items: stretch; }
  .help-phone-link { justify-content: center; }
}

/* ============================================
   ✦ SETTINGS PAGE — Extra Luxury Polish ✦
   ============================================ */
#route-settings .card {
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 18px;
  box-shadow:
    0 14px 38px -15px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(212,175,55,.08);
  transition: border-color .3s, box-shadow .3s;
}
#route-settings .card:hover {
  border-color: rgba(212,175,55,.35);
  box-shadow:
    0 20px 50px -15px rgba(0,0,0,.85),
    0 0 25px rgba(212,175,55,.15),
    inset 0 1px 0 rgba(212,175,55,.15);
}

#route-settings .card-head h3,
#route-settings .card h3 {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 1px;
}

#route-settings .setting-row {
  border-bottom: 1px solid rgba(212,175,55,.10);
  padding: 16px 4px;
  transition: background .25s, padding .25s;
  border-radius: 10px;
}
#route-settings .setting-row:last-child { border-bottom: none; }
#route-settings .setting-row:hover {
  background: linear-gradient(90deg, rgba(212,175,55,.05), transparent);
  padding-left: 10px;
}
body[dir="rtl"] #route-settings .setting-row:hover {
  padding-left: 4px;
  padding-right: 10px;
}

#route-settings .setting-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 12px;
  font-size: 20px;
  transition: all .3s;
}
#route-settings .setting-row:hover .setting-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(212,175,55,.40);
  transform: rotate(-6deg) scale(1.05);
}

#route-settings .setting-row h4 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text);
  letter-spacing: .5px;
  margin-bottom: 2px;
}

#route-settings .btn-link {
  color: var(--gold);
  font-size: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .25s;
}
#route-settings .setting-row:hover .btn-link {
  background: var(--gold);
  color: #0a0a0a;
  transform: translateX(4px) scale(1.1);
}
body[dir="rtl"] #route-settings .setting-row:hover .btn-link {
  transform: translateX(-4px) scale(1.1);
}

/* Settings page heading polish */
#route-settings > h2,
#route-settings .page-head h2 {
  font-family: var(--font-display);
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

/* ✦ Force LTR for technical inputs (email, password, phone, date, tel) ✦
   Even in Kurdish/Arabic RTL mode, these fields must type left-to-right */
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="url"] {
  direction: ltr !important;
  text-align: start !important;
  unicode-bidi: plaintext;
}
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="url"]::placeholder {
  text-align: start;
  direction: ltr;
}

/* ============================================
   ✦ SOCIAL LOGIN BUTTONS — Luxury Gold Frame ✦
   ============================================ */
.social-login-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 14px;
}
.social-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  background: linear-gradient(180deg, var(--bg-2) 0%, #0a0908 100%);
  border: 1.5px solid rgba(212,175,55,.25);
  border-radius: 14px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.22,.61,.36,1);
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.social-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.20), transparent);
  transition: left .6s;
  pointer-events: none;
}
.social-btn:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px -10px rgba(0,0,0,.85),
    0 0 25px rgba(212,175,55,.25);
}
.social-btn:hover::before { left: 100%; }
.social-btn:active { transform: translateY(-1px) scale(.98); }
.social-btn svg { flex-shrink: 0; }
.social-btn span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Provider tint on hover */
.social-google:hover { box-shadow: 0 12px 28px -10px rgba(0,0,0,.85), 0 0 25px rgba(244,180,0,.30); border-color: #FFC107; }
.social-facebook:hover { box-shadow: 0 12px 28px -10px rgba(0,0,0,.85), 0 0 25px rgba(24,119,242,.30); border-color: #1877F2; }
.social-apple:hover { box-shadow: 0 12px 28px -10px rgba(0,0,0,.85), 0 0 25px rgba(255,255,255,.20); border-color: #ffffff; }

/* Loading state */
.social-btn.loading {
  opacity: .5;
  cursor: wait;
  pointer-events: none;
}
.social-btn.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.30);
  border-radius: 14px;
}

/* ✦ Divider with "OR" text ✦ */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 14px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: .5;
}
.auth-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

@media (max-width: 380px) {
  .social-login-group { gap: 6px; }
  .social-btn { padding: 12px 4px; }
  .social-btn span { font-size: 10px; }
}

/* ============================================
   ⛔ FULLY BOOKED BANNER (user booking form)
   ============================================ */
.fully-booked-banner {
  margin-top: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(192,57,43,.18), rgba(192,57,43,.04));
  border: 1.5px dashed #c0392b;
  border-radius: 12px;
  color: #ff8b80;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .3px;
  display: none;
  animation: bannerSlide .4s cubic-bezier(.22,.61,.36,1);
}
.fully-booked-banner.show { display: block; }
@keyframes bannerSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   👑 AUTH MODAL — Google-only Ultra Luxury
   ═══════════════════════════════════════════ */

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.auth-modal.hidden { display: none !important; }

.auth-modal .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  animation: authLuxBg 0.45s ease forwards;
}
@keyframes authLuxBg { from { opacity: 0; } to { opacity: 1; } }

/* ── The card ─────────────────────────── */
.auth-lux-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 46px 32px 30px;
  border-radius: 26px;
  text-align: center;
  overflow: hidden;
  z-index: 2;
  animation: authLuxIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
  box-sizing: border-box;
  /* Glass surface comes from liquid-glass.css */
}

@keyframes authLuxIn {
  from { opacity: 0; transform: translateY(26px) scale(0.95); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Shimmer at top edge */
.auth-lux-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(212,175,55,0) 20%,
    rgba(255,230,150,1) 50%,
    rgba(212,175,55,0) 80%, transparent 100%);
  animation: authLuxShimmer 3.2s ease-in-out infinite;
}
@keyframes authLuxShimmer {
  0%,100% { opacity: 0.35; transform: translateX(-28%); }
  50%     { opacity: 1;    transform: translateX(28%); }
}

/* Bottom gold hairline */
.auth-lux-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 22%; right: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
}

/* Close button */
.auth-lux-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  color: rgba(212,175,55,0.7);
  font-size: 14px; line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}
.auth-lux-close:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.6);
  color: #ffe9a3;
  transform: rotate(90deg);
}

/* ── Title & subtitle ─────────────────── */
.auth-lux-title {
  position: relative; z-index: 3;
  margin: 0 0 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px; font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: authLuxFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.auth-lux-sub {
  position: relative; z-index: 3;
  margin: 0 0 30px;
  padding: 0 6px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,240,224,0.62);
  animation: authLuxFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.18s both;
}

/* ── Google button ────────────────────── */
.auth-lux-google {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  gap: 13px;
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
  color: #1a1a1a;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    0 0 0 1px rgba(212,175,55,0.35),
    inset 0 1px 0 rgba(255,255,255,0.9);
  animation: authLuxFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.26s both;
}
.auth-lux-google:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 42px rgba(0,0,0,0.55),
    0 0 0 1px rgba(212,175,55,0.7),
    0 0 34px rgba(212,175,55,0.32),
    inset 0 1px 0 rgba(255,255,255,0.95);
}
.auth-lux-google:active { transform: translateY(-1px); }

/* Sheen sweep across the white button (uses ::after, no extra markup) */
.auth-lux-google::after {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.30), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
}
.auth-lux-google:hover::after {
  animation: authSheen 1.1s cubic-bezier(0.22,1,0.36,1);
}
@keyframes authSheen {
  0%   { left: -70%; }
  100% { left: 140%; }
}

.auth-lux-google-icon {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.auth-lux-google:hover .auth-lux-google-icon { transform: rotate(360deg) scale(1.1); }

.auth-lux-google-text { position: relative; z-index: 2; }

/* ── Security note ────────────────────── */
.auth-lux-note {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 11.5px;
  color: rgba(212,175,55,0.6);
  letter-spacing: 0.4px;
  animation: authLuxFade 0.7s cubic-bezier(0.16,1,0.3,1) 0.34s both;
}
.auth-lux-note-icon { font-size: 13px; filter: drop-shadow(0 0 6px rgba(212,175,55,0.5)); }

@keyframes authLuxFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile ───────────────────────────── */
@media (max-width: 480px) {
  .auth-lux-box {
    max-width: 340px;
    padding: 38px 24px 26px;
    border-radius: 22px;
  }
  .auth-lux-title  { font-size: 27px; }
  .auth-lux-sub    { font-size: 13px; margin-bottom: 26px; }
  .auth-lux-google { min-height: 54px; font-size: 14px; }
  .auth-lux-note   { font-size: 11px; }
}

/* ═══════════════════════════════════════════
   📱 PHONE-ASK MODAL — Minimalist Luxury
   Clean, elegant, compact modal.
   No stretching. Perfect on desktop + mobile.
   ═══════════════════════════════════════════ */

.phone-ask-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.phone-ask-modal.hidden { display: none !important; }

.phone-ask-modal .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  animation: pAskFadeBg 0.4s ease forwards;
}

@keyframes pAskFadeBg {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ✦ The card — clean, compact, luxury ✦ */
.phone-ask-box {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 36px 28px 28px;
  background: linear-gradient(180deg,
    #17130c 0%,
    #0d0b07 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
  z-index: 2;
  animation: pAskBoxIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-sizing: border-box;
}

@keyframes pAskBoxIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Gold shimmer at top edge */
.phone-ask-box::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212, 175, 55, 0.9), transparent
  );
}

/* Close button — small, subtle */
.phone-ask-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  color: rgba(212, 175, 55, 0.6);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-ask-close:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
}

/* Icon ring — luxury circle with phone svg */
.phone-ask-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  animation: pAskFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.phone-ask-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.25),
    inset 0 0 20px rgba(212, 175, 55, 0.08);
  animation: pAskRingPulse 2.4s ease-in-out infinite;
}

@keyframes pAskRingPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 20px rgba(212, 175, 55, 0.25),
      inset 0 0 20px rgba(212, 175, 55, 0.08);
  }
  50% {
    transform: scale(1.05);
    box-shadow:
      0 0 32px rgba(212, 175, 55, 0.5),
      inset 0 0 24px rgba(212, 175, 55, 0.15);
  }
}

.phone-ask-icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

/* Eyebrow — small refined chip */
.phone-ask-eyebrow {
  display: inline-block;
  font-size: 10px;
  color: #d4af37;
  letter-spacing: 4px;
  font-weight: 700;
  padding: 5px 14px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.06);
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
  animation: pAskFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

/* Title — Playfair-ish serif for luxury feel */
.phone-ask-title {
  font-size: 22px;
  font-weight: 700;
  color: #f5e5a3;
  margin: 0 0 6px;
  letter-spacing: 0.3px;
  font-family: 'Playfair Display', Georgia, serif;
  animation: pAskFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Subtitle — muted supportive text */
.phone-ask-sub {
  font-size: 13px;
  color: rgba(245, 240, 224, 0.55);
  line-height: 1.5;
  margin: 0 0 24px;
  padding: 0 8px;
  animation: pAskFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

/* Phone input row — dark theme matching */
.phone-ask-input {
  display: flex;
  align-items: stretch;
  height: 52px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  direction: ltr;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pAskFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.phone-ask-input:focus-within {
  border-color: rgba(212, 175, 55, 0.9);
  background: rgba(0, 0, 0, 0.55);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Country code chip */
.phone-ask-cc {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  min-width: 90px;
  justify-content: center;
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.12),
    rgba(212, 175, 55, 0.03)
  );
  border-right: 1px solid rgba(212, 175, 55, 0.3);
  color: #f5e5a3;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.phone-ask-input:focus-within .phone-ask-cc {
  background: linear-gradient(180deg,
    rgba(212, 175, 55, 0.2),
    rgba(212, 175, 55, 0.06)
  );
}

.phone-ask-flag {
  font-size: 16px;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

.phone-ask-code {
  font-variant-numeric: tabular-nums;
}

/* The phone input itself — dark, clean */
.phone-ask-input input {
  flex: 1;
  padding: 0 14px;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-family: 'Segoe UI', sans-serif;
  font-variant-numeric: tabular-nums;
  direction: ltr;
  text-align: left;
}

.phone-ask-input input::placeholder {
  color: rgba(212, 175, 55, 0.3);
  letter-spacing: 2px;
  font-weight: 400;
}

/* Save button — gold, prominent, but not huge */
.phone-ask-save {
  width: 100%;
  height: 48px;
  padding: 0;
  background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
  border: none;
  border-radius: 12px;
  color: #14110a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
  animation: pAskFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.54s both;
  font-family: 'Segoe UI', sans-serif;
}

.phone-ask-save:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 32px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #e6c04a 0%, #cba52a 100%);
}

.phone-ask-save:active { transform: translateY(0); }
.phone-ask-save:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Later link — small, subtle, NOT huge */
.phone-ask-later {
  display: inline-block;
  color: rgba(212, 175, 55, 0.65);
  background: transparent;
  border: none;
  font-size: 12px;
  padding: 6px 12px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  animation: pAskFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
  font-family: inherit;
}

.phone-ask-later:hover {
  color: #d4af37;
  text-decoration: underline;
}

/* Shared fade */
@keyframes pAskFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile — even more compact */
@media (max-width: 480px) {
  .phone-ask-box {
    max-width: 340px;
    padding: 28px 22px 22px;
    border-radius: 18px;
  }
  .phone-ask-title { font-size: 19px; }
  .phone-ask-sub { font-size: 12px; margin-bottom: 20px; }
  .phone-ask-input { height: 48px; }
  .phone-ask-save { height: 46px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   📱 PHONE-LINK MODAL — ULTRA LUXURY
   Premium SMS verification experience
   ═══════════════════════════════════════════ */
.phone-link-modal .modal-backdrop {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(20px);
}
.phone-link-card {
  width: min(460px, 92%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px 32px !important;
  background:
    radial-gradient(ellipse at top left, rgba(212,175,55,.15) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(212,175,55,.12) 0%, transparent 55%),
    radial-gradient(ellipse at center, rgba(212,175,55,.05) 0%, transparent 80%),
    linear-gradient(135deg, #14110b 0%, #08070a 100%) !important;
  border: 1.5px solid rgba(212,175,55,.4) !important;
  border-radius: 28px !important;
  text-align: center;
  scrollbar-width: none;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    inset 0 0 80px rgba(212,175,55,.06),
    0 0 60px rgba(212,175,55,.35),
    0 30px 80px -20px rgba(0,0,0,.9);
  animation: phoneLinkCardIn .8s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

@keyframes phoneLinkCardIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.phone-link-card::-webkit-scrollbar { display: none; }

/* Sweeping shimmer line at top */
.phone-link-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,175,55,0) 20%,
    rgba(212,175,55,1) 50%,
    rgba(212,175,55,0) 80%,
    transparent 100%
  );
  animation: phoneLinkShimmer 3s ease-in-out infinite;
}

@keyframes phoneLinkShimmer {
  0%, 100% { opacity: 0.3; transform: translateX(-30%); }
  50% { opacity: 1; transform: translateX(30%); }
}

/* Bottom gold accent line */
.phone-link-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(212,175,55,.5), transparent
  );
}

/* Corner ornaments */
.phone-link-card .phone-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
  opacity: 0.7;
}
.phone-link-card .phone-corner-tl { top: 16px; left: 16px; border-top: 2px solid rgba(212,175,55,.7); border-left: 2px solid rgba(212,175,55,.7); border-top-left-radius: 12px; }
.phone-link-card .phone-corner-tr { top: 16px; right: 16px; border-top: 2px solid rgba(212,175,55,.7); border-right: 2px solid rgba(212,175,55,.7); border-top-right-radius: 12px; }
.phone-link-card .phone-corner-bl { bottom: 16px; left: 16px; border-bottom: 2px solid rgba(212,175,55,.7); border-left: 2px solid rgba(212,175,55,.7); border-bottom-left-radius: 12px; }
.phone-link-card .phone-corner-br { bottom: 16px; right: 16px; border-bottom: 2px solid rgba(212,175,55,.7); border-right: 2px solid rgba(212,175,55,.7); border-bottom-right-radius: 12px; }

/* Header section */
.phone-link-head {
  margin-bottom: 28px;
  animation: phoneLinkFadeUp .8s cubic-bezier(.16, 1, .3, 1) .2s both;
}

@keyframes phoneLinkFadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-link-icon {
  font-size: 56px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 24px rgba(212,175,55,.7)) drop-shadow(0 0 40px rgba(212,175,55,.4));
  animation: phoneLinkIconPulse 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes phoneLinkIconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 24px rgba(212,175,55,.7));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 32px rgba(212,175,55,1)) drop-shadow(0 0 50px rgba(212,175,55,.5));
  }
}

.phone-link-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #f5e5a3;
  letter-spacing: 5px;
  font-weight: 700;
  padding: 6px 18px;
  border: 1px solid rgba(212,175,55,.5);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(0,0,0,.35));
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(212,175,55,.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 20px rgba(212,175,55,.15);
}

.phone-link-head h2 {
  font-family: 'Playfair Display', var(--font-display, Georgia), serif;
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg,
    #f5d068 0%,
    #d4af37 30%,
    #f5e5a3 50%,
    #d4af37 70%,
    #b8941f 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: phoneLinkGoldShift 4s ease-in-out infinite;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

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

.phone-link-head p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 224, 0.7);
  margin: 0;
}
.phone-link-head b {
  color: #f5e5a3;
  direction: ltr;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(212,175,55,.5);
}

/* ═══════════════════════════════════════════
   Phone Input — Premium Luxury Design
   ═══════════════════════════════════════════ */
.phone-link-input-wrap {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(135deg,
      rgba(28, 24, 16, 0.9) 0%,
      rgba(20, 18, 12, 0.95) 100%
    );
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  padding: 0;
  margin: 24px 0 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  direction: ltr;
  position: relative;
  box-shadow:
    0 4px 20px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.03);
  animation: phoneLinkFadeUp .8s cubic-bezier(.16, 1, .3, 1) .35s both;
}

.phone-link-input-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent, rgba(212,175,55,.9), transparent
  );
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-link-input-wrap:focus-within {
  border-color: rgba(212, 175, 55, 0.9);
  background:
    linear-gradient(135deg,
      rgba(36, 30, 18, 0.95) 0%,
      rgba(28, 24, 14, 1) 100%
    );
  box-shadow:
    0 8px 32px rgba(0,0,0,.5),
    0 0 32px rgba(212,175,55,.35),
    inset 0 1px 0 rgba(212,175,55,.15);
  transform: translateY(-2px);
}

.phone-link-input-wrap:focus-within::after {
  transform: scaleX(1);
}

.phone-link-cc {
  padding: 14px 18px;
  color: #f5e5a3;
  font-weight: 800;
  font-family: 'Segoe UI', var(--font-display), sans-serif;
  font-size: 17px;
  border-right: 1px solid rgba(212,175,55,.4);
  letter-spacing: 1.5px;
  background: linear-gradient(135deg,
    rgba(212,175,55,.15) 0%,
    rgba(212,175,55,.05) 100%
  );
  text-shadow: 0 0 12px rgba(212,175,55,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  transition: all 0.4s ease;
}

.phone-link-input-wrap:focus-within .phone-link-cc {
  background: linear-gradient(135deg,
    rgba(212,175,55,.25) 0%,
    rgba(212,175,55,.1) 100%
  );
  text-shadow: 0 0 16px rgba(212,175,55,.8);
}

#phoneLinkInput {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  font-family: 'Segoe UI', inherit;
  letter-spacing: 2px;
  direction: ltr;
  font-variant-numeric: tabular-nums;
}
#phoneLinkInput::placeholder {
  color: rgba(212,175,55,.35);
  opacity: 1;
  letter-spacing: 2.5px;
  font-weight: 400;
}

/* Buttons fade in */
#phoneLinkSendBtn,
#phoneLinkVerifyBtn {
  animation: phoneLinkFadeUp .8s cubic-bezier(.16, 1, .3, 1) .5s both;
  position: relative;
  overflow: hidden;
}

#phoneLinkSendBtn::before,
#phoneLinkVerifyBtn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,.2), transparent
  );
  transition: left 0.6s;
}

#phoneLinkSendBtn:hover::before,
#phoneLinkVerifyBtn:hover::before {
  left: 100%;
}

#phoneLinkSkipBtn,
#phoneLinkResendBtn {
  display: block;
  margin: 12px auto 0;
  color: var(--gold);
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}

/* Hidden reCAPTCHA container */
#phone-link-recaptcha {
  position: fixed;
  bottom: 0; right: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

/* Error shake on OTP boxes */
#phoneLinkOtpInputs .otp-box.error {
  border-color: #c0392b !important;
  animation: shakeBox .4s ease;
}

@media (max-width: 480px) {
  .phone-link-card { padding: 24px 18px !important; }
  .phone-link-head h2 { font-size: 20px; }
}

/* ============================================
   🏨 ROOMS BUTTON — Super Admin Quick Access
   ============================================ */
.sr-rooms-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  margin: 24px 0;
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,.18) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #0a0908 100%);
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.22,.61,.36,1);
  font-family: inherit;
  text-align: start;
  position: relative;
  overflow: hidden;
  color: var(--text);
  box-shadow:
    0 14px 36px -16px rgba(0,0,0,.85),
    0 0 20px rgba(212,175,55,.20),
    inset 0 1px 0 rgba(212,175,55,.15);
}
.sr-rooms-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.20), transparent);
  transition: left .7s;
  pointer-events: none;
}
.sr-rooms-btn:hover {
  border-color: var(--gold-2);
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px -18px rgba(0,0,0,.92),
    0 0 40px rgba(212,175,55,.35);
}
.sr-rooms-btn:hover::before { left: 100%; }
.sr-rooms-btn:active { transform: translateY(-1px); }

.sr-rooms-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border-radius: 14px;
  font-size: 26px;
  color: #0a0a0a;
  box-shadow:
    0 8px 22px rgba(212,175,55,.40),
    inset 0 0 0 2px rgba(255,255,255,.18);
  animation: phoneRing 2.5s ease-in-out infinite;
}
.sr-rooms-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sr-rooms-text strong {
  font-family: var(--font-display);
  font-size: 18px;
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .5px;
}
.sr-rooms-text small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sr-rooms-arrow {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .3s;
}
.sr-rooms-btn:hover .sr-rooms-arrow {
  transform: translateX(6px);
}
body[dir="rtl"] .sr-rooms-btn:hover .sr-rooms-arrow {
  transform: translateX(-6px);
}

/* ============================================
   🏨 ROOMS MODAL — Luxury Full-Screen View
   ============================================ */
.rooms-modal .modal-backdrop {
  background: rgba(0,0,0,.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: backdropFadeIn .4s ease;
}
.rooms-modal-card {
  width: min(960px, 96%);
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 32px 28px !important;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.10) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #08070a 100%) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    0 0 50px rgba(212,175,55,.30),
    0 0 130px rgba(212,175,55,.18),
    0 30px 70px -20px rgba(0,0,0,.90);
  animation: authCardFadeIn .6s cubic-bezier(.22,.61,.36,1);
}
.rooms-modal-card::-webkit-scrollbar { display: none; }
.rooms-modal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}
.rooms-modal-head {
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(212,175,55,.30);
}
.rooms-modal-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 5px;
  padding: 5px 16px;
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 100px;
  background: rgba(0,0,0,.35);
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(212,175,55,.50);
}
.rooms-modal-head h2 {
  font-family: var(--font-display);
  font-size: 28px;
  background: linear-gradient(120deg, #fff 30%, var(--gold-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.rooms-modal-head p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .rooms-modal-card { padding: 24px 16px !important; }
  .rooms-modal-head h2 { font-size: 22px; }
  .sr-rooms-btn { padding: 18px 16px; gap: 12px; }
  .sr-rooms-icon { width: 48px; height: 48px; font-size: 22px; }
  .sr-rooms-text strong { font-size: 16px; }
}

/* ============================================
   🏨 USER ROOM GRID — Above booking form
   ============================================ */
.user-room-grid-wrap {
  margin: 8px 0 22px;
  padding: 22px 18px;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%);
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 14px 36px -16px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(212,175,55,.12);
  animation: bannerSlide .5s cubic-bezier(.22,.61,.36,1);
}
.user-room-grid-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}
.user-room-grid-head {
  margin-bottom: 16px;
}
.user-room-grid-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-shadow: 0 0 14px rgba(212,175,55,.40);
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Selected room state */
.room-cell.selected {
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.30) 0%, transparent 70%),
    linear-gradient(135deg, #1a1610 0%, #08070a 100%) !important;
  border-color: var(--gold) !important;
  border-width: 2px !important;
  box-shadow:
    0 0 0 2px rgba(212,175,55,.30),
    0 8px 24px rgba(212,175,55,.45),
    inset 0 0 0 1px rgba(244,209,96,.30) !important;
  transform: translateY(-3px);
}
.room-cell.selected .room-cell-num {
  color: var(--gold-2);
  text-shadow: 0 0 12px rgba(212,175,55,.55);
}
.room-cell-check {
  position: absolute;
  top: 4px;
  inset-inline-end: 4px;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #0a0a0a;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(212,175,55,.50);
  animation: ribbonSparkle 2s ease-in-out infinite;
}

/* ============================================
   🏨 MERIT GRATUS — Room Grid (Luxury)
   ============================================ */
.room-legend {
  display: flex;
  gap: 14px;
  align-items: center;
}
.room-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.room-legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.room-legend-dot.avail {
  background: linear-gradient(135deg, #6dd66d, #1ea54e);
  box-shadow: 0 0 8px rgba(109,214,109,.50);
}
.room-legend-dot.booked {
  background: linear-gradient(135deg, #c0392b, #8b2818);
  box-shadow: 0 0 8px rgba(192,57,43,.50);
}

/* Type-count tags row */
.room-type-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(212,175,55,.20);
  border-radius: 12px;
}
.room-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.02));
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
}
.room-type-tag:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.room-type-tag.full {
  background: linear-gradient(135deg, rgba(192,57,43,.10), rgba(192,57,43,.02));
  border-color: #c0392b;
  opacity: .75;
}
.room-type-tag-icon {
  font-size: 14px;
  filter: drop-shadow(0 0 6px currentColor);
}
.room-type-tag-label {
  color: var(--text);
}
.room-type-tag-count {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin-inline-start: 4px;
}
.room-type-tag.full .room-type-tag-count {
  color: #ff6b5e;
}

/* Floors */
.merit-room-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.room-floor {
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.04) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.10) 100%);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.room-floor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.room-floor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(212,175,55,.20);
}
.room-floor-num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
}
.room-floor-count {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.room-floor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 10px;
}

/* Room cell — single button */
.room-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: all .25s cubic-bezier(.22,.61,.36,1);
  border: 1.5px solid;
  -webkit-tap-highlight-color: transparent;
  min-height: 80px;
}

/* Available state — soft gold/dark */
.room-cell.available {
  background:
    radial-gradient(ellipse at top, rgba(109,214,109,.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-2) 0%, #0a0908 100%);
  border-color: rgba(109,214,109,.30);
  color: var(--text);
}
.room-cell.available:hover {
  border-color: #6dd66d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109,214,109,.18);
}
.room-cell.available::before {
  content: '';
  position: absolute;
  top: 6px;
  inset-inline-end: 6px;
  width: 7px; height: 7px;
  background: #6dd66d;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(109,214,109,.60);
}

/* Booked state — red */
.room-cell.booked {
  background:
    radial-gradient(ellipse at top, rgba(192,57,43,.18) 0%, transparent 70%),
    linear-gradient(135deg, #1a0c0c 0%, #08070a 100%);
  border-color: #c0392b;
  color: #ff8b80;
  opacity: .85;
}
.room-cell.booked:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,.30);
}
.room-cell.booked::before {
  content: '';
  position: absolute;
  top: 6px;
  inset-inline-end: 6px;
  width: 7px; height: 7px;
  background: #c0392b;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(192,57,43,.60);
}

/* Type variants — golden borders for special rooms */
.room-cell.type-vip { border-color: rgba(255,77,141,.55); }
.room-cell.type-vip.available { box-shadow: inset 0 0 0 1px rgba(255,77,141,.20); }
.room-cell.type-suite2,
.room-cell.type-suite4 { border-color: rgba(244,209,96,.50); }
.room-cell.type-suite2.available,
.room-cell.type-suite4.available { box-shadow: inset 0 0 0 1px rgba(244,209,96,.20); }

.room-cell-num {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
}
.room-cell.booked .room-cell-num {
  color: #ff8b80;
}
.room-cell-icon {
  font-size: 14px;
  filter: drop-shadow(0 0 6px currentColor);
}
.room-cell-type {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.room-cell-locked {
  position: absolute;
  bottom: 4px;
  inset-inline-end: 6px;
  font-size: 11px;
  color: #ff6b5e;
  opacity: .8;
}

/* ✦ "Guest Inside" luxury badge — shown when admin clicks a room ✦ */
.room-guest-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  padding: 3px 6px;
  background: linear-gradient(135deg, rgba(255,77,141,.95), rgba(192,57,43,.95));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(192,57,43,.55);
  animation: guestPulse 2.2s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes guestPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(192,57,43,.55); }
  50%      { box-shadow: 0 4px 16px rgba(255,77,141,.75); }
}

@media (max-width: 480px) {
  .room-floor-grid { grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 6px; }
  .room-cell { padding: 8px 4px; min-height: 70px; }
  .room-cell-num { font-size: 16px; }
}

/* ============================================
   ✦ NOTIFICATION BADGE (pulsing red dot) ✦
   ============================================ */
.notif-badge {
  position: absolute;
  top: -6px;
  inset-inline-end: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: linear-gradient(135deg, #ff4444, #c0392b);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 100px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px rgba(0,0,0,.30), 0 4px 12px rgba(255,68,68,.55);
  z-index: 10;
}
.notif-badge.pulse {
  animation: badgePulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,68,68,.7), 0 4px 12px rgba(255,68,68,.55);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(255,68,68,0), 0 4px 12px rgba(255,68,68,.55);
  }
}
/* Make the parent of the badge use relative positioning */
.admin-eyebrow,
.super-admin-title {
  position: relative;
}

/* ============================================
   ✦ ADMIN DASHBOARD — Luxury Container Cards ✦
   ============================================ */
#adminDashboard > .card {
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%);
  border: 1.5px solid rgba(212,175,55,.25);
  border-radius: 20px;
  box-shadow:
    0 16px 40px -16px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(212,175,55,.10);
  position: relative;
  overflow: hidden;
}
#adminDashboard > .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  opacity: .6;
}
#adminDashboard > .card .card-head h3 {
  font-family: var(--font-display);
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

/* ============================================
   ✦ PAY MODE TOGGLE — 50% vs Full Wallet Pay ✦
   ============================================ */
.pay-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 14px;
}
.pay-mode-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(0,0,0,.30);
  border: 1.5px solid rgba(212,175,55,.25);
  border-radius: 12px;
  cursor: pointer;
  transition: all .25s;
}
.pay-mode-opt:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.06);
}
.pay-mode-opt input[type="radio"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}
.pay-mode-opt input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--gold);
  border-radius: 50%;
}
.pay-mode-opt.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.04));
  box-shadow: 0 0 18px rgba(212,175,55,.20);
}
.pay-mode-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: start;
}
.pay-mode-text strong {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: .5px;
}
.pay-mode-text small {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  direction: ltr;
}

@media (max-width: 500px) {
  .pay-mode-toggle { grid-template-columns: 1fr; }
}

/* ============================================
   ✦ ADMIN BOOKING CARDS — Luxury + Status ✦
   ============================================ */
.bk-cards {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}
.bk-card {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%);
  border: 1.5px solid rgba(212,175,55,.22);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow:
    0 14px 36px -16px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(212,175,55,.10);
  transition: all .3s;
  animation: bkCardEntry .55s cubic-bezier(.22,.61,.36,1);
}
@keyframes bkCardEntry {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.bk-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow:
    0 20px 46px -16px rgba(0,0,0,.92),
    0 0 30px rgba(212,175,55,.18);
}

/* Status-colored cards */
.bk-card-green {
  border-color: #6dd66d;
  background:
    radial-gradient(ellipse at top, rgba(109,214,109,.08) 0%, transparent 60%),
    linear-gradient(180deg, #0c1a13 0%, #08070a 100%);
  box-shadow:
    0 14px 36px -16px rgba(0,0,0,.85),
    0 0 30px rgba(109,214,109,.18),
    inset 0 1px 0 rgba(109,214,109,.10);
}
.bk-card-red {
  border-color: #c0392b;
  background:
    radial-gradient(ellipse at top, rgba(192,57,43,.08) 0%, transparent 60%),
    linear-gradient(180deg, #1a0c0c 0%, #08070a 100%);
  box-shadow:
    0 14px 36px -16px rgba(0,0,0,.85),
    0 0 30px rgba(192,57,43,.18),
    inset 0 1px 0 rgba(192,57,43,.10);
}

/* Floating status symbol top-right */
.bk-status-symbol {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 900;
  z-index: 2;
}
.bk-sym.ok {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #6dd66d, #1ea54e);
  color: #0a0a0a;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(109,214,109,.45);
}
.bk-sym.bad {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #ff6b5e, #c0392b);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(192,57,43,.50);
}
.bk-sym.pending {
  width: 38px; height: 38px;
  background: rgba(212,175,55,.20);
  color: var(--gold);
  border: 1.5px dashed var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  animation: ribbonSparkle 2s ease-in-out infinite;
}

/* Avatar + name row */
.bk-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(212,175,55,.25);
}
.bk-avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  display: grid; place-items: center;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(212,175,55,.35);
}
.bk-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bk-name-block { flex: 1; min-width: 0; }
.bk-name-block h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold);
  margin: 0 0 4px;
}
.bk-id code {
  font-size: 11px;
  color: var(--muted);
  background: rgba(212,175,55,.08);
  padding: 2px 8px;
  border-radius: 6px;
}
/* ✦ Big centered total — hero section ✦ */
.bk-total-hero {
  position: relative;
  text-align: center;
  padding: 22px 18px;
  margin-bottom: 18px;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.20) 0%, transparent 65%),
    linear-gradient(135deg, rgba(212,175,55,.10), rgba(0,0,0,.30));
  border: 1.5px dashed var(--gold);
  border-radius: 14px;
  overflow: hidden;
}
.bk-total-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.10), transparent);
  animation: heroSweep 4s ease-in-out infinite;
}
@keyframes heroSweep {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.bk-total-hero-label {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bk-total-hero-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold-2), var(--gold), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212,175,55,.45);
  letter-spacing: 1px;
  direction: ltr;
  display: inline-block;
}
.bk-paid-tag {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  color: #6dd66d;
  font-weight: 700;
}

/* Status-card variants for total hero */
.bk-card-green .bk-total-hero {
  background:
    radial-gradient(ellipse at center, rgba(109,214,109,.18) 0%, transparent 65%),
    linear-gradient(135deg, rgba(109,214,109,.08), rgba(0,0,0,.30));
  border-color: #6dd66d;
}
.bk-card-green .bk-total-hero-amount {
  background: linear-gradient(120deg, #6dd66d, #b3f3b3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(109,214,109,.45);
}
.bk-card-red .bk-total-hero {
  background:
    radial-gradient(ellipse at center, rgba(192,57,43,.18) 0%, transparent 65%),
    linear-gradient(135deg, rgba(192,57,43,.08), rgba(0,0,0,.30));
  border-color: #c0392b;
}
.bk-card-red .bk-total-hero-amount {
  background: linear-gradient(120deg, #ff6b5e, #ffb0a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(192,57,43,.45);
}

/* Info grid */
.bk-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bk-info {
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,.30);
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,.10);
}
.bk-info > span { font-size: 16px; flex-shrink: 0; }
.bk-info > div { min-width: 0; flex: 1; }
.bk-info label {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.bk-info b {
  display: block;
  font-size: 13px;
  color: var(--text);
  word-break: break-word;
}
/* ✦ Force LTR for technical values: phone numbers, dates, emails ✦
   text-align: left ensures the value always starts from the left
   even when the page is in RTL (Kurdish/Arabic) mode. */
.bk-info b.bk-ltr,
.bk-info b[class*="ltr"] {
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: bidi-override;
  font-feature-settings: "tnum";
  display: block;
}
body[dir="rtl"] .bk-info b.bk-ltr {
  text-align: left !important;
}
/* Email is already LTR by content but ensure consistency */
.bk-info b {
  unicode-bidi: plaintext;
}

/* Arrival question (when check-in day arrives) */
.bk-arrival-q {
  margin-top: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,.10), rgba(0,0,0,.30));
  border: 1.5px dashed var(--gold);
  border-radius: 12px;
  animation: arrivalPulse 2.5s ease-in-out infinite;
}
@keyframes arrivalPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,.40); }
  50%      { box-shadow: 0 0 0 6px rgba(212,175,55,0); }
}
.bk-arrival-text {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: .5px;
}
.bk-arrival-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.bk-arr-btn {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all .25s;
  border: 1px solid;
}
.bk-arr-btn.ok {
  background: rgba(109,214,109,.10);
  border-color: #6dd66d;
  color: #6dd66d;
}
.bk-arr-btn.ok:hover {
  background: linear-gradient(135deg, #6dd66d, #1ea54e);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(109,214,109,.45);
}
.bk-arr-btn.bad {
  background: rgba(192,57,43,.10);
  border-color: #c0392b;
  color: #ff6b5e;
}
.bk-arr-btn.bad:hover {
  background: linear-gradient(135deg, #c0392b, #8b2818);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(192,57,43,.45);
}
.bk-arr-btn.wait {
  background: rgba(212,175,55,.10);
  border-color: var(--gold);
  color: var(--gold);
}
.bk-arr-btn.wait:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212,175,55,.45);
}

/* Bottom status tag */
.bk-status-tag {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}
.bk-status-tag.ok {
  background: rgba(109,214,109,.12);
  border: 1px solid #6dd66d;
  color: #6dd66d;
}
.bk-status-tag.bad {
  background: rgba(192,57,43,.12);
  border: 1px solid #c0392b;
  color: #ff6b5e;
}

@media (max-width: 600px) {
  .bk-info-grid { grid-template-columns: 1fr; }
  .bk-arrival-btns { grid-template-columns: 1fr; }
}

/* ============================================
   ✦ EMAIL VERIFICATION MODAL (luxury gold) ✦
   ============================================ */
.email-modal .modal-backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(18px);
}
.email-modal-card {
  width: min(440px, 92%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 28px !important;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.10) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #08070a 100%) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  text-align: center;
  position: relative;
  scrollbar-width: none;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    0 0 50px rgba(212,175,55,.30),
    0 0 130px rgba(212,175,55,.18),
    0 30px 70px -20px rgba(0,0,0,.85);
}
.email-modal-card::-webkit-scrollbar { display: none; }
.email-modal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}

.email-head { margin-bottom: 22px; }
.email-icon {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  color: #0a0a0a;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  box-shadow:
    0 8px 24px rgba(212,175,55,.50),
    inset 0 0 0 2px rgba(255,255,255,.18);
  animation: phoneRing 2.5s ease-in-out infinite;
}
.email-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  padding: 4px 14px;
  border: 1px solid rgba(212,175,55,.40);
  border-radius: 100px;
  margin-bottom: 10px;
  background: rgba(0,0,0,.30);
}
.email-head h2 {
  font-family: var(--font-display);
  font-size: 22px;
  background: linear-gradient(120deg, #fff 30%, var(--gold-2) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.email-head p { font-size: 12px; line-height: 1.5; letter-spacing: .3px; }

/* Reuse wa-status styles for email status banner */
.email-modal .wa-status.error {
  background: rgba(192,57,43,.10);
  border: 1px solid rgba(192,57,43,.45);
  color: #ff6b5e;
}
.email-modal .wa-status.error::before { content: '✗ '; }

#emailResendBtn {
  display: block;
  margin: 12px auto 0;
  color: var(--gold);
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

/* ============================================
   ✦ WHATSAPP VERIFICATION MODAL ✦
   ============================================ */
.wa-modal .modal-backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(18px);
}
.wa-modal-card {
  width: min(440px, 92%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 28px !important;
  background:
    radial-gradient(ellipse at top, rgba(37,211,102,.10) 0%, transparent 60%),
    linear-gradient(135deg, #0c1a13 0%, #08070a 100%) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  text-align: center;
  position: relative;
  scrollbar-width: none;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    0 0 40px rgba(37,211,102,.20),
    0 0 100px rgba(212,175,55,.15),
    0 30px 70px -20px rgba(0,0,0,.85);
}
.wa-modal-card::-webkit-scrollbar { display: none; }

.wa-head { margin-bottom: 22px; }
.wa-icon {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(37,211,102,.40);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); box-shadow: 0 10px 32px rgba(37,211,102,.60); }
}
.wa-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: #25D366;
  letter-spacing: 4px;
  padding: 4px 14px;
  border: 1px solid rgba(37,211,102,.40);
  border-radius: 100px;
  margin-bottom: 10px;
  background: rgba(0,0,0,.30);
}
.wa-head h2 {
  font-family: var(--font-display);
  font-size: 22px;
  background: linear-gradient(120deg, #fff 30%, var(--gold-2) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.wa-head p {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .3px;
}

/* Code display box */
.wa-code-box {
  padding: 18px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.03));
  border: 1.5px dashed var(--gold);
  border-radius: 14px;
  margin-bottom: 16px;
}
.wa-code-label {
  display: block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wa-code {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 6px;
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(212,175,55,.45);
  margin-bottom: 10px;
  direction: ltr;
}
.wa-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 100px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
}
.wa-copy-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* Big green WhatsApp button */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 22px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  text-decoration: none;
  margin-bottom: 22px;
  box-shadow:
    0 10px 30px rgba(37,211,102,.45),
    inset 0 1px 0 rgba(255,255,255,.30);
  transition: all .3s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 40px rgba(37,211,102,.60),
    inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-whatsapp:active { transform: translateY(-1px) scale(.99); }

/* Live status banner */
.wa-status {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: .3px;
}
.wa-status.sending {
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.30);
  color: var(--gold);
}
.wa-status.sending::before {
  content: '⏳ ';
}
.wa-status.sent {
  background: rgba(37,211,102,.10);
  border: 1px solid rgba(37,211,102,.40);
  color: #25D366;
}
.wa-status.dev {
  background: rgba(255,165,0,.10);
  border: 1px solid rgba(255,165,0,.45);
  color: orange;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
}
.wa-status.manual {
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.30);
  color: var(--gold);
}

.wa-auto-ok {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px;
  background: rgba(37,211,102,.06);
  border-radius: 10px;
  font-size: 12px;
  color: #25D366;
  font-weight: 600;
}
.wa-pulse-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: waPulseDot 1.4s ease-in-out infinite;
}
@keyframes waPulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  50%      { opacity: .7; box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

#waResendBtn {
  display: block;
  margin: 12px auto 0;
  color: var(--gold);
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

/* Confirmation step */
.wa-confirm-step {
  padding-top: 16px;
  border-top: 1px dashed rgba(212,175,55,.30);
}
.wa-confirm-step .muted {
  font-size: 12px;
  margin-bottom: 14px;
}
.wa-otp-inputs .otp-box.error {
  border-color: #c0392b !important;
  animation: shakeBox .4s ease;
}
@keyframes shakeBox {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ============================================
   ✦ PHONE OTP MODAL ✦
   ============================================ */
.otp-modal .modal-backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px);
}
.otp-modal-card {
  width: min(440px, 92%);
  padding: 32px 28px !important;
  background: linear-gradient(135deg, #14110b 0%, #08070a 100%) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  text-align: center;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    0 0 40px rgba(212,175,55,.30),
    0 30px 70px -20px rgba(0,0,0,.85);
}
.otp-head { margin-bottom: 24px; }
.otp-icon {
  font-size: 42px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 16px rgba(212,175,55,.45));
}
.otp-eyebrow {
  display: inline-block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  padding: 4px 14px;
  border: 1px solid rgba(212,175,55,.40);
  border-radius: 100px;
  margin-bottom: 10px;
}
.otp-head h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 4px;
}
.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 24px 0 28px;
  direction: ltr;
  animation: phoneLinkFadeUp .8s cubic-bezier(.16, 1, .3, 1) .4s both;
}
.otp-box {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #f5e5a3;
  background: linear-gradient(135deg,
    rgba(28, 24, 16, 0.9) 0%,
    rgba(20, 18, 12, 0.95) 100%
  );
  border: 1.5px solid rgba(212,175,55,.4);
  border-radius: 14px;
  outline: none;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  font-family: 'Playfair Display', var(--font-display), serif;
  font-variant-numeric: tabular-nums;
  box-shadow:
    0 4px 12px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.05);
  text-shadow: 0 0 12px rgba(212,175,55,.6);
}
.otp-box:focus {
  border-color: rgba(212,175,55,1);
  box-shadow:
    0 0 0 4px rgba(212,175,55,.2),
    0 8px 24px rgba(0,0,0,.5),
    0 0 24px rgba(212,175,55,.4),
    inset 0 1px 0 rgba(212,175,55,.15);
  transform: scale(1.08) translateY(-3px);
  background: linear-gradient(135deg,
    rgba(36, 30, 18, 0.95) 0%,
    rgba(28, 24, 14, 1) 100%
  );
}
.otp-box.filled {
  background: linear-gradient(135deg,
    rgba(212,175,55,.2),
    rgba(212,175,55,.08)
  );
  border-color: rgba(212,175,55,.9);
  color: #ffd94d;
  text-shadow: 0 0 16px rgba(212,175,55,.9);
  box-shadow:
    0 4px 16px rgba(0,0,0,.4),
    0 0 20px rgba(212,175,55,.3),
    inset 0 1px 0 rgba(212,175,55,.2);
}
#otpResendBtn { display: block; margin: 14px auto 0; color: var(--gold); }
#recaptcha-container { margin-top: 10px; }

/* ============================================
   ✦ PASSWORD SHOW/HIDE + STRENGTH METER ✦
   ============================================ */
.password-wrap {
  position: relative;
  display: block;
}
.password-wrap input {
  padding-inline-end: 48px !important;
  width: 100%;
}
.pw-toggle {
  position: absolute;
  top: 50%;
  inset-inline-end: 10px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.30);
  border-radius: 8px;
  color: var(--gold);
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
}
.pw-toggle:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 4px 14px rgba(212,175,55,.35);
}
.pw-toggle svg { display: block; }
.pw-toggle svg.hidden { display: none; }

/* Live strength meter */
.pw-strength {
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(212,175,55,.20);
  border-radius: 10px;
}
.pw-strength-bar {
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pw-strength-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width .35s, background .35s;
}
.pw-strength-bar .sw-1 { background: linear-gradient(90deg, #c0392b, #e74c3c); }
.pw-strength-bar .sw-2 { background: linear-gradient(90deg, #e67e22, #f39c12); }
.pw-strength-bar .sw-3 { background: linear-gradient(90deg, #f39c12, var(--gold)); }
.pw-strength-bar .sw-4 { background: linear-gradient(90deg, var(--gold), var(--gold-2)); box-shadow: 0 0 10px rgba(212,175,55,.40); }
.pw-strength-bar .sw-5 { background: linear-gradient(90deg, #6dd66d, #1ea54e); box-shadow: 0 0 14px rgba(109,214,109,.45); }

.pw-strength-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pw-strength-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
}
.pw-strength-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pw-strength-rules li {
  font-size: 10px;
  padding: 2px 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 100px;
  color: var(--muted);
  letter-spacing: .5px;
  transition: all .25s;
}
.pw-strength-rules li.ok {
  background: rgba(109,214,109,.15);
  border-color: #6dd66d;
  color: #6dd66d;
}

/* Field hint (used by email live check) */
.field-hint {
  margin-top: 6px;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  letter-spacing: .3px;
  animation: qrFadeIn .3s ease;
}
.field-hint.warn {
  background: rgba(192,57,43,.10);
  border: 1px solid rgba(255,107,94,.40);
  color: #ff6b5e;
}
.field-hint.ok {
  background: rgba(109,214,109,.10);
  border: 1px solid rgba(109,214,109,.40);
  color: #6dd66d;
}

/* ============================================
   ✦ USER CHAT MODAL — Luxury Auto-Open ✦
   ============================================ */
.user-chat-modal .modal-backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: backdropFadeIn .5s ease;
}
.user-chat-modal-card {
  width: min(560px, 96%);
  max-height: 92vh;
  margin: 0 auto;
  padding: 28px 22px !important;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.10) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #0a0908 100%) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 22px !important;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(.95);
  animation: authCardFadeIn .7s cubic-bezier(.22,.61,.36,1) .12s forwards;
  box-shadow:
    inset 0 0 0 1px rgba(212,175,55,.15),
    0 0 40px rgba(212,175,55,.30),
    0 0 120px rgba(212,175,55,.20),
    0 30px 70px -20px rgba(0,0,0,.85);
}
.user-chat-modal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}

.user-chat-modal-head {
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(212,175,55,.30);
  flex-shrink: 0;
}
.user-chat-modal-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #0a0a0a;
  font-weight: 900;
  box-shadow:
    0 8px 24px rgba(212,175,55,.50),
    inset 0 0 0 2px rgba(255,255,255,.18);
  animation: phoneRing 2.5s ease-in-out infinite;
}
.user-chat-modal-eyebrow {
  display: inline-block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
  padding: 3px 12px;
  border: 1px solid rgba(212,175,55,.40);
  border-radius: 100px;
}
.user-chat-modal-head h2 {
  font-family: var(--font-display);
  font-size: 22px;
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4px 0 4px;
}
.user-chat-modal-head p { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.user-chat-modal-card #modalChatList {
  flex: 1;
  min-height: 200px;
  max-height: 50vh;
  overflow-y: auto;
  padding: 8px 4px;
  margin-bottom: 10px;
}
.user-chat-modal-card #modalChatList::-webkit-scrollbar { width: 0; }

/* ============================================
   ✦ USER BOT QUICK REPLIES ✦
   ============================================ */
.user-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 6px;
  border-top: 1px dashed rgba(212,175,55,.20);
}
.user-qr-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.03));
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 100px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.user-qr-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212,175,55,.40);
}
.user-qr-btn.user-qr-sent {
  background: linear-gradient(135deg, rgba(109,214,109,.12), rgba(109,214,109,.02));
  border-color: rgba(109,214,109,.45);
  color: #6dd66d;
}

/* ✦ Buttons show by default; cooldown locks them all for 30s after a click ✦ */
.staged-replies .qr-stage {
  display: none;
}
.staged-replies .qr-stage.is-shown {
  display: inline-flex;
  animation: qrFadeIn .45s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes qrFadeIn {
  from { opacity: 0; transform: translateY(6px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* During cooldown all buttons appear dimmed and disabled */
.staged-replies .qr-stage.is-cooldown {
  opacity: .45;
  filter: saturate(.6);
  cursor: not-allowed;
  pointer-events: none;
}
.staged-replies .qr-stage.is-cooldown:hover {
  transform: none;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.03));
  color: var(--gold-2);
  box-shadow: none;
}

/* Countdown hint label */
.qr-next-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  background: rgba(212,175,55,.08);
  border: 1px dashed rgba(212,175,55,.30);
  border-radius: 100px;
  opacity: .8;
  animation: hintPulse 1.6s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}
.qr-next-hint .qr-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: hintPulse 1s ease-in-out infinite;
}
.user-qr-btn.user-qr-sent:hover {
  background: linear-gradient(135deg, #6dd66d, #1ea54e);
  color: #0a0a0a;
  border-color: #6dd66d;
  box-shadow: 0 6px 16px rgba(109,214,109,.40);
}

/* ============================================
   ✦ BOT MESSAGE STYLE ✦
   ============================================ */
.bot-msg {
  position: relative;
  padding: 14px 16px;
  background: linear-gradient(135deg, #14110b, #0a0908);
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 14px;
  max-width: 320px;
  line-height: 1.5;
  font-size: 13px;
}
.bot-msg b { color: var(--gold-2); font-weight: 700; direction: ltr; }
.bot-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.35);
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* Personal top-up card (one row only) */
.topup-personal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.03));
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.topup-personal .topup-usd { font-size: 22px; color: #88ccff; }
.topup-personal .topup-arrow { font-size: 18px; color: var(--gold); }
.topup-personal .topup-iqd { font-size: 22px; color: var(--gold-2); text-shadow: 0 0 20px rgba(212,175,55,.30); }

/* ============================================
   ✦ ADMIN PROOF VERIFY BUTTONS ✦
   ============================================ */
.proof-verify-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 4px 2px;
}
.proof-verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.proof-verify-btn.ok {
  background: linear-gradient(135deg, rgba(109,214,109,.15), rgba(109,214,109,.05));
  border: 1px solid #6dd66d;
  color: #6dd66d;
}
.proof-verify-btn.ok:hover {
  background: linear-gradient(135deg, #6dd66d, #1ea54e);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(109,214,109,.45);
}
.proof-verify-btn.bad {
  background: linear-gradient(135deg, rgba(192,57,43,.15), rgba(192,57,43,.05));
  border: 1px solid #c0392b;
  color: #ff6b5e;
}
.proof-verify-btn.bad:hover {
  background: linear-gradient(135deg, #c0392b, #8b2818);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(192,57,43,.45);
}

.proof-verdict-tag {
  display: inline-block;
  margin: 8px 4px 2px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.proof-verdict-tag.ok { background: rgba(109,214,109,.15); color: #6dd66d; border: 1px solid #6dd66d; }
.proof-verdict-tag.bad { background: rgba(192,57,43,.15); color: #ff6b5e; border: 1px solid #c0392b; }

.proof-verdict {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}
.proof-verdict.ok { background: linear-gradient(135deg, rgba(109,214,109,.18), rgba(109,214,109,.03)); border: 1px solid #6dd66d; color: #6dd66d; }
.proof-verdict.bad { background: linear-gradient(135deg, rgba(192,57,43,.18), rgba(192,57,43,.03)); border: 1px solid #c0392b; color: #ff6b5e; }

@media (max-width: 600px) {
  .user-chat-modal-card { padding: 22px 14px !important; }
  .user-chat-modal-card #modalChatList { max-height: 42vh; }
  .user-qr-btn { font-size: 11px; padding: 7px 12px; }
  .topup-personal-row { gap: 10px; padding: 14px; }
  .topup-personal .topup-usd, .topup-personal .topup-iqd { font-size: 18px; }
}

/* ============================================
   ✦ ADMIN QUICK-REPLY BUTTONS ✦
   ============================================ */
.admin-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(212,175,55,.05), transparent);
  border-top: 1px dashed rgba(212,175,55,.20);
}
.quick-reply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 100px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
}
.quick-reply-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,175,55,.40);
}
.quick-reply-btn.qr-photo { color: #88ccff; border-color: rgba(136,204,255,.40); background: linear-gradient(135deg, rgba(51,153,255,.10), rgba(51,153,255,.02)); }
.quick-reply-btn.qr-photo:hover { background: linear-gradient(135deg, #33ccff, #0a7fbf); color: #fff; border-color: #33ccff; box-shadow: 0 6px 18px rgba(51,153,255,.40); }
.quick-reply-btn.qr-confirm { color: #6dd66d; border-color: rgba(109,214,109,.40); background: linear-gradient(135deg, rgba(109,214,109,.10), rgba(109,214,109,.02)); }
.quick-reply-btn.qr-confirm:hover { background: linear-gradient(135deg, #6dd66d, #1ea54e); color: #0a0a0a; border-color: #6dd66d; box-shadow: 0 6px 18px rgba(109,214,109,.40); }
.qr-icon { font-size: 15px; }

/* ============================================
   ✦ TOP-UP OFFER CARD (in chat) ✦
   ============================================ */
.topup-card {
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.18) 0%, transparent 60%),
    linear-gradient(135deg, #14110b 0%, #0a0908 100%);
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  padding: 20px;
  max-width: 360px;
  box-shadow:
    0 12px 30px -10px rgba(0,0,0,.85),
    0 0 30px rgba(212,175,55,.20),
    inset 0 0 0 1px rgba(212,175,55,.15);
  position: relative;
  overflow: hidden;
  animation: topupReveal .6s cubic-bezier(.22,.61,.36,1);
}
@keyframes topupReveal {
  from { opacity: 0; transform: translateY(15px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
.topup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}
.topup-header { text-align: center; margin-bottom: 14px; }
.topup-crown {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(212,175,55,.55);
}
.topup-header h4 {
  font-family: var(--font-display);
  font-size: 20px;
  background: linear-gradient(120deg, #fff, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2px;
}
.topup-header p { font-size: 12px; color: var(--muted); letter-spacing: 1px; }

.topup-fib {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(212,175,55,.20), rgba(212,175,55,.05));
  border: 1px dashed var(--gold);
  border-radius: 12px;
  margin-bottom: 14px;
}
.topup-fib-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.topup-fib-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 1px;
  direction: ltr;
}

.topup-prices {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(0,0,0,.40);
  border-radius: 10px;
}
.topup-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s;
}
.topup-price-row:hover { background: rgba(212,175,55,.10); }
.topup-usd {
  font-family: var(--font-display);
  color: #88ccff;
  font-size: 15px;
  font-weight: 700;
}
.topup-arrow {
  color: var(--gold);
  font-size: 14px;
}
.topup-iqd {
  font-family: var(--font-display);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 700;
  text-align: end;
  direction: ltr;
}
.topup-iqd small { font-size: 10px; opacity: .7; margin-inline-start: 2px; }
.topup-footer {
  text-align: center;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  padding-top: 10px;
  border-top: 1px dashed rgba(212,175,55,.20);
}

/* ============================================
   ✦ ASK FOR PROOF + PAYMENT CONFIRM CARDS ✦
   ============================================ */
.ask-proof-card, .payment-confirm-card {
  text-align: center;
  padding: 22px 18px;
  background: linear-gradient(135deg, #14110b, #0a0908);
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.85), 0 0 25px rgba(212,175,55,.18);
  animation: topupReveal .6s cubic-bezier(.22,.61,.36,1);
}
.payment-confirm-card { border-color: #6dd66d; box-shadow: 0 12px 30px -10px rgba(0,0,0,.85), 0 0 25px rgba(109,214,109,.25); }
.ask-proof-icon, .payment-confirm-check {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(212,175,55,.45);
}
.payment-confirm-check {
  background: linear-gradient(135deg, #6dd66d, #1ea54e);
  color: #0a0a0a;
  box-shadow: 0 8px 24px rgba(109,214,109,.45);
  animation: phoneRing 2s ease-in-out infinite;
}
.ask-proof-card h4, .payment-confirm-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}
.payment-confirm-card h4 { color: #6dd66d; }
.ask-proof-card p, .payment-confirm-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   ✦ CHAT PHOTO MESSAGE + ATTACH BUTTON ✦
   ============================================ */
.chat-photo-bubble {
  padding: 6px !important;
  background: rgba(0,0,0,.30) !important;
  border: 1px solid rgba(212,175,55,.30) !important;
  max-width: 240px;
  overflow: hidden;
}
.chat-photo {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
  display: block;
  transition: transform .25s;
}
.chat-photo:hover { transform: scale(1.02); }
.chat-photo-label {
  display: block;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  padding: 6px 4px 2px;
  text-align: center;
}

.luxury-chat-attach {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  transition: all .25s;
  -webkit-tap-highlight-color: transparent;
}
.luxury-chat-attach:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(212,175,55,.45);
}
.luxury-chat-attach:active { transform: scale(.95); }

/* ============================================
   ✦ FULL-SCREEN PHOTO LIGHTBOX ✦
   ============================================ */
.chat-photo-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: grid; place-items: center;
  padding: 30px;
  animation: backdropFadeIn .35s ease;
}
.chat-photo-lightbox.hidden { display: none; }
.chat-photo-lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(20px);
}
.chat-photo-lightbox-img {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 16px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,.9), 0 0 80px rgba(212,175,55,.25);
  animation: topupReveal .45s cubic-bezier(.22,.61,.36,1);
}
.chat-photo-lightbox-close {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,.65);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 1;
  transition: all .25s;
}
.chat-photo-lightbox-close:hover {
  background: var(--gold);
  color: #0a0a0a;
  transform: rotate(90deg);
}

/* ============================================
   ✦ LUXURY LANGUAGE SELECTOR (Settings) ✦
   ============================================ */
.lang-luxe-card {
  position: relative;
  padding: 24px 22px !important;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%) !important;
  border: 1.5px solid rgba(212,175,55,.30) !important;
  border-radius: 20px !important;
  overflow: hidden;
}
.lang-luxe-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  opacity: .6;
}
.lang-luxe-head {
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed rgba(212,175,55,.25);
}
.lang-luxe-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 6px;
  animation: ribbonSparkle 3s ease-in-out infinite;
}
.lang-luxe-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  background: linear-gradient(120deg, var(--text) 30%, var(--gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.lang-luxe-head p { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

.lang-luxe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lang-luxe-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.06), transparent 60%),
    linear-gradient(180deg, var(--bg-2), #08070a);
  border: 1.5px solid rgba(212,175,55,.22);
  border-radius: 16px;
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  transition: all .3s cubic-bezier(.22,.61,.36,1);
  -webkit-tap-highlight-color: transparent;
}
.lang-luxe-btn::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212,175,55,.12), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.lang-luxe-btn:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow:
    0 12px 28px -10px rgba(0,0,0,.85),
    0 0 30px rgba(212,175,55,.18);
}
.lang-luxe-btn:hover::before { opacity: 1; animation: goldBorderSpin 6s linear infinite; }
.lang-luxe-btn:active { transform: translateY(-1px) scale(.98); }

.lang-luxe-flag {
  position: relative;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  padding: 4px;
  background: rgba(0,0,0,.40);
  box-shadow:
    inset 0 0 0 1.5px rgba(212,175,55,.45),
    0 6px 18px rgba(0,0,0,.55);
  transition: all .3s;
}
.lang-luxe-btn:hover .lang-luxe-flag {
  box-shadow:
    inset 0 0 0 1.5px var(--gold),
    0 8px 22px rgba(212,175,55,.30);
  transform: scale(1.05) rotate(-3deg);
}
.lang-luxe-flag svg { display: block; border-radius: 50%; }

.lang-luxe-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  letter-spacing: .5px;
}
.lang-luxe-native {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.lang-luxe-check {
  position: absolute;
  top: 8px; inset-inline-end: 10px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #0a0a0a;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(212,175,55,.45);
  opacity: 0;
  transform: scale(.5);
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

/* Active state — selected language */
.lang-luxe-btn.active {
  border-color: var(--gold);
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(180deg, #14110b, #0a0908);
  box-shadow:
    0 10px 30px -10px rgba(0,0,0,.85),
    0 0 35px rgba(212,175,55,.30),
    inset 0 0 0 1px rgba(212,175,55,.20);
}
.lang-luxe-btn.active .lang-luxe-check {
  opacity: 1;
  transform: scale(1);
}
.lang-luxe-btn.active .lang-luxe-flag {
  box-shadow:
    inset 0 0 0 2px var(--gold),
    0 8px 24px rgba(212,175,55,.40);
}

@media (max-width: 480px) {
  .lang-luxe-grid { gap: 10px; }
  .lang-luxe-btn { padding: 14px 8px; }
  .lang-luxe-flag { width: 50px; height: 50px; }
  .lang-luxe-name { font-size: 14px; }
}

/* ✦ HIDDEN SUPER-ADMIN TAP ZONE ✦
   52×52 box in the top corner of Settings — invisible to casual users.
   7 rapid taps within 3 seconds opens the super admin route.
   Includes a 3px gold dot (top-right RTL / top-left LTR) so YOU can find it,
   barely visible to anyone else. */
#secretTapZone {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 52px;
  height: 52px;
  background: transparent;
  z-index: 50;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
/* Tiny gold dot — only you'll notice it */
#secretTapZone::after {
  content: '';
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .35;
  box-shadow: 0 0 4px rgba(212,175,55,.4);
  pointer-events: none;
}
#settings { position: relative; }

/* ============================================
   ✦ BOOKING FORM — Luxury Reservation ✦
   ============================================ */
#bookingForm.card {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, #100d08 100%);
  border: 1.5px solid rgba(212,175,55,.30);
  border-radius: 22px;
  padding: 32px 28px !important;
  box-shadow:
    0 24px 60px -20px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(212,175,55,.12);
  overflow: hidden;
}
#bookingForm.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  opacity: .7;
}

/* Luxe labels */
#bookingForm .form-field label {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

/* Luxe inputs/selects/textarea */
#bookingForm .form-field input,
#bookingForm .form-field select,
#bookingForm .form-field textarea {
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.20)),
    var(--bg-2);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font: inherit;
  transition: all .25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
#bookingForm .form-field input::placeholder,
#bookingForm .form-field textarea::placeholder {
  color: rgba(154,154,154,.55);
  font-style: italic;
}
#bookingForm .form-field input:focus,
#bookingForm .form-field select:focus,
#bookingForm .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(212,175,55,.18),
    0 6px 20px rgba(212,175,55,.18),
    inset 0 1px 0 rgba(212,175,55,.10);
  transform: translateY(-1px);
}

/* Calendar icon gold */
#bookingForm input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(74%) sepia(64%) saturate(537%) hue-rotate(7deg) brightness(94%) contrast(89%);
  cursor: pointer;
  opacity: .8;
}

/* Perks banner — animated shimmer + double border */
#bookingForm .booking-perks {
  position: relative;
  margin-top: 14px;
  padding: 22px;
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,.18) 0%, transparent 50%),
    linear-gradient(135deg, rgba(212,175,55,.10), rgba(212,175,55,.02));
  border: 1.5px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 24px rgba(212,175,55,.12),
    inset 0 0 0 1px rgba(212,175,55,.10);
}
#bookingForm .booking-perks::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(212,175,55,.10) 90deg, transparent 180deg);
  animation: goldBorderSpin 12s linear infinite;
  pointer-events: none;
  opacity: .4;
}
#bookingForm .perks-title {
  position: relative;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(212,175,55,.30);
  margin-bottom: 12px;
  z-index: 1;
}
#bookingForm .perk-item {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: rgba(0,0,0,.30);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  transition: all .25s;
}
body[dir="rtl"] #bookingForm .perk-item {
  border-left: none;
  border-right: 3px solid var(--gold);
}
#bookingForm .perk-item:hover {
  background: linear-gradient(90deg, rgba(212,175,55,.10), rgba(0,0,0,.30));
  transform: translateX(-3px);
}
body[dir="rtl"] #bookingForm .perk-item:hover { transform: translateX(3px); }

/* Summary — sticky luxury panel */
#bookingForm .booking-summary {
  position: relative;
  margin-top: 14px;
  padding: 26px;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.06) 0%, transparent 70%),
    linear-gradient(135deg, #14110b 0%, #08070a 100%);
  border: 1px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 14px 40px -15px rgba(0,0,0,.85);
}
#bookingForm .booking-summary h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(212,175,55,.30);
  background: linear-gradient(120deg, var(--text) 20%, var(--gold) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#bookingForm .summary-row {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(212,175,55,.10);
  font-size: 14px;
}
#bookingForm .summary-row:last-child { border-bottom: none; }
#bookingForm .summary-row strong {
  font-family: var(--font-display);
  color: var(--gold-2);
  font-size: 17px;
}
#bookingForm .summary-row.total {
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.03));
  border: 1px solid var(--gold);
  border-radius: 12px;
  font-size: 18px;
  letter-spacing: 1px;
}
#bookingForm .summary-row.total strong {
  font-size: 26px;
  background: linear-gradient(120deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(212,175,55,.30);
}

/* Confirm button — premium gradient with shimmer */
#bookingForm button[type="submit"].btn-gold {
  position: relative;
  margin-top: 18px;
  padding: 18px 28px;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  color: #0a0a0a;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 14px 32px rgba(212,175,55,.45),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -2px 0 rgba(0,0,0,.20);
  transition: all .3s;
}
#bookingForm button[type="submit"].btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transition: left .9s;
  pointer-events: none;
}
#bookingForm button[type="submit"].btn-gold:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 20px 44px rgba(212,175,55,.60),
    0 0 50px rgba(244,209,96,.25),
    inset 0 1px 0 rgba(255,255,255,.55);
}
#bookingForm button[type="submit"].btn-gold:hover::before { left: 100%; }
#bookingForm button[type="submit"].btn-gold:active { transform: translateY(-1px) scale(.99); }

/* Section head polish for booking */
#booking .section-head h2 {
  background: linear-gradient(120deg, var(--text) 25%, var(--gold) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
  #bookingForm.card { padding: 24px 18px !important; }
  #bookingForm .booking-summary { padding: 20px; }
  #bookingForm .booking-summary h3 { font-size: 18px; }
  #bookingForm .summary-row.total strong { font-size: 22px; }
}
