@charset "UTF-8";

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   Minimalist Ultra-Premium Luxury Theme (Champagne Gold & Obsidian Noir)
   ========================================================================== */
:root {
  /* Core Luxury Palette */
  --bg-color: #090a0f;           /* Obsidian Noir */
  --bg-secondary: #12131c;       /* Rich Charcoal */
  --bg-tertiary: #191a26;        /* Muted Slate */
  
  /* Typography Colors */
  --text-primary: #f4f4f7;       /* Pure Platinum White */
  --text-secondary: #9ca3af;     /* Muted Metallic Gray */
  --text-muted: #6b7280;         /* Deep Ash */
  
  /* Champagne Gold & Bronze Accents (Zero Neon) */
  --accent: #c5a059;             /* Primary Champagne Gold */
  --accent-rgb: 197, 160, 89;
  --accent-light: #dfc07d;       /* Soft Light Gold */
  --accent-dark: #9e7b37;        /* Aged Bronze */
  --accent-gold: #c5a059;
  --accent-silver: #d1d5db;      /* Soft Platinum Silver */

  /* Pure Luxury Glassmorphism (No Neon) */
  --glass-bg: rgba(18, 19, 28, 0.75);
  --glass-border: rgba(197, 160, 89, 0.18);
  --glass-border-hover: rgba(197, 160, 89, 0.45);
  --glass-blur: blur(24px) saturate(130%);
  
  /* Refined Natural Shadows (No Artificial Glow) */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.65);
  --shadow-modal: 0 25px 60px rgba(0, 0, 0, 0.85);

  /* Silken Luxury Gradients (No Aggressive / Fluorescent Colors) */
  --grad-gold: linear-gradient(135deg, #dfc07d, #9e7b37);
  --grad-dark-card: linear-gradient(145deg, rgba(25, 26, 38, 0.8), rgba(12, 13, 20, 0.95));
  --grad-gold-text: linear-gradient(135deg, #fce7af, #c5a059, #9e7b37);

  /* Category Accents (Harmonized Luxury Muted Tones) */
  --accent-pro: #c5a059;         /* Champagne Gold for IT/Pro */
  --accent-fam: #a3b18a;         /* Muted Sage Green for Family */
  --accent-ocio: #d4a373;        /* Muted Amber Copper for Ocio */
  --accent-pet: #90a4ae;         /* Muted Slate Blue for Pets */

  /* Transitions & Timing */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   GLOBAL RESET & BASE TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
}

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base Headings & Links */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p {
  color: var(--text-secondary);
  font-size: 1rem;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ==========================================================================
   BACKGROUNDS & PARTICLES (SUBTLE & LUXURIOUS)
   ========================================================================== */
.dynamic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: radial-gradient(circle at 50% 20%, rgba(25, 26, 38, 0.5) 0%, var(--bg-color) 70%);
  pointer-events: none;
}

.bg-abstract {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.bg-abstract-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--accent);
}

.bg-abstract-2 {
  bottom: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent-dark);
}

/* Watermark */
.watermark-construction {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: 8vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
  user-select: none;
  letter-spacing: 1.2rem;
  width: 100%;
  text-align: center;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.glass-header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1280px);
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 0.9rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
}

.glass-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 1.5rem 60px;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 span {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  margin: 1.5rem auto 2rem;
  max-width: 720px;
  color: var(--text-secondary);
}

/* Search Bar in Hero */
.search-container {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0;
  position: relative;
}

.search-container input {
  width: 100%;
  padding: 1.1rem 1.6rem;
  background: rgba(18, 19, 28, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  backdrop-filter: var(--glass-blur);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-subtle);
}

.search-container input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.search-container button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--grad-gold);
  border: none;
  color: #090a0f;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: 24px;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.search-container button:hover {
  opacity: 0.9;
}

/* ==========================================================================
   CARDS & GRID SYSTEM
   ========================================================================== */
.main-container {
  width: min(92%, 1280px);
  margin: 0 auto;
  padding-bottom: 100px;
}

.hero-portal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-card);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-card-hover);
}

/* Card Icons & Headers */
.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
  transition: all var(--transition-normal);
}

