/* ============================================================
   AI GIRL CHAT PAGE — PREMIUM DARK THEME
   ============================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #0d0d12;
  --bg-card: #1a1a24;
  --bg-card-hover: #20202e;
  --border-card: #2e2e42;
  --border-glow: rgba(255, 195, 0, 0.35);
  --gold: #f5c518;
  --gold-light: #ffd95a;
  --gold-dark: #c9960a;
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --text-primary: #f0f0f5;
  --text-secondary: #9494b0;
  --text-muted: #5e5e7a;
  --radius-card: 18px;
  --radius-btn: 50px;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 28px rgba(245, 197, 24, 0.25);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow: hidden;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Background Particles ---------- */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  animation: floatParticle linear infinite;
  opacity: 0;
}

.bg-particles span:nth-child(1) {
  width: 500px;
  height: 500px;
  left: -8%;
  top: -8%;
  animation-duration: 24s;
}

.bg-particles span:nth-child(2) {
  width: 350px;
  height: 350px;
  right: -4%;
  top: 25%;
  animation-duration: 30s;
  animation-delay: 3s;
}

.bg-particles span:nth-child(3) {
  width: 250px;
  height: 250px;
  left: 45%;
  top: 55%;
  animation-duration: 20s;
  animation-delay: 1s;
}

.bg-particles span:nth-child(4) {
  width: 180px;
  height: 180px;
  left: 12%;
  bottom: 12%;
  animation-duration: 28s;
  animation-delay: 6s;
}

.bg-particles span:nth-child(5) {
  width: 220px;
  height: 220px;
  right: 18%;
  bottom: 8%;
  animation-duration: 26s;
  animation-delay: 5s;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-60px) scale(1.04);
  }
}

/* ---------- Main Container ---------- */
.aigirl-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* ---------- Back Button ---------- */
.aigirl-back {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.aigirl-back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.aigirl-back svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   LANDING STATE — Centered girl + CTA
   ============================================================ */
.aigirl-landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.aigirl-landing.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

/* Video element — transparent, no controls */
.aigirl-video-landing {
  width: 480px;
  height: 660px;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 0 60px rgba(124, 58, 237, 0.3));
}

/* Glowing CTA button */
.aigirl-chat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border: 2px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow:
    0 0 30px rgba(124, 58, 237, 0.3),
    0 0 60px rgba(124, 58, 237, 0.15);
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.aigirl-chat-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.5),
    0 0 80px rgba(124, 58, 237, 0.25);
}

.aigirl-chat-btn .chat-emoji {
  font-size: 1.3rem;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3), 0 0 60px rgba(124, 58, 237, 0.15);
  }

  50% {
    box-shadow: 0 0 45px rgba(124, 58, 237, 0.5), 0 0 90px rgba(124, 58, 237, 0.25);
  }
}

/* Name Input Overlay */
.aigirl-name-overlay {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.aigirl-name-overlay.active {
  display: block;
  animation: fadeSlideUp 0.4s ease both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.aigirl-name-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  background: rgba(26, 26, 36, 0.92);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.15);
  width: min(320px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
}

.name-prompt {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.6;
}

.name-input {
  width: 100%;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  outline: none;
  text-align: center;
  transition: border-color 0.3s ease;
}

.name-input:focus {
  border-color: rgba(124, 58, 237, 0.6);
}

.name-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.name-submit-btn {
  width: 100%;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

.name-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.5);
}

/* ============================================================
   CHAT STATE — Split layout
   ============================================================ */
