/* ═══════════════════════════════════════════
   Ragen Play — CSS (Premium / Netflix-style)
   Este arquivo complementa o CSS inline do index.html.
   ═══════════════════════════════════════════ */

/* ───────────────────────────────────────────
   HERO (Destaques) — 1 capa por vez
   ─────────────────────────────────────────── */

.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.1);
  border: 1px solid var(--glass-border);
}

.hero-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}

.hero-layer.is-active {
  opacity: 1;
  transform: scale(1.0);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.0) 75%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.0) 60%);
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 26px 22px;
  width: min(620px, 92%);
  max-width: 92%;
}

.hero-title {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 10px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-overview {
  color: rgba(241, 245, 249, 0.92);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 60ch;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.36);
}

.hero-btn:active {
  transform: translateY(0px);
  opacity: 0.92;
}

.hero-btn-primary {
  border-color: rgba(16, 185, 129, 0.34);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(4, 120, 87, 0.92));
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

.hero-btn-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--neon-a);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.7), 0 0 30px rgba(16, 185, 129, 0.4);
}

/* Pequenos ajustes de responsividade */
@media (max-width: 480px) {
  .hero {
    min-height: 420px;
  }
  .hero-overlay {
    padding: 22px 16px;
    width: 100%;
  }
  .hero-overview {
    -webkit-line-clamp: 5;
  }
}

/* ───────────────────────────────────────────
   Capas (Lazy load) — placeholder discreto
   ─────────────────────────────────────────── */

.card-image-wrapper {
  background: rgba(255, 255, 255, 0.03);
}

.lazy-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: filter 200ms ease, opacity 200ms ease;
}

.lazy-poster.is-loading {
  filter: blur(10px);
  opacity: 0.75;
}

.lazy-poster.is-loaded {
  filter: blur(0px);
  opacity: 1;
}

/* ═══════════════════════════════════════════
   Isolamento de Scroll — Trava overscroll
   ═══════════════════════════════════════════ */

html, body {
  overscroll-behavior-y: contain !important;
}

/* ═══════════════════════════════════════════
   Página Própria do Filme (Fullpage)
   ═══════════════════════════════════════════ */

.modal-fullpage {
  position: relative !important;
  inset: auto !important;
  z-index: 500;
  display: block !important;
  overflow: visible !important;
  padding: 0 !important;
  min-height: 100vh;
  background: var(--bg);
}

.modal-fullpage .modal-backdrop {
  display: none !important;
}

.modal-fullpage .modal-panel {
  margin: 0 auto !important;
  border-radius: 0 !important;
  max-width: 100% !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* ═══════════════════════════════════════════
   Modal de Exploração (Layout Mobile)
   ═══════════════════════════════════════════ */

.explore-modal-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  border-radius: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.explore-trailer-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  flex-shrink: 0;
}

.explore-trailer-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#explore-yt-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.explore-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--bg);
}

.explore-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.explore-overview {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.explore-cast-section {
  margin-bottom: 24px;
}

.explore-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.explore-cast {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 12px;
}

.explore-cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.explore-cast-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.explore-cast-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.explore-cast-character {
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
}

.explore-navigation {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.explore-nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.explore-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.explore-nav-btn:active {
  transform: translateY(0);
}

/* Responsivo para mobile */
@media (max-width: 480px) {
  .explore-modal-panel {
    border-radius: 0;
  }
  
  .explore-trailer-wrap {
    aspect-ratio: 16/9;
  }
  
  .explore-content {
    padding: 16px;
  }
  
  .explore-title {
    font-size: 1.3rem;
  }
  
  .explore-cast {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
  }
  
  .explore-cast-avatar {
    width: 50px;
    height: 50px;
  }
  
  .explore-nav-btn {
    padding: 12px;
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════
   Chatbot AI Premium — Glassmorphism & Discreet Floating UI
   ═══════════════════════════════════════════ */

/* Botão Flutuante ultra-discreto no canto inferior direito */
.ai-chat-toggle {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 32px);
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: radial-gradient(circle at 30% 30%, rgba(52, 211, 153, 0.95), rgba(16, 185, 129, 0.95) 60%, rgba(4, 120, 87, 0.95));
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4), 0 0 14px rgba(16, 185, 129, 0.25);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, opacity 0.2s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: aiGlowPulse 4s infinite ease-in-out;
}

@keyframes aiGlowPulse {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4), 0 0 12px rgba(16, 185, 129, 0.2);
  }
  50% {
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6), 0 0 20px rgba(16, 185, 129, 0.4);
  }
}

