/* === LinkoraChat Styles — Black & Gold Theme === */
:root {
  --primary: #f9ca24;
  --primary-dark: #f0932b;
  --gold: #f9ca24;
  --gold-dim: rgba(249,202,36,0.15);
  --dark: #0a0a0a;
  --darker: #050505;
  --card: #141414;
  --card-hover: #1a1a1a;
  --text: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --success: #00b894;
  --danger: #e74c3c;
  --border: #222222;
  --radius: 14px;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior: none;
}

a { color: var(--gold); text-decoration: none; }
.gold { color: var(--gold); }
.muted { color: var(--text-muted); }
.hidden { display: none !important; }

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  padding-top: calc(10px + env(safe-area-inset-top, 0px));
  background: var(--darker);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.3px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.nav-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  transform: translateY(-1px);
}
.nav-item:active { transform: translateY(0); }
.nav-item .nav-icon { font-size: 1.05rem; line-height: 1; }

.nav-user-info {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  margin-right: 2px;
}
.nav-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.nav-username {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-chat-link {
  position: relative;
  font-size: 1.15rem;
  padding: 6px 8px;
}
.nav-notif-badge {
  position: absolute;
  top: 0px; right: 0px;
  background: var(--danger);
  color: #fff;
  font-size: 0.6rem; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  border: 2px solid var(--darker);
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 2px;
}

.nav-logout {
  color: var(--text-muted) !important;
}
.nav-logout:hover {
  color: var(--danger) !important;
  background: rgba(231,76,60,0.1) !important;
}

/* Logged-out nav */
.nav-link { color: var(--text-secondary); font-size: 0.9rem; transition: color 0.2s; text-decoration: none; }
.nav-link:hover { color: var(--gold); }

@media (max-width: 480px) {
  .navbar { padding: 8px 12px; padding-top: calc(8px + env(safe-area-inset-top, 0px)); }
  .logo { font-size: 1.1rem; }
  .nav-links { gap: 3px; }
  .nav-item { padding: 5px 6px; font-size: 0.72rem; }
  .nav-item .nav-label { display: none; }
  .nav-item .nav-icon { font-size: 1.1rem; }
  .nav-username { max-width: 55px; font-size: 0.75rem; }
  .nav-avatar { width: 22px; height: 22px; font-size: 0.6rem; }
  .nav-user-info { padding: 3px 6px; gap: 4px; }
  .nav-chat-link { font-size: 1.1rem; padding: 5px 6px; }
  .nav-divider { height: 16px; }
}

/* === Container === */
.container { max-width: 1200px; margin: 0 auto; padding: 20px; padding-top: 80px; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 24px; border: none; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: transform 0.1s, opacity 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: #e6b800; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--primary-dark)); color: #000; font-weight: 700; }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold-dim); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-text { }
.btn-loading { }

/* === Hero Section === */
.hero-section { text-align: center; padding: 40px 20px 20px; }
.hero-section h1 { font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.hero-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* === Category Tabs === */
.category-tabs {
  display: flex; gap: 8px;
  padding: 0 4px; margin-bottom: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-tab {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 12px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.78rem; font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.cat-tab .cat-icon { font-size: 1.4rem; }
.cat-tab:hover { border-color: var(--gold); color: var(--gold); }
.cat-tab.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* === Filter Bar === */
.filter-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.filter-bar select {
  flex: 1; max-width: 250px;
  padding: 10px 14px;
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  appearance: auto;
}
.profile-count {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: auto;
}

/* === Profile Grid === */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.profile-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(249,202,36,0.08);
  border-color: var(--gold);
}
.profile-card.boosted { border-color: var(--gold); }

.profile-card-image-wrap { position: relative; height: 240px; overflow: hidden; }
.profile-card-image { width: 100%; height: 100%; object-fit: cover; }
.profile-card-image.blurred { filter: blur(15px); }
.blur-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4);
  pointer-events: none;
}
.blur-overlay span {
  background: rgba(0,0,0,0.7);
  color: #fff; padding: 8px 16px;
  border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}
.boosted-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: #000;
  padding: 4px 10px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 700;
}
.country-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.7); color: #fff;
  padding: 4px 10px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 600;
}

