.chat-launcher-wrap,.chat-panel{--red:#c0392b;--red-hi:#e74c3c;--heading:'Playfair Display', Georgia, serif;--border-hi:rgba(212, 175, 105, 0.35);--gold:#d4af69;--red-glow:rgba(192, 57, 43, 0.35);--duration-fast:0.18s;--ease-out:cubic-bezier(0.16, 1, 0.3, 1);--bg-2:#0e1016;--border:rgba(212, 175, 105, 0.12);--border-subtle:rgba(255, 255, 255, 0.06);--gold-glow:rgba(212, 175, 105, 0.4);--muted:#8a8278;--body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;--text:#e8e2d8;--glass:rgba(255, 255, 255, 0.04);--glass-2:rgba(255, 255, 255, 0.065);--bg:#08090d;--gold-light:#e8cb8a;}
/* ===== Chatbot ===== */
.chat-launcher-wrap{
  position: fixed;
  right: 1.4rem; top: 5.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}
.chat-launcher-info{
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
}
.chat-launcher-label{
  background: linear-gradient(135deg, var(--red), var(--red-hi));
  color: #fff;
  font-family: var(--heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--border-hi);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
  animation: label-glow 2s ease-in-out infinite;
}
.chat-langs-ticker{
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
  position: relative;
}
.chat-langs-ticker::after{
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 30px; height: 100%;
  background: linear-gradient(to right, transparent, var(--bg-1));
}
.chat-langs-scroll{
  display: inline-block;
  animation: scroll-langs 14s linear infinite;
}
.chat-launcher{
  position: relative;
  width: 60px; height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border-hi);
  background: linear-gradient(135deg, var(--red), var(--red-hi));
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px var(--red-glow), 0 0 20px rgba(192, 57, 43, 0.3);
  transition: all var(--duration-fast) var(--ease-out);
  animation: chat-pulse 2s ease-in-out infinite;
}
.chat-launcher:hover{
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 12px 40px rgba(192, 57, 43, 0.5);
  animation: none;
}
.chat-panel{
  position: fixed;
  right: 1.4rem; top: 7.5rem;
  z-index: 10000;
  width: min(380px, calc(100vw - 2.8rem));
  height: min(540px, calc(100vh - 8rem));
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(212, 175, 105, 0.06);
  opacity: 0; transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.chat-panel.open{ opacity: 1; transform: none; pointer-events: auto; }
.chat-header{
  display: flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(212, 175, 105, 0.03);
}
.chat-header .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }
.chat-header h4{ font-family: var(--heading); font-size: 0.95rem; }
.chat-header small{ display: block; color: var(--muted); font-weight: 400; font-family: var(--body); font-size: 0.72rem; }
.chat-speaker{
  background: none; border: 0; color: var(--gold); cursor: pointer;
  padding: 0.3rem; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast);
}
.chat-speaker:hover{ background: rgba(212, 175, 105, 0.1); }
.chat-speaker.muted{ color: var(--muted); opacity: 0.5; }
.chat-close{ margin-left: auto; background: none; border: 0; color: var(--muted); font-size: 1.4rem; cursor: pointer; transition: color var(--duration-fast); }
.chat-close:hover{ color: var(--text); }
.chat-lang-bar{
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(212, 175, 105, 0.02);
}
.chat-lang-select{
  width: 100%;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  background: var(--glass);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color var(--duration-fast);
  appearance: auto;
}
.chat-lang-select:focus{ outline: none; border-color: var(--gold); }
.chat-body{ flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.chat-msg{ max-width: 84%; padding: 0.6rem 0.85rem; border-radius: 14px; font-size: 0.88rem; line-height: 1.55; }
.chat-msg.bot{ align-self: flex-start; background: var(--glass-2); border: 1px solid var(--border-subtle); border-bottom-left-radius: 4px; }
.chat-msg.user{ align-self: flex-end; background: linear-gradient(135deg, var(--red), var(--red-hi)); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg a{ color: var(--gold); }
.chat-quick{ display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.6rem; }
.chat-chip{
  font-family: var(--body);
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--duration-fast);
}
.chat-chip:hover{ background: rgba(212, 175, 105, 0.08); }
.chat-input-row{ display: flex; gap: 0.4rem; padding: 0.7rem; border-top: 1px solid var(--border-subtle); }
.chat-input{
  flex: 1;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--glass);
  color: var(--text);
  font: inherit;
  font-size: 0.85rem;
  transition: border-color var(--duration-fast);
}
.chat-input:focus{ outline: none; border-color: var(--gold); }
.chat-send{
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--duration-fast);
}
.chat-send:hover{ background: var(--gold-light); }
/* Mic button */
.chat-mic{
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-hi);
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast);
}
.chat-mic:hover{ color: var(--gold); border-color: var(--gold); }
.chat-mic.listening{
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  animation: mic-pulse 1.2s ease-in-out infinite;
}
@media (max-width: 480px){
/* Chatbot even tighter */
  .chat-launcher-info{ display: none; }
.chat-launcher-wrap{ right: 1rem; left: auto; bottom: 1rem; transform: none; }
.chat-panel{ bottom: 4.5rem; max-height: calc(100vh - 6rem); }
}
@keyframes scroll-langs{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes label-glow{
  0%, 100% { box-shadow: 0 4px 20px rgba(192, 57, 43, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(192, 57, 43, 0.55); }
}
@keyframes chat-pulse{
  0%, 100% { box-shadow: 0 8px 30px var(--red-glow), 0 0 20px rgba(192, 57, 43, 0.3); }
  50% { box-shadow: 0 8px 40px var(--red-glow), 0 0 40px rgba(192, 57, 43, 0.5); }
}
@keyframes mic-pulse{
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(192, 57, 43, 0); }
}

/* LIGHT-PAGE ADAPTER */
.chat-launcher-info{background:#12181B;padding:10px 16px;border-radius:14px;box-shadow:0 10px 28px rgba(18,24,27,.22)}
.chat-launcher-label{color:#fff}
.chat-launcher{background:linear-gradient(135deg,#CE2029,#A31017) !important;color:#fff;box-shadow:0 10px 26px rgba(206,32,41,.35)}
.chat-panel{background:#12181B !important;border:1px solid rgba(255,255,255,.08)}

/* AGE GATE STYLES (from live styles.css) */
.age-gate{--bg-2:#0e1016;--border-hi:rgba(212, 175, 105, 0.35);--radius-lg:24px;--text-bright:#f5f0e8;--muted:#8a8278;--gold:#d4af69;--glass-2:rgba(255, 255, 255, 0.065);--border:rgba(212, 175, 105, 0.12);--radius-sm:8px;--text:#e8e2d8;--body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;--red-hi:#e74c3c;}
/* ===== Age Gate ===== */
.age-gate{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.age-gate[hidden]{ display: none; }
.age-gate-box{
  width: 100%;
  max-width: 440px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: 0 0 80px rgba(212, 175, 105, 0.1),
              0 30px 60px rgba(0, 0, 0, 0.5);
}
.age-gate-logo{
  width: 120px;
  height: auto;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(212, 175, 105, 0.3));
}
.age-gate-shield{
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 105, 0.3));
}
.age-gate-box h2{
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  margin-bottom: 0.6rem;
  color: var(--text-bright);
}
.age-gate-box > p{ color: var(--muted); margin-bottom: 1.5rem; font-size: 0.92rem; }
.age-gate-box > p strong{ color: var(--gold); }
.age-gate-dob{
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.age-gate-dob select{
  padding: 0.7rem 0.9rem;
  background: var(--glass-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--body);
  font-size: 0.88rem;
  cursor: pointer;
  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='%238a8278' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 95px;
}
.age-gate-dob select:first-child{ min-width: 130px; }
.age-gate-dob select:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 105, 0.1);
}
.age-gate-dob select option{ background: var(--bg-2); color: var(--text); }
.age-gate-verify{
  width: 100%;
  max-width: 260px;
  justify-content: center;
}
.age-gate-error{
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.age-gate-deny{ color: var(--red-hi); font-weight: 600; margin-top: 1.2rem; font-size: 0.9rem; }
.age-gate-fine{
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 1.8rem;
  line-height: 1.5;
}