.ai-chat-toggle:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.6), 0 0 24px rgba(16, 185, 129, 0.4);
}

.ai-chat-toggle:active {
  transform: scale(0.92);
}

.ai-chat-toggle-icon {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Janela do Chat — Glassmorphism de Vidro Escuro Translúcido */
.ai-chat-window {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 88px);
  right: 14px;
  width: min(370px, calc(100vw - 28px));
  height: min(480px, calc(100vh - var(--bottom-nav-h) - var(--safe-bottom) - 100px));
  border-radius: 20px;
  background: rgba(10, 10, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(16, 185, 129, 0.12);
  z-index: 995;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-chat-window:not(.hidden) {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Header do Chat */
.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.03) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ai-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.ai-chat-title-container {
  display: flex;
  flex-direction: column;
}

.ai-chat-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.2;
}

.ai-chat-status {
  font-size: 0.72rem;
  color: rgba(16, 185, 129, 0.9);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.ai-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Botão Limpar Chat Discreto e Premium */
.ai-chat-clear {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.75;
}

.ai-chat-clear:hover,
.ai-chat-clear:active {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
  opacity: 1;
  transform: scale(1.05);
}

/* Botão Fechar (X) Visível e Elegante */
.ai-chat-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.ai-chat-close:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
  transform: scale(1.05);
}

/* Sugestões Rápidas (Chips) */
.ai-chat-quick-chips {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.ai-chat-quick-chips::-webkit-scrollbar {
  display: none;
}

.ai-chip {
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
  color: rgba(241, 245, 249, 0.9);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ai-chip:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.45);
  color: #fff;
  transform: translateY(-1px);
}

.ai-chip:active {
  transform: translateY(0);
}

/* Áreas de Mensagens e Barra de Rolagem Fina */
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 185, 129, 0.3) transparent;
}

.ai-chat-messages::-webkit-scrollbar {
  width: 4px;
}

.ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.3);
  border-radius: 4px;
}

.ai-message {
  max-width: 86%;
  animation: messageSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ai-message-user {
  align-self: flex-end;
}

.ai-message-assistant {
  align-self: flex-start;
}

.ai-message-content {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.5;
  word-break: break-word;
}

.ai-message-user .ai-message-content {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(4, 120, 87, 0.3));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ai-message-assistant .ai-message-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Botão de áudio ElevenLabs abaixo do balão da IA */
.ai-message-audio-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.ai-message-audio-btn:hover {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
  transform: translateY(-1px);
}

.ai-message-audio-btn:active {
  transform: translateY(0);
}

.ai-message-audio-btn.loading {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
  color: var(--muted);
}

.ai-message-audio-btn.playing {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.55);
  color: #34d399;
  animation: audioPlayPulse 2s infinite ease-in-out;
}

@keyframes audioPlayPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  50%       { box-shadow: 0 0 8px 3px rgba(16, 185, 129, 0.25); }
}

.ai-message-audio-btn svg {
  flex-shrink: 0;
}


.ai-message-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.ai-message-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: typingPulse 1.4s infinite ease-in-out;
}

.ai-message-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-message-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingPulse {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* Área de Input */
.ai-chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.ai-chat-input-area input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s ease;
}

.ai-chat-input-area input:focus {
  border-color: rgba(16, 185, 129, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.18);
}

.ai-chat-input-area input::placeholder {
  color: var(--muted);
  font-size: 0.84rem;
}

.ai-chat-mic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ai-chat-mic:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34d399;
  transform: scale(1.05);
}

.ai-chat-mic:active {
  transform: scale(0.95);
}

.ai-chat-mic.recording {
  background: rgba(239, 68, 68, 0.25) !important;
  border-color: rgba(239, 68, 68, 0.8) !important;
  color: #ef4444 !important;
  animation: micPulse 1.2s infinite ease-in-out;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.5);
}

@keyframes micPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
  }
}

.ai-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(4, 120, 87, 0.3));
  color: #34d399;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ai-chat-send:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.5), rgba(4, 120, 87, 0.5));
  border-color: rgba(16, 185, 129, 0.7);
  color: #fff;
  transform: scale(1.05);
}

.ai-chat-send:active {
  transform: scale(0.95);
}

.ai-chat-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* Adaptativo Desktop (> 768px) */
@media (min-width: 769px) {
  .ai-chat-toggle {
    width: 52px;
    height: 52px;
    bottom: 24px;
    right: 24px;
  }
  
  .ai-chat-window {
    width: 380px;
    height: 520px;
    bottom: 84px;
    right: 24px;
  }
}