.profile-card-info { padding: 14px; }
.profile-card-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.verified-badge {
  display: inline-block; background: var(--gold); color: #000;
  font-size: 0.7rem; padding: 1px 6px; border-radius: 4px;
  font-weight: 700; margin-left: 4px; vertical-align: middle;
}
.profile-card-detail { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 4px; }
.profile-card-bio {
  color: var(--text-secondary); font-size: 0.85rem;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.unlock-btn {
  width: 100%; margin-top: 8px; padding: 10px;
  background: var(--gold); color: #000;
  border: none; border-radius: 8px;
  font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.unlock-btn:hover { background: #e6b800; }
.unlock-btn.unlocked { background: var(--success); color: #fff; }
.signup-btn { background: var(--gold); color: #000; }

/* === Pagination === */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.page-btn {
  padding: 8px 14px; background: var(--card); color: var(--text-secondary);
  border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
}
.page-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* === Premium Section === */
.age-gate {
  display: flex; justify-content: center; align-items: center;
  min-height: 300px; padding: 20px;
}
.age-gate-card {
  background: var(--card); border: 2px solid var(--danger);
  border-radius: 20px; padding: 40px 30px; text-align: center;
  max-width: 400px; width: 100%;
}
.age-icon { font-size: 3rem; margin-bottom: 16px; }
.age-gate-card h2 { margin-bottom: 12px; font-size: 1.3rem; }
.age-gate-card p { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.age-gate-actions { display: flex; flex-direction: column; gap: 10px; }

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.premium-card {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.premium-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.premium-thumb {
  width: 100%; height: 180px; object-fit: cover;
  background: #1a1a1a;
}
.premium-thumb-placeholder {
  width: 100%; height: 180px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a1a00);
  font-size: 3rem;
}
.premium-card-info { padding: 14px; }
.premium-card-title { font-weight: 700; margin-bottom: 6px; }
.premium-card-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.premium-card-footer { display: flex; justify-content: space-between; align-items: center; }
.premium-price { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.premium-badge-purchased {
  background: var(--success); color: #fff;
  padding: 4px 10px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
}

/* === Online Males Section (female view) === */
.online-header { text-align: center; padding: 30px 20px 20px; }
.online-header h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.online-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.online-count-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); padding: 8px 16px; border-radius: 20px;
  font-size: 0.9rem; border: 1px solid var(--border);
}
.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.online-males-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; padding: 0 10px;
}
.online-male-card {
  background: var(--card); border-radius: 16px;
  padding: 20px 12px; text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.online-male-card.tappable { cursor: pointer; }
.online-male-card:hover { border-color: var(--gold); }
.online-male-card.has-unlocked { border-color: var(--success); }
.online-male-card.is-offline { opacity: 0.6; }

.online-avatar { position: relative; display: inline-block; margin-bottom: 10px; }
.avatar-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--border); display: flex;
  align-items: center; justify-content: center;
}
.avatar-initial { font-size: 1.5rem; font-weight: 700; color: var(--text-muted); }
.avatar-circle-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.online-dot {
  position: absolute; bottom: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--success); border: 2px solid var(--card);
}
.offline-dot {
  position: absolute; bottom: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--text-muted); border: 2px solid var(--card);
}
.online-male-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.status-tag { font-size: 0.75rem; display: block; margin-bottom: 4px; }
.status-online { color: var(--success); }
.status-offline { color: var(--text-muted); }
.tap-hint { font-size: 0.75rem; color: var(--success); }
.lock-hint { font-size: 0.75rem; color: var(--text-muted); }

.no-online { text-align: center; padding: 60px 20px; }
.no-online-icon { font-size: 3rem; margin-bottom: 16px; }
.no-online h3 { margin-bottom: 8px; }
.no-online p { color: var(--text-muted); }

/* === Modal === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex; justify-content: center; align-items: center;
  z-index: 200; padding: 20px;
}
.modal {
  background: var(--card); border-radius: var(--radius);
  padding: 30px; max-width: 600px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  border: 1px solid var(--border);
}
.modal-close {
  position: absolute; top: 10px; right: 15px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.5rem; cursor: pointer;
}
.modal-close:hover { color: var(--gold); }

.modal-images { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 15px; }
.modal-images img { height: 250px; border-radius: 8px; object-fit: cover; }
.modal-images img.blurred { filter: blur(15px); }
.modal-blur-notice {
  text-align: center; padding: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(249,202,36,0.3);
  border-radius: 8px; color: var(--gold);
  font-size: 0.85rem; margin-bottom: 12px;
}
.modal-id { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.modal-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.modal-detail { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 4px; }
.modal-bio { color: var(--text-secondary); margin: 12px 0; line-height: 1.5; }
.modal-whatsapp {
  background: var(--success); color: #fff; padding: 12px;
  border-radius: 8px; text-align: center; font-weight: 600; margin-top: 12px;
}
.modal-actions { display: flex; gap: 10px; margin-top: 15px; }

/* === Payment Modal === */
.payment-modal {
  background: var(--card); border-radius: 20px;
  padding: 0; max-width: 380px; width: 100%;
  position: relative; overflow: hidden;
  animation: paymentSlideUp 0.3s ease;
  border: 1px solid var(--border);
}
@keyframes paymentSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.payment-modal .modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 1.3rem; width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.payment-modal .modal-close:hover { background: rgba(255,255,255,0.2); }
.payment-header {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary-dark) 100%);
  padding: 28px 24px 22px; text-align: center;
}
.payment-header h3 { font-size: 1.25rem; font-weight: 700; color: #000; margin-bottom: 4px; }
.payment-subtitle { color: rgba(0,0,0,0.6); font-size: 0.85rem; }
.payment-icon { font-size: 2.2rem; margin-bottom: 8px; }
.payment-amount-box {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; border-bottom: 1px solid var(--border);
}
.payment-label { color: var(--text-muted); font-size: 0.9rem; }
.payment-amount { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.payment-form { padding: 20px 24px 24px; }
.payment-input-label { display: block; color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 8px; font-weight: 500; }
.payment-input-wrapper {
  display: flex; align-items: center;
  background: var(--darker); border: 2px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.2s;
}
.payment-input-wrapper:focus-within { border-color: var(--gold); }
.payment-input-prefix { padding: 0 12px; font-size: 1.2rem; border-right: 1px solid var(--border); }
.payment-input {
  flex: 1; background: transparent; border: none; color: var(--text);
  font-size: 1.05rem; padding: 14px 12px; outline: none; font-family: inherit;
}
.payment-input::placeholder { color: var(--text-muted); }
.payment-error {
  color: var(--danger); font-size: 0.82rem; margin-top: 8px;
  padding: 8px 12px; background: rgba(231,76,60,0.1);
  border-radius: 8px; border: 1px solid rgba(231,76,60,0.2);
}
.payment-btn {
  margin-top: 16px; padding: 15px; font-size: 1.05rem; font-weight: 700;
  border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.payment-btn:active { transform: scale(0.98); }
.payment-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.2); border-top-color: #000;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.payment-note { color: var(--text-muted); font-size: 0.78rem; text-align: center; margin-top: 14px; line-height: 1.4; }

/* === Auth Pages === */
.auth-page {
  display: flex; justify-content: center; align-items: center;
  min-height: 80vh; position: relative; overflow: hidden;
}
.auth-card {
  background: var(--card); border-radius: var(--radius);
  padding: 30px; max-width: 420px; width: 100%;
  border: 1px solid var(--border); position: relative; z-index: 2;
}
.auth-card h2 { margin-bottom: 20px; text-align: center; }
.auth-form .form-group { margin-bottom: 16px; }

/* --- Login page glow card --- */
.login-glow {
  border: 1px solid rgba(255,215,0,0.25);
  box-shadow: 0 0 40px rgba(255,215,0,0.08), 0 8px 32px rgba(0,0,0,0.4);
}

/* --- Login header art --- */
.login-header-art { text-align: center; margin-bottom: 8px; }
.login-avatar-row {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 12px;
}
.login-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,105,180,0.15));
  border: 2px solid rgba(255,215,0,0.3);
  animation: avatarPulse 3s ease-in-out infinite;
}
.login-avatar.av1 { animation-delay: 0s; }
.login-avatar.av2 { animation-delay: 1s; font-size: 1.8rem; width: 58px; height: 58px; border-color: rgba(255,105,180,0.4); }
.login-avatar.av3 { animation-delay: 2s; }

