@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

:root {
  --obsidian: #0a0a0f;
  --obsidian-2: #0d0d18;
  --obsidian-3: #111122;
  --cyan: #00e5ff;
  --cyan-dim: #0097a7;
  --cyan-glow: rgba(0, 229, 255, 0.15);
  --blue-glow: rgba(30, 100, 255, 0.2);
  --pink: #ff2d78;
  --blue-light: #4fc3f7;
  --red: #ff3b3b;
}

* { box-sizing: border-box; }

body {
  background-color: var(--obsidian);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

.font-orbitron { font-family: 'Orbitron', monospace; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }
.bg-obsidian { background-color: var(--obsidian); }

/* PARTICLES */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}
@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* NAV */
.nav-glass {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.logo-icon { font-size: 1.5rem; filter: drop-shadow(0 0 8px var(--cyan)); }

/* ONLINE BADGE */
.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00ff88;
  display: inline-block;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 4px #00ff88; opacity: 1; }
  50% { box-shadow: 0 0 12px #00ff88, 0 0 24px #00ff88; opacity: 0.7; }
}

/* HERO */
.hero-section { position: relative; }
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, rgba(30,100,255,0.05) 40%, transparent 70%);
  pointer-events: none;
}

/* AD POSTER */
.ad-poster {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  z-index: 10;
}
.ad-poster-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #ff3b3b, #ff2d78, #ff3b3b);
  filter: blur(12px);
  opacity: 0.6;
  border-radius: 20px;
  transition: opacity 0.3s;
  animation: poster-glow-pulse 2s infinite;
}
@keyframes poster-glow-pulse {
  0%, 100% { opacity: 0.5; filter: blur(10px); }
  50% { opacity: 0.9; filter: blur(16px); }
}
.ad-poster:hover .ad-poster-glow { opacity: 1; filter: blur(16px); }
.ad-poster-content {
  position: relative;
  background: rgba(13,13,24,0.95);
  border: 1px solid rgba(255,59,59,0.5);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  overflow: hidden;
}
.ad-poster-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 15px rgba(255,59,59,0.8);
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .ad-poster-title { font-size: 1.8rem; }
}
.ad-poster-subtitle {
  color: #ff6b6b;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.ad-poster-btn {
  background: #ff3b3b;
  color: white;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,59,59,0.5);
  transition: transform 0.2s, background 0.2s;
}
.ad-poster:hover .ad-poster-btn {
  transform: scale(1.05);
  background: #ff4f4f;
}

/* RECRUITMENT BANNER */
.recruitment-banner {
  background: rgba(0, 229, 255, 0.05);
  border: 1px dashed rgba(0, 229, 255, 0.4);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
}

/* GLITCH */
.glitch-text {
  position: relative;
  color: white;
  text-shadow: 0 0 20px rgba(0,229,255,0.5), 0 0 40px rgba(0,229,255,0.2);
  animation: glitch 4s infinite;
}
@keyframes glitch {
  0%, 90%, 100% { text-shadow: 0 0 20px rgba(0,229,255,0.5); }
  92% { text-shadow: -2px 0 var(--pink), 2px 0 var(--cyan), 0 0 20px rgba(0,229,255,0.5); }
  94% { text-shadow: 2px 0 var(--pink), -2px 0 var(--cyan), 0 0 20px rgba(0,229,255,0.5); }
  96% { text-shadow: -2px 0 var(--pink), 2px 0 var(--cyan), 0 0 20px rgba(0,229,255,0.5); }
}

/* ONLINE COUNTER */
.online-counter-big { display: flex; justify-content: center; }
.counter-ring {
  border: 2px solid var(--cyan);
  border-radius: 50%;
  width: 140px; height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--cyan-glow), inset 0 0 30px rgba(0,229,255,0.05);
  animation: ring-pulse 2s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { box-shadow: 0 0 30px var(--cyan-glow), inset 0 0 30px rgba(0,229,255,0.05); }
  50% { box-shadow: 0 0 50px rgba(0,229,255,0.3), inset 0 0 40px rgba(0,229,255,0.08); }
}

