/* Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,500&display=swap');

:root {
  --bg-primary: #090a0f;
  --bg-secondary: #121420;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-card: rgba(255, 255, 255, 0.07);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  /* Luxury Color Palette */
  --accent-pink: #ff2a74;
  --accent-pink-glow: rgba(255, 42, 116, 0.4);
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.3);
  
  /* Brand/Action Colors */
  --btn-whatsapp: #25d366;
  --btn-pay: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 50% 0%, #1c152a 0%, var(--bg-primary) 70%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #2d2f3f;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-pink);
}

/* Glass Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px var(--accent-pink-glow);
}

.three-dots-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-pink);
  background: rgba(255, 42, 116, 0.05);
  border: 1px solid rgba(255, 42, 116, 0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 15px rgba(255, 42, 116, 0.05);
}

.three-dots-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--accent-pink);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px var(--accent-pink-glow);
}

/* Main Container to pad sections */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Sections Base Styling */
section {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-gold));
}

section h1, section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.5px;
  color: #ffffff;
}

section h2 {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2.5rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 3px;
  background: var(--accent-pink);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-pink);
}

/* About Section */
.about {
  text-align: center;
  background: radial-gradient(circle at 10% 20%, rgba(255, 42, 116, 0.08) 0%, transparent 40%), var(--bg-card);
}

.about p {
  max-width: 750px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: #cbd5e1;
  font-weight: 300;
  line-height: 1.8;
}

.translate-btn {
  background: rgba(255, 42, 116, 0.05);
  border: 1.5px solid rgba(255, 42, 116, 0.3);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(255, 42, 116, 0.1);
  outline: none;
  margin-left: 0.8rem;
  vertical-align: middle;
}

.translate-btn:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 0 15px var(--accent-pink);
}

.translate-btn.active {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  color: #fff;
}

.translate-btn svg {
  color: var(--accent-pink);
  transition: all 0.3s ease;
}

.translate-btn:hover svg {
  color: #fff;
}

.translate-btn.active svg {
  color: #fff;
  transform: rotate(180deg);
}

.badge-container {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: #34d399;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 42, 116, 0.4);
  box-shadow: 0 15px 35px rgba(255, 42, 116, 0.15);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.service-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px var(--accent-gold-glow);
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.pay-btn, .whatsapp-btn {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.pay-btn {
  background: linear-gradient(135deg, var(--btn-pay) 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.whatsapp-btn {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.05);
}

.whatsapp-btn:hover {
  background: var(--btn-whatsapp);
  border-color: var(--btn-whatsapp);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Payment Help & QR Section */
.qr-help {
  text-align: center;
  background: radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 40%), var(--bg-card);
}

.qr-help h3 {
  font-size: 1.5rem;
  color: var(--accent-pink);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.qr-help p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}

.qr-wrapper {
  background: white;
  padding: 1rem;
  display: inline-block;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
  border: 2px solid var(--accent-gold);
}

.qr-wrapper img {
  width: 180px;
  height: 180px;
  display: block;
  object-fit: contain;
}

.qr-screenshot-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: var(--btn-whatsapp);
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.qr-screenshot-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* Service Proof Gallery */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
}

.proof-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  background: var(--bg-secondary);
}

.proof-card:hover {
  transform: scale(1.05) rotate(1deg);
  border-color: var(--accent-pink);
  box-shadow: 0 15px 30px rgba(255, 42, 116, 0.2);
  z-index: 10;
}

.proof-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

/* Aadhaar verification section */
.aadhar-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%), var(--bg-card);
}

.aadhar-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.aadhar-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.aadhar-card-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.aadhar-card-wrapper:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.aadhar-card-wrapper h4 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  text-align: center;
  font-weight: 600;
}

.aadhar-card-wrapper img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Comments Section Styles */
.comments-section {
  max-width: 850px;
  margin: 0 auto 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.comment-input-area {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  padding: 1.2rem;
  border-radius: 16px;
}

.input-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-pink);
}

.comment-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comment-form textarea {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: all 0.3s ease;
}

.comment-form textarea:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 10px rgba(255, 42, 116, 0.2);
}

.comment-form button {
  align-self: flex-end;
  padding: 0.7rem 2rem;
  background: var(--accent-pink);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-pink-glow);
}

.comment-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 42, 116, 0.5);
}

/* Comment Thread Styles */
.comment {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comment:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comment img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
}

.comment-content {
  flex: 1;
}

.comment-header {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.comment-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.comment-text {
  color: #e2e8f0;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.like-btn, .reply-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
  user-select: none;
}

.like-btn:hover {
  color: var(--accent-gold);
}

.reply-btn:hover {
  color: var(--accent-pink);
}

/* Reply Box Inside Thread */
.reply-box {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.reply-box input {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-card);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: #fff;
  outline: none;
}

.reply-box input:focus {
  border-color: var(--accent-pink);
}

.reply-box button {
  background: #334155;
  color: white;
  border: none;
  padding: 0 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.reply-box button:hover {
  background: var(--accent-pink);
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-card);
  background: rgba(9, 10, 15, 0.9);
  padding: 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

button.three-dots-btn {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
}

/* Glassmorphic Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 60px;
  right: 0;
  background: rgba(18, 20, 32, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 42, 116, 0.25);
  border-radius: 16px;
  width: 210px;
  padding: 0.6rem;
  box-shadow: 0 15px 35px rgba(255, 42, 116, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 110;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dropdown-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 42, 116, 0.12);
  color: var(--accent-pink);
  padding-left: 1.2rem;
}

/* Premium Payment Modal Overlay */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(9, 10, 15, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.payment-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Box */
.modal-card {
  background: #121420;
  border: 1px solid rgba(255, 42, 116, 0.25);
  border-radius: 28px;
  width: 90%;
  max-width: 420px;
  padding: 2.2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px rgba(255, 42, 116, 0.2);
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-modal.active .modal-card {
  transform: scale(1) translateY(0);
}

/* Close Button */
.close-modal-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.close-modal-btn:hover {
  background: var(--accent-pink);
  color: #fff;
  border-color: transparent;
}

/* Title & Amount */
.modal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}

.modal-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-pink);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(255, 42, 116, 0.3);
}

/* QR Container */
.modal-qr-container {
  background: #fff;
  padding: 1rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 42, 116, 0.15);
}