@keyframes avatarPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,215,0,0.2); }
  50% { transform: scale(1.08); box-shadow: 0 0 18px 4px rgba(255,215,0,0.15); }
}

.login-tagline {
  color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px;
  background: linear-gradient(90deg, var(--gold), #ff69b4, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  to { background-position: 200% center; }
}

/* --- Floating bubbles --- */
.login-bubbles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.bubble {
  position: absolute; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  animation: floatBubble linear infinite;
  opacity: 0.7;
}
.bubble span { font-size: inherit; filter: drop-shadow(0 0 4px rgba(255,215,0,0.3)); }

.bubble-1  { width:60px;height:60px;font-size:1.8rem;left:5%;  top:15%; animation-duration:8s;  animation-delay:0s;   }
.bubble-2  { width:70px;height:70px;font-size:2.0rem;right:8%; top:10%; animation-duration:10s; animation-delay:1s;   }
.bubble-3  { width:50px;height:50px;font-size:1.5rem;left:12%; bottom:20%;animation-duration:9s; animation-delay:0.5s; }
.bubble-4  { width:45px;height:45px;font-size:1.4rem;right:15%;bottom:25%;animation-duration:7s; animation-delay:2s;   }
.bubble-5  { width:55px;height:55px;font-size:1.6rem;left:25%; top:5%;  animation-duration:11s; animation-delay:1.5s; }
.bubble-6  { width:40px;height:40px;font-size:1.3rem;right:25%;top:60%; animation-duration:8.5s;animation-delay:3s;   }
.bubble-7  { width:48px;height:48px;font-size:1.4rem;left:3%;  top:55%; animation-duration:9.5s;animation-delay:0.8s; }
.bubble-8  { width:42px;height:42px;font-size:1.3rem;right:3%; top:35%; animation-duration:7.5s;animation-delay:2.5s; }
.bubble-9  { width:52px;height:52px;font-size:1.5rem;left:18%; top:70%; animation-duration:10.5s;animation-delay:1.2s;}
.bubble-10 { width:38px;height:38px;font-size:1.2rem;right:18%;bottom:12%;animation-duration:8s;animation-delay:3.5s; }

@keyframes floatBubble {
  0%   { transform: translateY(0)   rotate(0deg)   scale(1);   opacity: 0.5; }
  25%  { transform: translateY(-30px) rotate(5deg)  scale(1.05); opacity: 0.8; }
  50%  { transform: translateY(-15px) rotate(-3deg) scale(0.95); opacity: 0.6; }
  75%  { transform: translateY(-40px) rotate(4deg)  scale(1.08); opacity: 0.9; }
  100% { transform: translateY(0)   rotate(0deg)   scale(1);   opacity: 0.5; }
}

/* Hide bubbles on very small screens to avoid clutter */
@media (max-width: 380px) {
  .login-bubbles { display: none; }
  .login-avatar { width: 44px; height: 44px; font-size: 1.3rem; }
  .login-avatar.av2 { width: 48px; height: 48px; }
}
.auth-form label { display: block; color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 6px; font-weight: 500; }
.auth-form input, .auth-form select, .auth-form textarea {
  width: 100%; padding: 12px; background: var(--darker);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 0.95rem; font-family: inherit;
}
.auth-form input:focus, .auth-form select:focus, .auth-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.auth-switch { text-align: center; margin-top: 16px; color: var(--text-muted); font-size: 0.9rem; }
.error-msg { color: var(--danger); font-size: 0.85rem; padding: 8px; background: rgba(231,76,60,0.1); border-radius: 8px; }
.subtitle { color: var(--text-muted); text-align: center; margin-bottom: 16px; font-size: 0.9rem; }

/* Gender Select */
.gender-select { display: flex; gap: 12px; }
.gender-option { flex: 1; }
.gender-option input[type="radio"] { display: none; }
.gender-btn {
  display: block; text-align: center; padding: 12px;
  background: var(--darker); border: 2px solid var(--border);
  border-radius: 10px; cursor: pointer; font-weight: 600;
  transition: all 0.2s;
}
.gender-option input:checked + .gender-btn {
  border-color: var(--gold); background: var(--gold-dim); color: var(--gold);
}

/* === Chat Page === */
.chat-container {
  display: flex;
  position: fixed;
  top: 60px;
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.chat-sidebar {
  width: 340px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; background: var(--darker);
}
.chat-sidebar-header {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.chat-sidebar-header h3 { font-size: 1.1rem; }

.conversation-list { flex: 1; overflow-y: auto; }
.conversation-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.2s;
}
.conversation-item:hover { background: var(--card); }
.conversation-item.active { background: var(--gold-dim); border-left: 3px solid var(--gold); }

.conv-avatar-wrap { position: relative; flex-shrink: 0; }
.conv-avatar-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.conv-avatar-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--border); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; color: var(--text-muted);
}
.conv-online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--success); border: 2px solid var(--darker);
}
.conv-info { flex: 1; min-width: 0; }
.conv-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.conv-last-msg { color: var(--text-muted); font-size: 0.82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-meta { text-align: right; flex-shrink: 0; }
.conv-time { color: var(--text-muted); font-size: 0.75rem; }
.unread-badge {
  background: var(--gold); color: #000;
  font-size: 0.7rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 4px;
}

.chat-window { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.chat-placeholder {
  flex: 1; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--darker);
}
.back-btn {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 1.3rem; cursor: pointer;
}
.chat-header-avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.chat-header-avatar-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--border); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; color: var(--text-muted); font-size: 0.95rem;
}
.chat-header-info { flex: 1; }
.chat-header-info span:first-child { display: block; font-weight: 600; font-size: 0.95rem; }
.chat-status { font-size: 0.78rem; color: var(--text-muted); }
.chat-status.online { color: var(--success); }
.header-online-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--success);
  margin-right: 4px; vertical-align: middle;
  animation: pulse 2s infinite;
}
.typing-indicator { color: var(--gold); font-style: italic; font-size: 0.8rem; }