/* TRAINER CARDS WITH PHOTO */
.trainer-card {
  background: linear-gradient(135deg, rgba(13,13,24,0.95), rgba(17,17,34,0.9));
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.trainer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.trainer-card:hover { transform: translateY(-4px); border-color: rgba(0,229,255,0.4); box-shadow: 0 8px 32px rgba(0,229,255,0.15); }
.trainer-card:hover::before { opacity: 1; }
.trainer-card.female:hover { border-color: rgba(255,45,120,0.4); box-shadow: 0 8px 32px rgba(255,45,120,0.15); }

/* PHOTO AVATARS */
.trainer-avatar-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trainer-avatar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.female-avatar { border: 2px solid rgba(255, 45, 120, 0.5); box-shadow: 0 0 16px rgba(255,45,120,0.25); }
.male-avatar { border: 2px solid rgba(79, 195, 247, 0.5); box-shadow: 0 0 16px rgba(79,195,247,0.25); }

.trainer-badge {
  display: inline-block;
  font-size: 9px;
  font-family: 'Orbitron', monospace;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-top: 4px;
}
.female-badge { background: rgba(255,45,120,0.15); border: 1px solid rgba(255,45,120,0.4); color: #ff2d78; }
.male-badge { background: rgba(79,195,247,0.15); border: 1px solid rgba(79,195,247,0.4); color: #4fc3f7; }
.trainer-status { font-size: 10px; margin-top: 6px; font-family: 'Orbitron', monospace; }
.online-status { color: #00ff88; }

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(0,229,255,0.05));
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  font-size: 12px; font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.btn-primary:hover { background: rgba(0,229,255,0.2); box-shadow: 0 0 20px rgba(0,229,255,0.3); }

.btn-secondary {
  background: linear-gradient(135deg, rgba(79,195,247,0.1), rgba(79,195,247,0.03));
  border: 1px solid rgba(79,195,247,0.5);
  color: #4fc3f7;
  font-family: 'Orbitron', monospace;
  font-size: 12px; font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.btn-secondary:hover { background: rgba(79,195,247,0.15); box-shadow: 0 0 20px rgba(79,195,247,0.2); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0,229,255,0.2);
  color: rgba(0,229,255,0.7);
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-back {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-back:hover { background: rgba(255,255,255,0.1); color: white; }

/* SLAM ROOM BUTTON */
.btn-slamroom {
  background: linear-gradient(135deg, rgba(255,59,59,0.2), rgba(255,59,59,0.06));
  border: 1px solid rgba(255,59,59,0.6);
  color: #ff6b6b;
  font-family: 'Orbitron', monospace;
  font-size: 12px; font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  animation: slam-btn-pulse 2s ease-in-out infinite;
}
@keyframes slam-btn-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,59,59,0.3); }
  50% { box-shadow: 0 0 25px rgba(255,59,59,0.6), 0 0 40px rgba(255,59,59,0.2); }
}
.btn-slamroom:hover { background: rgba(255,59,59,0.3); }

/* SHOP BUTTON */
.btn-shop {
  background: linear-gradient(135deg, rgba(0,255,136,0.15), rgba(0,255,136,0.05));
  border: 1px solid rgba(0,255,136,0.5);
  color: #00ff88;
  font-family: 'Orbitron', monospace;
  font-size: 12px; font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}
.btn-shop:hover { background: rgba(0,255,136,0.2); box-shadow: 0 0 20px rgba(0,255,136,0.3); }

/* ═══════════════════════════════════════════════════ */
/* SLAM ROOM */
.slam-room-live-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,59,59,0.15), rgba(255,59,59,0.05));
  border: 1px solid rgba(255,59,59,0.4);
  border-radius: 12px;
  padding: 14px 18px;
}
.live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ff3b3b;
  flex-shrink: 0;
  animation: live-pulse 1s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 4px #ff3b3b; opacity: 1; }
  50% { box-shadow: 0 0 16px #ff3b3b, 0 0 30px rgba(255,59,59,0.4); opacity: 0.7; }
}