.glass-card:hover .card-icon-wrap {
  background: var(--accent);
  color: #090a0f;
}

.portal-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;

}

.portal-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Badges */
.badge, .badge-pro, .badge-fam, .badge-ocio, .badge-pet {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background: rgba(197, 160, 89, 0.1);
  color: var(--accent-light);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.badge-pro { background: rgba(197, 160, 89, 0.12); color: #dfc07d; border-color: rgba(197, 160, 89, 0.3); }
.badge-fam { background: rgba(163, 177, 138, 0.12); color: #a3b18a; border-color: rgba(163, 177, 138, 0.3); }
.badge-ocio { background: rgba(212, 163, 115, 0.12); color: #d4a373; border-color: rgba(212, 163, 115, 0.3); }
.badge-pet { background: rgba(144, 164, 174, 0.12); color: #90a4ae; border-color: rgba(144, 164, 174, 0.3); }

/* Buttons & Expandables */
.toggle-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: all var(--transition-fast);
}

.toggle-btn:hover {
  background: rgba(197, 160, 89, 0.1);
  color: var(--text-primary);
  border-color: var(--accent);
}

.card-details {
  display: none;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-details.active {
  display: block;
}

/* ==========================================================================
   CHATBOT ULTRA-PREMIUM MODAL (OBSIDIAN & CHAMPAGNE GOLD)
   ========================================================================== */
#chatbot-launcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid rgba(197, 160, 89, 0.4);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

#chatbot-launcher:hover {
  transform: scale(1.08);
  border-color: var(--accent-light);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.portal-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.6rem;
}

.chatbot-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: min(90vw, 420px);
  height: 620px;
  max-height: 80vh;
  background: rgba(14, 15, 23, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--shadow-modal);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all var(--transition-normal);
}

.chatbot-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Chat Header */
.chat-header {
  padding: 1.2rem 1.5rem;
  background: rgba(25, 26, 38, 0.7);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bot-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bot-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  object-fit: cover;
}

.bot-info h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0;
}

.status-online {
  font-size: 0.75rem;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-online::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
}

.close-chat {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.close-chat:hover {
  color: var(--text-primary);
}

/* Chat Body & Messages */
.chat-body {
  flex: 1;
  padding: 1.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 10px;
  max-width: 85%;
}

.message.user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.bot-bubble {
  background: rgba(25, 26, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 0.9rem 1.1rem;
  border-radius: 18px 18px 18px 4px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.user-message .bot-bubble {
  background: var(--grad-gold);
  color: #090a0f;
  font-weight: 500;
  border-radius: 18px 18px 4px 18px;
  border: none;
}

/* Quick Replies */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.btn-reply {
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-reply:hover {
  background: var(--accent);
  color: #090a0f;
  font-weight: 600;
}

/* Chat Footer */
.chat-footer {
  padding: 1rem;
  background: rgba(25, 26, 38, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 10px;
}

.chat-footer input {
  flex: 1;
  background: rgba(14, 15, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0.7rem 1.1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}

.chat-footer input:focus {
  border-color: var(--accent);
}

.btn-send {
  background: var(--grad-gold);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #090a0f;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.btn-send:hover {
  transform: scale(1.05);
}

/* Floating WhatsApp Button */
#whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(18, 19, 28, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-card);
  z-index: 9998;
  transition: all var(--transition-normal);
}

#whatsapp-btn:hover {
  transform: scale(1.08);
  color: #ffffff;
  border-color: var(--accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.glass-footer, .index-footer-strip {
  margin-top: 80px;
  padding: 2.5rem 1.5rem;
  background: rgba(14, 15, 23, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.glass-footer a, .index-footer-strip a {
  color: var(--accent-light);
  margin: 0 8px;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS
   ========================================================================== */
@media (max-width: 768px) {
  .glass-header {
    top: 1rem;
    padding: 0.8rem 1.2rem;
  }
  
  .nav-links {
    display: none; /* Controlled via mobile menu toggle if needed */
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding-top: 120px;
  }

  #chatbot-launcher {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
  }

  #whatsapp-btn {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .chatbot-window {
    right: 5vw;
    width: 90vw;
    bottom: 5rem;
  }
}


/* ==========================================================================
   PORTAL CARDS & COVER IMAGES (LUXURY REDESIGNED WITH PORTRAIT COVERS)
   ========================================================================== */
.portal-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 320px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.4) contrast(1.1);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.portal-card:hover::before {
  transform: scale(1.06);
  filter: brightness(0.6) contrast(1.15);
}

/* Specific Cover Background Images */
.it-card::before { background-image: url('../assets/it_master_face_2026.webp'); }
.fam-card::before { background-image: url('../assets/home_premium_safe.webp'); }
.ocio-card::before { background-image: url('../assets/ocio_simracing_2026.webp'); }
.pet-card::before { background-image: url('../assets/pets_uhd_2026.webp'); }

.portal-content {
  position: relative;
  z-index: 2;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(to top, rgba(9, 10, 15, 0.95) 0%, rgba(9, 10, 15, 0.5) 70%, transparent 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: flex-row;
  align-items: flex-end;
  gap: 1.2rem;
  border-radius: 28px;
}

.portal-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-card-hover);
}

.card-text-wrap {
  text-align: left;
}

.card-text-wrap h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.card-text-wrap p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}


/* ==========================================================================
   WHATSAPP & CHATBOT LAUNCHER FIXES (SMALL & OFFICIAL STYLES)
   ========================================================================== */

/* Official Compact Floating WhatsApp Button */
#whatsapp-btn {
  position: fixed !important;
  bottom: 2rem !important;
  left: 2rem !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  border: none !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.6rem !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45) !important;
  z-index: 9998 !important;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease !important;
  text-decoration: none !important;
}

#whatsapp-btn:hover {
  transform: scale(1.1) !important;
  background: #20ba5a !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6) !important;
  color: #ffffff !important;
}

#whatsapp-btn i {
  color: #ffffff !important;
  font-size: 1.6rem !important;
}

/* Compact Premium Chatbot Launcher Sphere */
#chatbot-launcher {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: var(--grad-gold) !important;
  border: 1px solid rgba(197, 160, 89, 0.5) !important;
  color: #090a0f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  box-shadow: var(--shadow-card) !important;
  z-index: 9999 !important;
  cursor: pointer !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

#chatbot-launcher:hover {
  transform: scale(1.08) !important;
  box-shadow: var(--shadow-card-hover) !important;
}

/* Name Registration Overlay Inside Chat Window */
.name-registration-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(14, 15, 23, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem !important;
  border-radius: 28px !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.name-registration-overlay.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.reg-card {
  background: rgba(25, 26, 38, 0.95) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px !important;
  padding: 2rem 1.5rem !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 320px !important;
  box-shadow: var(--shadow-card) !important;
}

.reg-card h3 {
  color: var(--text-primary) !important;
  font-size: 1.3rem !important;
  margin-bottom: 0.5rem !important;
}

.reg-card p {
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
  margin-bottom: 1.2rem !important;
}

.reg-card input {
  width: 100% !important;
  padding: 0.8rem 1rem !important;
  background: rgba(14, 15, 23, 0.8) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 14px !important;
  color: var(--text-primary) !important;
  font-size: 0.95rem !important;
  outline: none !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
}

.reg-card input:focus {
  border-color: var(--accent) !important;
}

.btn-start {
  width: 100% !important;
  padding: 0.8rem !important;
  background: var(--grad-gold) !important;
  border: none !important;
  border-radius: 14px !important;
  color: #090a0f !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}

.btn-start:hover {
  opacity: 0.9 !important;
}

/* STRICT IMAGE LIMITS INSIDE CHATBOT (NEVER GIANT) */
.chat-body img,
.bot-bubble img,
.bot-avatar img,
.bot-info img,
.bot-container img,
.chat-msg-container img {
  max-width: 38px !important;
  max-height: 38px !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  border: 1px solid var(--accent) !important;
}

.bot-avatar {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(197, 160, 89, 0.15) !important;
  color: var(--accent-light) !important;
  font-size: 1.1rem !important;
}