.messages-container {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.message-bubble {
  max-width: 75%; padding: 10px 14px;
  border-radius: 16px; font-size: 0.92rem;
  word-wrap: break-word; position: relative;
}
.message-bubble.sent {
  align-self: flex-end;
  background: var(--gold); color: #000;
  border-bottom-right-radius: 4px;
}
.message-bubble.received {
  align-self: flex-start;
  background: var(--card); color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.msg-text { line-height: 1.4; }
.msg-footer { display: flex; justify-content: flex-end; align-items: center; gap: 4px; margin-top: 4px; }
.message-time { font-size: 0.7rem; opacity: 0.6; }
.msg-ticks { font-size: 0.75rem; }
.msg-ticks.delivered { color: rgba(0,0,0,0.4); }
.msg-ticks.read { color: #0984e3; }

.chat-input {
  display: flex; gap: 8px; padding: 12px 16px;
  border-top: 1px solid var(--border); background: var(--darker);
}
.chat-input input {
  flex: 1; padding: 12px 16px; background: var(--card);
  border: 1px solid var(--border); border-radius: 24px;
  color: var(--text); font-size: 0.92rem; outline: none;
}
.chat-input input:focus { border-color: var(--gold); }
.chat-input .btn { border-radius: 50%; width: 44px; height: 44px; padding: 0; font-size: 1.1rem; }

/* === Dashboard === */
.dashboard { max-width: 600px; margin: 0 auto; }
.balance-card {
  background: linear-gradient(135deg, #f9ca24 0%, #f0932b 50%, #e74c3c 100%);
  border-radius: var(--radius);
  padding: 30px; text-align: center; margin-bottom: 20px;
  color: #000;
}
.balance-label { font-size: 0.9rem; font-weight: 500; opacity: 0.8; }
.balance-amount { font-size: 2.2rem; font-weight: 800; margin: 8px 0 16px; }
.btn-gold { background: rgba(0,0,0,0.2); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.withdrawal-info { margin-top: 12px; font-size: 0.82rem; opacity: 0.8; }

.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.stat-card {
  background: var(--card); border-radius: var(--radius);
  padding: 20px; text-align: center;
  border: 1px solid var(--border);
}
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

.section-card {
  background: var(--card); border-radius: var(--radius);
  padding: 20px; margin-bottom: 16px;
  border: 1px solid var(--border);
}
.section-card h3 { font-size: 1rem; margin-bottom: 12px; }

.list-container { max-height: 200px; overflow-y: auto; }
.list-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.badge {
  padding: 3px 10px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-success { background: rgba(0,184,148,0.15); color: var(--success); }
.badge-warning { background: var(--gold-dim); color: var(--gold); }
.badge-danger { background: rgba(231,76,60,0.15); color: var(--danger); }

/* === Pricing Page === */
.pricing-page { max-width: 700px; margin: 0 auto; text-align: center; }
.pricing-page h2 { font-size: 1.6rem; margin-bottom: 8px; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pricing-card {
  background: var(--card); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  text-align: center;
}
.pricing-card.featured { border-color: var(--gold); }
.pricing-icon { font-size: 2rem; margin-bottom: 12px; }
.pricing-card h3 { margin-bottom: 8px; }
.price { font-size: 1.8rem; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.pricing-features { list-style: none; text-align: left; }
.pricing-features li { padding: 6px 0; color: var(--text-secondary); font-size: 0.9rem; }

.earnings-breakdown { margin-top: 30px; }
.breakdown-table { background: var(--card); border-radius: var(--radius); overflow: hidden; }
.breakdown-row {
  display: flex; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

/* === Profile Page === */
.profile-photo-section { text-align: center; margin-bottom: 20px; }
.profile-photo-wrap {
  position: relative; display: inline-block;
  width: 120px; height: 120px;
}
.profile-photo-placeholder {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--border); display: flex;
  align-items: center; justify-content: center;
}
.photo-initial { font-size: 2.5rem; color: var(--text-muted); }
.profile-photo-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.photo-upload-btn {
  position: absolute; bottom: 0; right: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; border: 3px solid var(--card);
}
.photo-hint { color: var(--text-muted); font-size: 0.85rem; margin-top: 8px; }
.preview-img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
.image-preview { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.existing-images-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.existing-img-item { position: relative; }
.existing-img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; }
.delete-img-btn {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--danger); color: #fff; border: none;
  font-size: 0.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* === Bottom Navigation === */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: flex; background: var(--darker);
  border-top: 1px solid var(--border);
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.bottom-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  padding: 10px; color: var(--text-muted);
  font-size: 0.72rem; text-decoration: none;
  transition: color 0.2s; position: relative;
}
.bottom-nav-item.active { color: var(--gold); }
.bottom-nav-item:hover { color: var(--gold); }
.nav-icon { font-size: 1.3rem; }
.bottom-chat-badge {
  position: absolute; top: 4px; right: 25%;
  background: var(--danger); color: #fff;
  font-size: 0.6rem; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* === Loading === */
.loading { text-align: center; padding: 40px; color: var(--text-muted); }

/* === Skeleton Loading === */
.skeleton-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}
.skeleton-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, var(--card) 25%, var(--card-hover) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-text {
  height: 14px;
  margin: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--border) 25%, var(--card-hover) 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-text.short { width: 60%; }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 1.5rem; }
  .profile-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .profile-card-image-wrap { height: 180px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .category-tabs { gap: 6px; }
  .cat-tab { padding: 10px 8px; font-size: 0.75rem; }
  .cat-tab .cat-icon { font-size: 1.1rem; }

  /* Chat responsive */
  .chat-sidebar { width: 100%; }
  .chat-sidebar.hidden-mobile { display: none; }
  .back-btn { display: block; }
  .chat-window { width: 100%; }
  .chat-container {
    position: fixed;
    top: 60px;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    left: 0; right: 0;
  }
}

@media (max-width: 480px) {
  .container { padding: 12px; padding-top: 70px; }
  .profile-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .profile-card-image-wrap { height: 150px; }
  .profile-card-info { padding: 10px; }
  .profile-card-name { font-size: 0.9rem; }
  .modal { padding: 20px; }
  .modal-images img { height: 180px; }
}

/* === Session Info Box (session modal) === */
.session-info-box {
  background: var(--darker);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.session-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.92rem;
}
.session-info-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.session-info-row .label { color: var(--text-muted); }
.session-info-row .value { font-weight: 700; color: var(--gold); }
.session-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* === Session Timer === */
.session-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 4px 12px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
}
.timer-icon { font-size: 1rem; }
.timer-text {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--success);
}
.timer-text.timer-warning { color: var(--primary-dark); animation: pulse 1s infinite; }
.timer-text.timer-expired { color: var(--danger); }

/* === Session Expired Banner === */
.session-expired-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(231,76,60,0.15), rgba(231,76,60,0.05));
  border: 1px solid rgba(231,76,60,0.3);
  border-radius: 12px;
  margin: 12px 16px;
}
.session-expired-banner span { color: var(--text-secondary); font-size: 0.9rem; }
.session-expired-banner .btn { white-space: nowrap; }

/* === Registration Fee Notice === */
.reg-fee-notice {
  background: var(--gold-dim);
  border: 1px solid rgba(249,202,36,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* === USA Profile Tags === */
.profile-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.profile-tag {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 0.68rem; font-weight: 700; padding: 2px 8px;
  border-radius: 10px; white-space: nowrap;
}
.tag-online { background: rgba(46,204,113,0.15); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.tag-active { background: rgba(52,152,219,0.15); color: #3498db; border: 1px solid rgba(52,152,219,0.3); }
.tag-new { background: rgba(249,202,36,0.15); color: var(--gold); border: 1px solid rgba(249,202,36,0.3); }

/* === USA Profile Card Enhancements === */
.country-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 8px;
  border-radius: 6px; backdrop-filter: blur(4px);
}
.online-badge-card {
  position: absolute; bottom: 8px; right: 8px;
  font-size: 0.9rem; filter: drop-shadow(0 0 4px rgba(46,204,113,0.6));
}
.profile-card-detail {
  color: var(--text-muted); font-size: 0.78rem; margin-top: 2px;
}
.profile-card-price {
  color: var(--gold); font-weight: 700; font-size: 0.85rem;
  margin-top: 4px;
}
.session-btn {
  width: 100%; padding: 8px; margin-top: 8px;
  background: linear-gradient(135deg, var(--gold), var(--primary-dark));
  color: #000; border: none; border-radius: 8px;
  font-weight: 700; font-size: 0.8rem; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.session-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,202,36,0.3); }
.signup-btn { background: var(--border); color: var(--text); }

/* === Modal Enhancements === */
.modal-detail {
  color: var(--text-muted); font-size: 0.9rem; margin: 4px 0;
}
.modal-online-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--text-muted); margin: 6px 0;
}
.modal-online-status.online { color: #2ecc71; }
.session-earning-hint {
  text-align: center; font-size: 0.82rem; color: var(--text-muted);
  margin-top: 8px;
}

/* === Chat Header Enhancements === */
.chat-header-right {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px; margin-left: auto;
}
.usa-time-display {
  font-size: 0.72rem; color: var(--text-muted);
  white-space: nowrap;
}
.chat-header-location {
  font-size: 0.72rem; color: var(--text-muted);
  display: block;
}
.header-online-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #2ecc71; display: inline-block;
  box-shadow: 0 0 6px rgba(46,204,113,0.6);
}
.chat-header-avatar { position: relative; }
.chat-header-avatar .header-online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px; border: 2px solid var(--darker);
}
.chat-status.online { color: #2ecc71; }

/* === Admin Photo Management === */
.admin-section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.admin-section-header h3 { margin: 0; }
.admin-desc { color: var(--text-muted); font-size: 0.85rem; }
.photo-upload-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; max-width: 600px;
}
.photo-profile-preview {
  padding: 10px; background: var(--darker);
  border-radius: 8px; margin-bottom: 12px; font-size: 0.9rem;
}
.admin-photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px; margin: 12px 0;
}
.admin-photo-item {
  position: relative; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
}
.admin-photo-item img { width: 100%; height: 100px; object-fit: cover; display: block; }
.admin-photo-item .btn { position: absolute; top: 4px; right: 4px; padding: 2px 6px; font-size: 0.7rem; }
.upload-status { margin-top: 10px; font-size: 0.85rem; }