.slam-room-countdown-box {
  background: rgba(13,13,24,0.9);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.slam-room-link-box {
  background: rgba(13,13,24,0.9);
  border: 1px solid rgba(255,59,59,0.2);
  border-radius: 16px;
  padding: 20px;
}

.slam-room-updated-badge {
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--cyan);
  padding: 3px 8px;
  border-radius: 20px;
}

.slam-room-link-placeholder {
  text-align: center;
  padding: 16px 0 4px;
}

.btn-slam-follow {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  text-align: center;
}
.female-follow {
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.35);
  color: #ff6ba8;
}
.female-follow:hover { background: rgba(255,45,120,0.2); box-shadow: 0 0 15px rgba(255,45,120,0.25); }
.male-follow {
  background: rgba(79,195,247,0.1);
  border: 1px solid rgba(79,195,247,0.35);
  color: #4fc3f7;
}
.male-follow:hover { background: rgba(79,195,247,0.2); box-shadow: 0 0 15px rgba(79,195,247,0.25); }

.slam-info-card {
  background: rgba(13,13,24,0.9);
  border: 1px solid rgba(0,229,255,0.08);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

/* ADMIN CONTACT */
.slam-admin-contact {
  background: rgba(13,13,24,0.8);
  border: 1px solid rgba(0,229,255,0.1);
  border-radius: 16px;
  padding: 20px;
}
.admin-contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.5rem;
}
.female-contact {
  background: rgba(255,45,120,0.08);
  border: 1px solid rgba(255,45,120,0.25);
  color: #ff6ba8;
}
.female-contact:hover { background: rgba(255,45,120,0.15); box-shadow: 0 0 20px rgba(255,45,120,0.2); }
.male-contact {
  background: rgba(79,195,247,0.08);
  border: 1px solid rgba(79,195,247,0.25);
  color: #4fc3f7;
}
.male-contact:hover { background: rgba(79,195,247,0.15); box-shadow: 0 0 20px rgba(79,195,247,0.2); }