.aigirl-chat-layout {
  display: none;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.aigirl-chat-layout.active {
  display: flex;
  opacity: 1;
}

/* ---- Left: Video Panel (52%) ---- */
.aigirl-video-panel {
  width: 52%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 10px 40px 40px;
  position: relative;
  animation: slideInFromLeft 0.6s ease both;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.aigirl-video-chat {
  width: 100%;
  max-width: none;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 0 50px rgba(124, 58, 237, 0.25));
  transform: scale(1.3);
  transform-origin: top center;
}

/* Subtitle */
.aigirl-subtitle {
  margin-top: 20px;
  padding: 14px 24px;
  max-width: 400px;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  min-height: 52px;
  transition: all 0.3s ease;
  opacity: 0;
}

.aigirl-subtitle.visible {
  opacity: 1;
}

/* ---- Right: Chatbox (48%) ---- */
.aigirl-chatbox {
  width: 48%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 10px 40px 20px 10px;
  animation: slideInFromRight 0.6s ease 0.15s both;
}

@keyframes slideInFromRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Chat input bar */
/* Quick question buttons row */
.aigirl-quick-btns {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-shrink: 0;
}

.aigirl-quick-btns::-webkit-scrollbar {
  height: 0;
}

.aigirl-quick-btn {
  flex-shrink: 0;
  padding: 7px 14px;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.aigirl-quick-btn:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}

.aigirl-quick-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.aigirl-input-bar {
  display: flex;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.aigirl-input {
  flex: 1;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.78rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.aigirl-input:focus {
  border-color: rgba(124, 58, 237, 0.4);
}

.aigirl-send-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.aigirl-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.aigirl-send-btn svg {
  width: 20px;
  height: 20px;
}

.aigirl-joker-badge {
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 120;
  display: block;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.aigirl-joker-badge:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.aigirl-joker-badge:active {
  transform: scale(0.95);
}

.aigirl-chat-logo {
  width: 98px;
  height: auto;
  object-fit: contain;
  display: block;
}

.aigirl-chat-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.aigirl-chat-status {
  font-size: 0.78rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aigirl-chat-status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Message area */
.aigirl-messages {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 8px;
  margin-bottom: 24px;
}

/* Scrollbar styling */
.aigirl-messages::-webkit-scrollbar {
  width: 5px;
}

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

.aigirl-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

/* Chat bubbles */
.chat-bubble {
  max-width: 80%;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding: 12px 17px;
  border-radius: 18px;
  font-size: 0.78rem;
  line-height: 1.55;
  animation: bubblePop 0.35s ease both;
}

@keyframes bubblePop {
  from {
    transform: translateY(12px) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.chat-bubble.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a1000;
  border-bottom-right-radius: 6px;
  font-weight: 600;
}

.chat-bubble.ai {
  align-self: flex-start;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 6px;
  backdrop-filter: blur(8px);
}

/* Welcome message */
.chat-bubble.ai.welcome {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Typewriter cursor */
.typewriter-cursor {
  display: inline;
  color: var(--purple);
  font-weight: 300;
  animation: cursorBlink 0.7s ease-in-out infinite;
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 14px 20px;
  align-self: flex-start;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  backdrop-filter: blur(8px);
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* Question buttons area */
.aigirl-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aigirl-questions-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.aigirl-question-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.aigirl-question-btn:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.35);
  color: #fff;
  transform: translateX(4px);
}

.aigirl-question-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.aigirl-question-btn .q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* ---------- Blurred Photo Easter Egg ---------- */
.photo-response {
  max-width: 336px !important;
  width: fit-content !important;
}

.blurred-photo-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 10px 0;
}

.blurred-photo {
  width: 100%;
  max-width: 196px;
  border-radius: 14px;
  filter: blur(18px) brightness(0.7);
  display: block;
}

.blurred-photo.revealed {
  filter: blur(0) brightness(1);
  transition: filter 1.2s ease;
}

.blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 14px;
}

.blur-overlay .photo-hint {
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  padding: 0 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.roma-cta-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.roma-cta-overlay .roma-icon {
  width: 80px;
  height: 75px;
  object-fit: contain;
  border-radius: 12px;
}

.roma-cta-overlay .roma-play-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.lock-icon {
  font-size: 2.5rem;
  animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.blur-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Photo reveal animations */
.blur-overlay.fade-out {
  animation: overlayFadeOut 0.8s ease both;
}

@keyframes overlayFadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.photo-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  line-height: 1.5;
}

/* Revealed (unblurred) photo */
.revealed-photo {
  width: 100%;
  max-width: 196px;
  border-radius: 14px;
  display: block;
  animation: photoRevealIn 0.6s ease both;
}

@keyframes photoRevealIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photo-caption {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-style: italic;
}

.roma-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px;
  background: rgba(255, 195, 0, 0.08);
  border: 1px solid rgba(255, 195, 0, 0.2);
  border-radius: 14px;
}

.roma-icon {
  width: 130px;
  height: 122px;
  object-fit: contain;
  border-radius: 14px;
}

.roma-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1000;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow:
    0 0 20px rgba(245, 197, 24, 0.25),
    0 0 40px rgba(245, 197, 24, 0.1);
  animation: romaGlow 2s ease-in-out infinite;
}

.roma-play-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow:
    0 0 30px rgba(245, 197, 24, 0.4),
    0 0 60px rgba(245, 197, 24, 0.2);
}

@keyframes romaGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(245, 197, 24, 0.25), 0 0 40px rgba(245, 197, 24, 0.1);
  }

  50% {
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.4), 0 0 60px rgba(245, 197, 24, 0.2);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  .aigirl-container {
    align-items: stretch;
  }

  .aigirl-chat-layout.active {
    flex-direction: column;
  }

  .aigirl-video-panel {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 20px 20px;
    height: 40vh;
    min-height: 280px;
  }

  .aigirl-video-chat {
    max-height: 30vh;
  }

  .aigirl-subtitle {
    font-size: 0.82rem;
    padding: 10px 16px;
    max-width: 90%;
  }

  .aigirl-chatbox {
    width: 100%;
    min-width: 0;
    padding: 16px 16px calc(20px + env(safe-area-inset-bottom));
    height: 60vh;
  }

  .aigirl-video-landing {
    width: min(240px, calc(100vw - 48px));
    height: auto;
    max-height: 48vh;
  }

  .aigirl-back {
    top: 12px;
    left: 12px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .aigirl-joker-badge {
    top: 15px;
    left: 20px;
  }

  .aigirl-chat-logo {
    width: 98px;
  }

  .aigirl-name-overlay {
    bottom: max(20px, env(safe-area-inset-bottom));
    width: 100%;
  }

  .aigirl-name-box {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 22px 18px;
  }

  .aigirl-quick-btns {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .aigirl-quick-btn {
    max-width: none;
    white-space: nowrap;
    text-align: left;
  }

  .aigirl-input-bar {
    gap: 8px;
  }

  .aigirl-input {
    min-width: 0;
  }

  .chat-bubble {
    max-width: 92%;
    padding: 12px 16px;
  }
}