.modal-qr-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
}

.modal-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Modal Instructions */
.modal-instruction {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem;
  border-radius: 18px;
  margin-top: 0.8rem;
}

.modal-instruction p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

/* WhatsApp Button inside Modal */
.modal-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--btn-whatsapp);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.modal-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  main {
    padding: 1rem 0.8rem;
  }
  
  section {
    padding: 2rem 1.2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
  }
  
  section h1, section h2 {
    font-size: 1.8rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .aadhar-card-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }
  
  .comments-section {
    padding: 2rem 1.2rem;
  }
}

/* Exclusive Media Section */
.exclusive-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.media-blur-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem;
  filter: blur(15px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}

@media (max-width: 768px) {
  .media-blur-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 1.5rem;
  }
}

.media-blur-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.media-blur-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-blur-item::after {
  content: '▶';
  position: absolute;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.media-blur-item.photo::after {
  content: '📸';
  font-size: 2rem;
}

.media-overlay {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background: radial-gradient(circle at center, rgba(18, 20, 32, 0.7) 0%, rgba(9, 10, 15, 0.95) 100%);
  z-index: 2;
}

.lock-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 42, 116, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.5s ease;
}

@media (max-width: 480px) {
  .lock-card {
    padding: 1.8rem 1.2rem;
  }
}

.lock-icon-wrapper {
  width: 62px;
  height: 62px;
  background: rgba(255, 42, 116, 0.1);
  border: 1.5px solid rgba(255, 42, 116, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-pink);
  box-shadow: 0 0 25px rgba(255, 42, 116, 0.2);
}

.lock-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.lock-card .badge-warning {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.05);
}

.lock-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.unlock-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.unlock-input {
  background: rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.95rem 1.2rem;
  color: #fff;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 2px;
  outline: none;
  transition: all 0.3s ease;
}

.unlock-input:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 15px rgba(255, 42, 116, 0.2);
}

.unlock-btn {
  background: linear-gradient(135deg, var(--accent-pink) 0%, #d91b5c 100%);
  color: white;
  border: none;
  padding: 0.95rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px var(--accent-pink-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.unlock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 42, 116, 0.4);
}

.unlock-msg {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  display: none;
  animation: fadeIn 0.4s ease;
}

.unlock-msg.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  display: block;
}

.unlock-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.8rem 1.6rem;
  background: var(--btn-whatsapp);
  color: #000;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.unlock-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.unlock-wa-btn svg {
  transition: transform 0.3s ease;
}

.unlock-wa-btn:hover svg {
  transform: scale(1.15) rotate(15deg);
}

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

.global-translate-btn {
  background: rgba(255, 42, 116, 0.08);
  border: 1px solid rgba(255, 42, 116, 0.35);
  color: var(--accent-pink);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(255, 42, 116, 0.15);
  outline: none;
}

.global-translate-btn:hover {
  background: var(--accent-pink);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 0 15px var(--accent-pink);
}

.global-translate-btn.active {
  background: var(--accent-gold);
  border-color: transparent;
  color: #000;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   Premium Welcome Preloader
   ========================================================================== */
.premium-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #090a0f;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

body.preloader-active {
  overflow: hidden;
  height: 100vh;
}

.preloader-content {
  position: relative;
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 4s infinite alternate ease-in-out;
}

.preloader-glow-circle.circle-1 {
  width: 250px;
  height: 250px;
  background: var(--accent-pink);
  top: -100px;
  left: -100px;
}

.preloader-glow-circle.circle-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-gold);
  bottom: -80px;
  right: -80px;
  animation-delay: 2s;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.1; }
  100% { transform: scale(1.1); opacity: 0.2; }
}

.preloader-logo {
  animation: logoIntro 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  transform: scale(0.5) rotate(-15deg);
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.preloader-text-wrapper {
  margin-top: 0.5rem;
}

.preloader-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0.2rem !important;
  left: unset !important;
  transform: unset !important;
  opacity: 0;
  animation: textFadeIn 0.8s ease-out 0.4s forwards;
}

.preloader-subtitle {
  font-family: 'Playfair Display', serif !important;
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #ffffff 20%, var(--accent-pink) 60%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8rem !important;
  left: unset !important;
  transform: unset !important;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 15px rgba(255, 42, 116, 0.2));
  opacity: 0;
  animation: textFadeIn 1s ease-out 0.7s forwards;
}

.preloader-subtitle::after {
  display: none !important;
}

.preloader-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 3px;
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.05);
  opacity: 0;
  animation: textFadeIn 0.8s ease-out 1s forwards;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-bar-container {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
}

.preloader-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-gold));
  border-radius: 10px;
  box-shadow: 0 0 8px var(--accent-pink);
  animation: progressFill 2.2s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

@keyframes progressFill {
  0% { width: 0%; }
  50% { width: 40%; }
  80% { width: 85%; }
  100% { width: 100%; }
}

.preloader-fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}