/* ═══════════════════════════════════════════════════ */
/* SHOP */
.shop-disclaimer {
  background: rgba(255,165,0,0.06);
  border: 1px solid rgba(255,165,0,0.2);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.product-card {
  background: linear-gradient(135deg, rgba(13,13,24,0.95), rgba(17,17,34,0.9));
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 18px;
  padding: 22px 20px;
  position: relative;
  transition: all 0.3s;
}
.product-card:hover { border-color: rgba(0,229,255,0.3); box-shadow: 0 4px 30px rgba(0,229,255,0.1); transform: translateY(-2px); }

.product-emoji { font-size: 2.5rem; margin-bottom: 4px; }

.product-badge {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.badge-hot { background: rgba(255,59,59,0.15); border: 1px solid rgba(255,59,59,0.4); color: #ff6b6b; }
.badge-premium { background: rgba(255,165,0,0.15); border: 1px solid rgba(255,165,0,0.4); color: #ffa500; }
.badge-starter { background: rgba(0,255,136,0.12); border: 1px solid rgba(0,255,136,0.35); color: #00ff88; }
.badge-pro { background: rgba(79,195,247,0.12); border: 1px solid rgba(79,195,247,0.35); color: #4fc3f7; }

.product-tagline {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  color: rgba(0,229,255,0.6);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.product-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-price {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.product-actions { display: flex; flex-direction: column; gap: 8px; }

.btn-order-female {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(255,45,120,0.1);
  border: 1px solid rgba(255,45,120,0.35);
  color: #ff6ba8;
}
.btn-order-female:hover { background: rgba(255,45,120,0.2); box-shadow: 0 0 15px rgba(255,45,120,0.25); }

.btn-order-male {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(79,195,247,0.1);
  border: 1px solid rgba(79,195,247,0.35);
  color: #4fc3f7;
}
.btn-order-male:hover { background: rgba(79,195,247,0.2); box-shadow: 0 0 15px rgba(79,195,247,0.25); }

/* TRAINER LIST */
.trainer-list-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, rgba(13,13,24,0.95), rgba(17,17,34,0.9));
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.trainer-list-card:hover { border-color: rgba(0,229,255,0.3); box-shadow: 0 4px 20px rgba(0,229,255,0.1); transform: translateX(4px); }

.trainer-list-avatar-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.trainer-list-avatar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.female-avatar-lg { border: 2px solid rgba(255,45,120,0.5); }
.male-avatar-lg { border: 2px solid rgba(79,195,247,0.5); }

.badge-female { background: rgba(255,45,120,0.15); border: 1px solid rgba(255,45,120,0.4); color: #ff2d78; font-family: 'Orbitron', monospace; font-size: 9px; padding: 2px 8px; border-radius: 4px; }
.badge-male { background: rgba(79,195,247,0.15); border: 1px solid rgba(79,195,247,0.4); color: #4fc3f7; font-family: 'Orbitron', monospace; font-size: 9px; padding: 2px 8px; border-radius: 4px; }
.online-pill { display: inline-block; font-size: 11px; color: #00ff88; font-family: 'Orbitron', monospace; }

/* PROFILE */
.trainer-profile-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 20px 40px;
  text-align: center;
}
.profile-photo-xl {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}
.profile-photo-xl img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile-female { border: 3px solid rgba(255,45,120,0.7); box-shadow: 0 0 40px rgba(255,45,120,0.35); }
.profile-male { border: 3px solid rgba(79,195,247,0.7); box-shadow: 0 0 40px rgba(79,195,247,0.35); }

.btc-note {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  color: rgba(255,165,0,0.7);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.5px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
.social-link-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 11px; font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border: 1px solid;
  letter-spacing: 0.5px;
  background: none;
}
.social-instagram { background: rgba(225,48,108,0.1); border-color: rgba(225,48,108,0.4); color: #e1306c; }
.social-instagram:hover { background: rgba(225,48,108,0.2); box-shadow: 0 0 15px rgba(225,48,108,0.3); }
.social-tiktok { background: rgba(0,229,255,0.1); border-color: rgba(0,229,255,0.4); color: #00e5ff; }
.social-tiktok:hover { background: rgba(0,229,255,0.2); box-shadow: 0 0 15px rgba(0,229,255,0.3); }
.social-youtube { background: rgba(255,0,0,0.1); border-color: rgba(255,0,0,0.4); color: #ff4444; }
.social-youtube:hover { background: rgba(255,0,0,0.2); box-shadow: 0 0 15px rgba(255,0,0,0.3); }
.social-booking { background: rgba(0,255,136,0.1); border-color: rgba(0,255,136,0.4); color: #00ff88; }
.social-booking:hover { background: rgba(0,255,136,0.2); box-shadow: 0 0 15px rgba(0,255,136,0.3); }
.social-video { background: rgba(255,165,0,0.1); border-color: rgba(255,165,0,0.4); color: #ffa500; }
.social-video:hover { background: rgba(255,165,0,0.2); box-shadow: 0 0 15px rgba(255,165,0,0.3); }
.social-group { background: rgba(79,195,247,0.1); border-color: rgba(79,195,247,0.4); color: #4fc3f7; }
.social-group:hover { background: rgba(79,195,247,0.2); box-shadow: 0 0 15px rgba(79,195,247,0.3); }

.stats-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 16px 0; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Orbitron', monospace; font-size: 1.4rem; font-weight: 900; color: var(--cyan); }
.stat-label { font-size: 10px; color: #64748b; letter-spacing: 1px; }

/* CHAT */
.clickable-avatar { cursor: pointer; transition: all 0.2s; }
.clickable-avatar:hover { transform: scale(1.1); box-shadow: 0 0 10px rgba(0,229,255,0.4); border-color: var(--cyan); }
.dm-image-msg { max-width: 100%; border-radius: 8px; border: 1px solid rgba(0,229,255,0.2); margin-top: 4px; object-fit: contain; }
.chat-messages-container {
  background: rgba(10,10,15,0.8);
  border: 1px solid rgba(0,229,255,0.1);
  min-height: 0;
}
.chat-tab {
  flex: 1;
  padding: 8px 10px;
  font-family: 'Orbitron', monospace;
  font-size: 10px; font-weight: 700;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.chat-tab:hover { background: rgba(255,255,255,0.08); color: white; }
.active-tab { background: rgba(0,229,255,0.12) !important; border-color: rgba(0,229,255,0.4) !important; color: var(--cyan) !important; }

.room-label {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  color: rgba(0,229,255,0.6);
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 1px;
}
.chat-message { display: flex; gap: 10px; align-items: flex-start; animation: msg-in 0.3s ease; }
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.msg-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.2); }
.msg-body { flex: 1; }
.msg-name { font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 700; margin-bottom: 2px; }
.msg-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.4; background: rgba(255,255,255,0.04); padding: 6px 10px; border-radius: 0 8px 8px 8px; border: 1px solid rgba(255,255,255,0.06); word-break: break-word; overflow-wrap: break-word; }
.msg-time { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.msg-mine .msg-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.4; background: rgba(255,255,255,0.04); padding: 6px 10px; border-radius: 0 8px 8px 8px; border: 1px solid rgba(255,255,255,0.06); word-break: break-word; overflow-wrap: break-word; }

.chat-input { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,229,255,0.2); color: white; padding: 10px 16px; border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
.chat-input:focus { border-color: rgba(0,229,255,0.5); background: rgba(0,229,255,0.04); }
.chat-input::placeholder { color: rgba(255,255,255,0.2); }

.btn-send { background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(0,229,255,0.08)); border: 1px solid var(--cyan); color: var(--cyan); font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 700; padding: 10px 16px; border-radius: 8px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-send:hover { background: rgba(0,229,255,0.25); box-shadow: 0 0 15px rgba(0,229,255,0.3); }

/* BOTTOM NAV */
.bottom-nav-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 4px 8px; background: transparent; border: none; color: rgba(255,255,255,0.4); font-size: 10px; font-family: 'Orbitron', monospace; cursor: pointer; transition: color 0.2s; }
.bottom-nav-btn span { font-size: 8px; }
.bottom-nav-btn:hover, .bottom-nav-btn.active { color: var(--cyan); }

/* VIEW */
.view { transition: opacity 0.3s ease; }
.view.hidden { display: none !important; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.3); border-radius: 2px; }

/* PROFILE SECTIONS */
.profile-section {
  background: rgba(13,13,24,0.8);
  border: 1px solid rgba(0,229,255,0.08);
  border-radius: 16px;
  padding: 20px;
  margin: 0 16px 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.profile-section h4 { font-family: 'Orbitron', monospace; font-size: 12px; color: rgba(0,229,255,0.6); letter-spacing: 2px; margin-bottom: 12px; border-bottom: 1px solid rgba(0,229,255,0.1); padding-bottom: 8px; }

/* SCHEDULE */
.schedule-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.schedule-table th { font-family: 'Orbitron', monospace; font-size: 10px; color: rgba(255,255,255,0.4); padding: 6px 8px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.06); }
.schedule-table td { padding: 8px 8px; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.03); }
.schedule-table tr:last-child td { border-bottom: none; }
.slot-available { color: #00ff88; font-family: 'Orbitron', monospace; font-size: 10px; }
.slot-full { color: rgba(255,255,255,0.3); font-family: 'Orbitron', monospace; font-size: 10px; }

/* ═══════════════════════════════════════════════════ */
/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.hidden { display: none !important; }

.modal-box {
  background: linear-gradient(135deg, #0d0d1a, #111128);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 60px rgba(0,229,255,0.1);
}

.modal-header {
  text-align: center;
  padding: 28px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-icon { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.modal-body { padding: 20px 24px 24px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-family: 'Orbitron', monospace; font-size: 10px; color: rgba(0,229,255,0.6); letter-spacing: 1px; margin-bottom: 6px; }
.modal-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(0,229,255,0.2); color: white; padding: 10px 14px; border-radius: 8px; font-family: 'Rajdhani', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
.modal-input:focus { border-color: rgba(0,229,255,0.5); }
.modal-input::placeholder { color: rgba(255,255,255,0.2); }

/* BITCOIN/PAYPAL MODAL */
.btc-price-box {
  text-align: center;
  background: rgba(255,165,0,0.08);
  border: 1px solid rgba(255,165,0,0.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.btc-address-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  text-align: center;
}
.btc-address {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  color: #00e5ff;
  word-break: break-all;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
  background: rgba(0,229,255,0.04);
  margin-bottom: 8px;
}
.btc-address:hover { background: rgba(0,229,255,0.1); }
.copy-btn {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.copy-btn:hover { background: rgba(0,229,255,0.2); }
.btc-steps { margin-bottom: 14px; }
.btc-step {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  padding-left: 12px;
  position: relative;
}
.btc-step::before { content: '→'; position: absolute; left: 0; color: var(--cyan); }

/* AI HELP BOX */
.ai-help-box {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: linear-gradient(135deg, #0d0d1a, #111128);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,229,255,0.15);
  z-index: 150;
  display: flex;
  flex-direction: column;
  max-height: 400px;
}
.ai-help-box.hidden { display: none !important; }

.ai-help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,229,255,0.1);
}
.ai-help-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  max-height: 240px;
}
.ai-help-input-row { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid rgba(0,229,255,0.08); }

.ai-msg { font-size: 13px; line-height: 1.4; padding: 8px 12px; border-radius: 10px; max-width: 90%; word-break: break-word; overflow-wrap: break-word; }
.ai-msg-bot {
  background: rgba(0,229,255,0.07);
  border: 1px solid rgba(0,229,255,0.12);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  border-radius: 4px 10px 10px 10px;
}
.ai-msg-user {
  background: rgba(79,195,247,0.12);
  border: 1px solid rgba(79,195,247,0.2);
  color: #4fc3f7;
  align-self: flex-end;
  border-radius: 10px 4px 10px 10px;
}

.typing-dots {
  display: inline-block;
  animation: typing-pulse 1s ease-in-out infinite;
  color: rgba(0,229,255,0.6);
  letter-spacing: 3px;
  font-size: 10px;
}
@keyframes typing-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════ */
/* LEAFLET OVERRIDES */
.leaflet-container {
  background: var(--obsidian-2) !important;
  font-family: 'Rajdhani', sans-serif;
}
.leaflet-popup-content-wrapper {
  background: rgba(13,13,24,0.95) !important;
  border: 1px solid rgba(0,229,255,0.3) !important;
  color: white !important;
  border-radius: 8px !important;
  box-shadow: 0 0 15px rgba(0,229,255,0.15) !important;
  backdrop-filter: blur(10px);
}
.leaflet-popup-tip {
  background: rgba(13,13,24,0.95) !important;
  border: 1px solid rgba(0,229,255,0.3) !important;
  border-bottom: none !important;
  border-right: none !important;
}
.radar-popup-handle {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #00e5ff;
  margin-bottom: 2px;
}
.radar-popup-status {
  font-size: 12px;
  color: #94a3b8;
}

/* RADAR PULSE ANIMATION */
@keyframes radar-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(2.2); opacity: 0; }
}
.custom-radar-pin { overflow: visible !important; background: transparent !important; border: none !important; }

/* MODAL SELECT INPUTS */
select.modal-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300e5ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
select.modal-input option {
  background: #0d0d1a;
  color: white;
}

/* AI TOGGLE BUTTON */
.ai-help-toggle {
  position: fixed;
  bottom: 72px;
  right: 16px;
  background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(0,229,255,0.08));
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Orbitron', monospace;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 149;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0,229,255,0.2);
  transition: all 0.2s;
}
.ai-help-toggle:hover { background: rgba(0,229,255,0.25); box-shadow: 0 4px 30px rgba(0,229,255,0.35); }