/* === Admin Premium Content === */
.premium-form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; margin-bottom: 20px;
  max-width: 600px;
}
.premium-form-card h4 { margin: 0 0 16px; color: var(--gold); }
.form-actions { display: flex; gap: 10px; margin-top: 12px; }
.admin-premium-grid { display: flex; flex-direction: column; gap: 10px; }
.admin-premium-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px;
}
.admin-prem-thumb { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.admin-prem-thumb-placeholder {
  width: 60px; height: 60px; border-radius: 8px;
  background: var(--darker); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
}
.admin-prem-info {
  flex: 1; display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center; font-size: 0.85rem;
}
.admin-prem-actions { display: flex; gap: 6px; }
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}

/* === Session Earning Hint === */
.session-earning-hint {
  text-align: center;
  padding: 8px 12px;
  background: rgba(0,184,148,0.1);
  border: 1px solid rgba(0,184,148,0.2);
  border-radius: 8px;
  color: var(--success);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* === Session Button (profile card) === */
.session-btn {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.88rem;
}
.session-btn:hover { background: #e6b800; }

/* === Chat Placeholder Icon === */
.chat-placeholder-icon { font-size: 3rem; margin-bottom: 16px; }

/* === Expired Session in Sidebar === */
.conversation-item.expired-session { opacity: 0.5; }

/* === Earning Steps (dashboard) === */
.earning-steps { display: flex; flex-direction: column; gap: 12px; }
.earning-step {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}

/* === Unlock Button (replaces session-btn on cards) === */
.unlock-btn {
  width: 100%; padding: 10px; margin-top: 8px;
  background: linear-gradient(135deg, var(--gold), var(--primary-dark));
  color: #000; border: none; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.unlock-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,202,36,0.3); }
.unlock-btn.signup-btn { background: var(--border); color: var(--text); }

/* === Unlocked Contact === */
.unlocked-contact {
  background: rgba(0,184,148,0.1);
  border: 1px solid var(--success);
  border-radius: 12px;
  padding: 16px; margin-top: 12px;
  text-align: center;
}
.unlocked-contact h4 { color: var(--success); margin-bottom: 10px; }
.unlock-hint { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; text-align: center; }

/* === Payment Alt / Contact Support === */
.payment-alt {
  text-align: center; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.payment-alt p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 10px; }
.contact-support-btn {
  background: rgba(37,211,102,0.1);
  border-color: #25d366;
  color: #25d366;
}
.contact-support-btn:hover { background: rgba(37,211,102,0.2); }

/* === Session Modal Info Box === */
.session-info-box {
  background: rgba(249,202,36,0.08);
  border: 1px solid rgba(249,202,36,0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.session-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}
.session-info-row + .session-info-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.session-fee {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.session-earn {
  color: #2ecc71;
  font-weight: 700;
  font-size: 1.1rem;
}
.earn-row {
  background: rgba(46,204,113,0.08);
  border-radius: 8px;
  padding: 10px 8px;
  margin-top: 4px;
}
.session-hint {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 10px;
}

/* === Floating Chat Support Button === */
.floating-chat-support {
  position: fixed;
  bottom: 85px; right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.floating-chat-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  color: #fff;
}

/* === Video Section === */
.video-section { margin-top: 10px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.video-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(249,202,36,0.08);
  border-color: var(--gold);
}
.video-thumb { width: 100%; height: 180px; object-fit: cover; display: block; }
.video-thumb-placeholder {
  width: 100%; height: 180px;
  background: var(--darker);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.video-card-info { padding: 14px; }
.video-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.video-card-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; line-height: 1.4; }
.video-card-footer {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem;
}
.video-views { color: var(--text-muted); }
.video-like-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-secondary); padding: 4px 10px;
  border-radius: 16px; font-size: 0.8rem; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 4px;
}
.video-like-btn:hover { border-color: var(--danger); color: var(--danger); }
.video-like-btn.liked { border-color: var(--danger); color: var(--danger); background: rgba(231,76,60,0.1); }
.free-badge {
  background: var(--success); color: #fff;
  padding: 2px 8px; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700;
  margin-left: auto;
}

/* === Age Filter === */
#age-filter {
  max-width: 180px;
}
