/* ════════════════════════════════════════════════════════════════
   ALYX REDESIGN — Estilos
   ════════════════════════════════════════════════════════════════
   · Panel derecho rediseñado (override del inspector existente)
   · Glow en celdas para issues estructurales
   · Selector de géneros unificado (mismo estilo para recommended,
     featured y demás categorías)
   ════════════════════════════════════════════════════════════════ */

/* ── Panel derecho ─────────────────────────────────────────── */
#inspectorContent{
  padding: 0 !important;
  font-family: var(--ff-sans, -apple-system, system-ui, sans-serif);
  color: var(--text, #f0ead8);
}

.alyx-rp-empty{
  text-align: center;
  padding: 30px 16px;
  color: var(--text3, #8c8490);
}
.alyx-rp-empty-icon{
  font-size: 32px;
  color: var(--gold, #e8b84b);
  opacity: .5;
  margin-bottom: 10px;
}
.alyx-rp-empty-text{
  font-size: 13px;
  line-height: 1.5;
}

/* Selected cell header */
.alyx-rp-selected{
  background: linear-gradient(180deg, rgba(232,184,75,.07), transparent);
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--border, #28283a);
  margin-bottom: 4px;
}
.alyx-rp-selected-row{
  display: flex;
  align-items: center;
  gap: 12px;
}
.alyx-rp-icon{
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3, #252532);
  border-radius: 6px;
}
.alyx-rp-selected-info{
  flex: 1;
  min-width: 0;
}
.alyx-rp-selected-title{
  font-family: var(--ff-cinzel, serif);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold, #e8b84b);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.alyx-rp-selected-clip{
  font-size: 12px;
  color: var(--text2, #b8b0a2);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sections */
.alyx-rp-section{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(40,40,58,.6);
}
.alyx-rp-section:last-child{
  border-bottom: 0;
}
.alyx-rp-label{
  font-family: var(--ff-cinzel, serif);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text3, #8c8490);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.alyx-rp-label-hint{
  font-family: var(--ff-mono, monospace);
  font-size: 9px;
  letter-spacing: 0.3px;
  color: var(--text3, #8c8490);
  opacity: .6;
  text-transform: lowercase;
}
.alyx-rp-label-ai{
  font-family: var(--ff-mono, monospace);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold2, #f0c860);
  background: rgba(232,184,75,.12);
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid rgba(232,184,75,.25);
}

/* Intensity slider with gradient */
.alyx-rp-intensity-bar{
  position: relative;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg,
    rgba(74,200,112,.6) 0%,
    rgba(232,184,75,.7) 50%,
    rgba(232,74,96,.85) 100%);
  margin-bottom: 4px;
  overflow: hidden;
}
.alyx-rp-intensity-fill{
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,.05);
}
.alyx-rp-intensity-thumb{
  position: absolute;
  top: -3px;
  width: 4px;
  height: 16px;
  background: var(--text, #f0ead8);
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(255,255,255,.5);
  pointer-events: none;
}
.alyx-rp-intensity-labels{
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono, monospace);
  font-size: 9px;
  letter-spacing: 0.5px;
  color: var(--text3, #8c8490);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.alyx-rp-intensity-input{
  width: 100%;
  height: 4px;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  margin-top: -8px;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.alyx-rp-intensity-input::-webkit-slider-thumb{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

/* Transform/Effect/Vocal grid */
.alyx-rp-tx-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.alyx-rp-tx-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg3, #252532);
  border: 1px solid var(--border, #28283a);
  border-radius: 4px;
  color: var(--text2, #b8b0a2);
  font-family: var(--ff-sans, sans-serif);
  font-size: 12px;
  cursor: pointer;
  transition: all .14s ease;
  text-align: left;
  min-height: 36px;
}
.alyx-rp-tx-btn:hover{
  background: var(--bg4, #2e2e3c);
  border-color: var(--gold, #e8b84b);
  color: var(--gold2, #f0c860);
}
.alyx-rp-tx-btn:active{
  transform: scale(.97);
}
.alyx-rp-tx-icon{
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.alyx-rp-tx-label{
  flex: 1;
  font-size: 11px;
  line-height: 1.2;
}

/* Effect buttons — cyan accent to differentiate from Transform */
.alyx-rp-tx-btn-effect:hover{
  border-color: #4ad0d8;
  color: #4ad0d8;
}
/* Vocal buttons — crimson accent */
.alyx-rp-tx-btn-vocal:hover{
  border-color: var(--crimson, #e84a60);
  color: var(--crimson2, #f06070);
}

/* Suggestions / Similar Ideas */
.alyx-rp-suggestions{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.alyx-rp-suggestions-empty{
  font-size: 11px;
  font-style: italic;
  color: var(--text3, #8c8490);
  padding: 8px 4px;
}
.alyx-rp-sug-item{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: rgba(255,255,255,.015);
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--ff-sans, sans-serif);
  font-size: 12px;
  color: var(--text2, #b8b0a2);
  cursor: pointer;
  text-align: left;
  transition: all .12s;
  width: 100%;
}
.alyx-rp-sug-item:hover{
  background: rgba(232,184,75,.06);
  border-color: rgba(232,184,75,.3);
  color: var(--text, #f0ead8);
}
.alyx-rp-sug-dot{
  width: 6px; height: 6px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold, #e8b84b);
}
.alyx-rp-sug-dot.soft{ background: #4ac870; }
.alyx-rp-sug-dot.mid{ background: var(--gold, #e8b84b); }
.alyx-rp-sug-dot.intense{ background: var(--crimson, #e84a60); }
.alyx-rp-sug-text{
  flex: 1;
  font-size: 11.5px;
  line-height: 1.35;
}
.alyx-rp-sug-item-similar .alyx-rp-sug-text{
  font-style: italic;
}

/* ── Cell glow when hovering issues in insights panel ──────── */
.seq-cell.alyx-issue-glow-critical,
.clip-cell.alyx-issue-glow-critical{
  animation: alyxGlowCritical 2.4s ease-out;
  position: relative;
  z-index: 5;
}
.seq-cell.alyx-issue-glow-warning,
.clip-cell.alyx-issue-glow-warning{
  animation: alyxGlowWarning 2.4s ease-out;
  position: relative;
  z-index: 5;
}
.seq-cell.alyx-issue-glow-info,
.clip-cell.alyx-issue-glow-info{
  animation: alyxGlowInfo 2.4s ease-out;
  position: relative;
  z-index: 5;
}

@keyframes alyxGlowCritical{
  0%   { box-shadow: 0 0 0 0 rgba(232,74,96,0);       outline: 2px solid rgba(232,74,96,0); }
  25%  { box-shadow: 0 0 24px 4px rgba(232,74,96,.7); outline: 2px solid rgba(232,74,96,.9); }
  100% { box-shadow: 0 0 0 0 rgba(232,74,96,0);       outline: 2px solid rgba(232,74,96,0); }
}
@keyframes alyxGlowWarning{
  0%   { box-shadow: 0 0 0 0 rgba(232,184,75,0);       outline: 2px solid rgba(232,184,75,0); }
  25%  { box-shadow: 0 0 22px 4px rgba(232,184,75,.7); outline: 2px solid rgba(232,184,75,.9); }
  100% { box-shadow: 0 0 0 0 rgba(232,184,75,0);       outline: 2px solid rgba(232,184,75,0); }
}
@keyframes alyxGlowInfo{
  0%   { box-shadow: 0 0 0 0 rgba(74,208,216,0);       outline: 2px solid rgba(74,208,216,0); }
  25%  { box-shadow: 0 0 20px 4px rgba(74,208,216,.6); outline: 2px solid rgba(74,208,216,.8); }
  100% { box-shadow: 0 0 0 0 rgba(74,208,216,0);       outline: 2px solid rgba(74,208,216,0); }
}

/* Insights panel items — cursor pointer to signal interactivity */
.alyx-ins-item[data-secid]{
  cursor: pointer;
  transition: background .12s;
}
.alyx-ins-item[data-secid]:hover{
  background: rgba(255,255,255,.04);
}

/* ── Selector de géneros unificado ─────────────────────────── */
/* Hacemos que las dos secciones (gp-recommended y genreScroll)
   usen el mismo estilo de tarjeta. */
.gp-recommended .gp-chip,
#genreScroll .gs-item{
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  background: var(--bg3, #252532) !important;
  border: 1px solid var(--border, #28283a) !important;
  border-radius: 5px !important;
  margin-bottom: 5px !important;
  cursor: pointer !important;
  transition: all .12s !important;
  text-align: left !important;
  width: 100% !important;
}
.gp-recommended .gp-chip:hover,
#genreScroll .gs-item:hover{
  background: var(--bg4, #2e2e3c) !important;
  border-color: var(--gold, #e8b84b) !important;
}
.gp-recommended .gp-chip.on,
#genreScroll .gs-item.on{
  background: linear-gradient(180deg, rgba(160,74,232,.15), rgba(160,74,232,.05)) !important;
  border-color: rgba(160,74,232,.6) !important;
}

/* ════════════════════════════════════════════════════════════════
   REGLAS EXTRAÍDAS DE v2 (que sí funcionaban bien)
   ════════════════════════════════════════════════════════════════ */

/* Emociones en grid 2 columnas */
.em-grid{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4px !important;
  flex-direction: unset !important;
}
.em-btn2{
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 8px !important;
  min-height: 32px;
}
.em-btn2-icon{ font-size: 14px !important; }
.em-btn2-name{ font-size: 10.5px !important; letter-spacing: .3px !important; }

/* Selector de géneros UNIFICADO — clases reales (.gp-rec-card y .genre-item) */
.gp-rec-card,
.genre-item{
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  background: var(--bg3, #252532) !important;
  border: 1px solid var(--border, #28283a) !important;
  border-radius: 5px !important;
  margin: 0 12px 5px !important;
  cursor: pointer !important;
  transition: all .12s !important;
  text-align: left !important;
}
.gp-rec-card:hover,
.genre-item:hover{
  background: var(--bg4, #2e2e3c) !important;
  border-color: var(--gold, #e8b84b) !important;
}
.gp-rec-card.active,
.genre-item.active{
  background: linear-gradient(180deg, rgba(160,74,232,.18), rgba(160,74,232,.06)) !important;
  border-color: rgba(160,74,232,.6) !important;
}
.gp-rec-icon,
.genre-item-icon{
  font-size: 18px !important;
  flex-shrink: 0 !important;
  width: 24px !important;
  text-align: center !important;
}
.gp-rec-info, .genre-item-info{ flex: 1 !important; min-width: 0 !important; }
.gp-rec-name, .genre-item-name{
  font-family: var(--ff-cinzel, serif) !important;
  font-size: 12px !important;
  letter-spacing: 0.6px !important;
  color: var(--text, #f0ead8) !important;
  text-transform: none !important;
  margin-bottom: 2px !important;
}
.gp-rec-card.active .gp-rec-name,
.genre-item.active .genre-item-name{ color: var(--gold, #e8b84b) !important; }
.gp-rec-tags, .genre-item-tags{
  font-family: var(--ff-crimson, Georgia, serif) !important;
  font-size: 10.5px !important;
  font-style: italic !important;
  color: var(--text3, #8c8490) !important;
}
.gp-rec-dot{ display: none !important; }

.gpc-row{
  margin: 8px 12px 4px !important;
  padding: 4px 0 !important;
  border-bottom: 1px solid rgba(40,40,58,.6) !important;
}
.gpc-items{ margin-bottom: 6px !important; }

/* ════════════════════════════════════════════════════════════════
   v3 — Insights docked/floating + topbar menu + prompt textarea
   ════════════════════════════════════════════════════════════════ */

/* Panel modes */
#alyxInsightsPanel.alyx-ins-docked{
  width: 36px !important;
  height: auto !important;
  min-width: 0;
  min-height: 0;
  resize: none;
  border-right: 1px solid var(--border2, #36364a);
  border-radius: 0 6px 6px 0;
  overflow: hidden;
  cursor: pointer;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-header{
  flex-direction: column;
  padding: 10px 6px;
  cursor: pointer;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-title{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  margin: 6px 0;
  flex: none;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-badges{
  flex-direction: column;
  gap: 3px;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-body{
  display: none !important;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-toggle,
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-dock{
  display: none;
}

#alyxInsightsPanel.alyx-ins-floating{
  cursor: default;
  resize: both;
  min-width: 280px;
  min-height: 120px;
  border-radius: 6px;
}
#alyxInsightsPanel.alyx-ins-floating .alyx-ins-header{
  cursor: move;
  user-select: none;
}
.alyx-ins-dock{
  font-size: 13px;
  line-height: 1;
}
.alyx-ins-dock:hover{
  color: var(--gold, #e8b84b) !important;
}

/* Topbar consolidation menu */
.alyx-topbar-more{
  background: transparent;
  border: 1px solid var(--border2, #36364a);
  border-radius: 4px;
  color: var(--text2, #b8b0a2);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  margin-left: 4px;
  transition: all .12s;
}
.alyx-topbar-more:hover{
  background: var(--bg3, #252532);
  border-color: var(--gold, #e8b84b);
  color: var(--gold, #e8b84b);
}
.alyx-topbar-more-pop{
  position: fixed;
  z-index: 10000;
  background: var(--bg2, #1e1e26);
  border: 1px solid var(--border2, #36364a);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  padding: 6px;
  min-width: 220px;
}
.alyx-topbar-more-row{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 3px;
  transition: background .1s;
}
.alyx-topbar-more-row:hover{
  background: var(--bg3, #252532);
}
.alyx-topbar-more-row > button,
.alyx-topbar-more-row > .icon-btn{
  flex-shrink: 0;
}
.alyx-topbar-more-label{
  flex: 1;
  font-family: var(--ff-sans, sans-serif);
  font-size: 11.5px;
  color: var(--text2, #b8b0a2);
  text-transform: capitalize;
}

/* Inspector prompt textarea — double the height to use the empty
   space below in the inspector panel. */
#ctxPromptTa{
  min-height: 280px !important;
  height: auto !important;
}
.rp-body{
  display: flex !important;
  flex-direction: column !important;
}
.rp-body .rp-section:has(#ctxPromptTa){
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.rp-body .rp-section:has(#ctxPromptTa) #ctxPromptTa{
  flex: 1 !important;
}


/* ════════════════════════════════════════════════════════════════
   v4 — Insights horizontal en sidebar + "What happens next" 3x
   ════════════════════════════════════════════════════════════════ */

/* Insights horizontal docked: franja al fondo del sidebar izquierdo */
#alyxInsightsPanel.alyx-ins-docked{
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
  height: 44px !important;
  border-radius: 0 !important;
  border-top: 1px solid var(--border2, #36364a);
  border-right: none;
  cursor: pointer;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-header{
  flex-direction: row;
  padding: 10px 12px;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-title{
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 10px;
  margin: 0;
  flex: 1;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-badges{
  flex-direction: row;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-body{
  display: none !important;
}
#alyxInsightsPanel.alyx-ins-docked .alyx-ins-toggle{ display: none; }

/* Make the sidebar position-relative so the docked panel can anchor */
.lsidebar{ position: relative; }

/* "What happens next" / suggestions section — 3x larger.
   The suggestions block in the insights panel becomes the focal element. */
.alyx-ins-body .alyx-ins-section:nth-child(2){
  padding: 16px 14px;
}
.alyx-ins-body .alyx-ins-section:nth-child(2) .alyx-ins-section-title{
  font-size: 13px;
  letter-spacing: 1.8px;
  color: var(--gold, #e8b84b);
}
.alyx-ins-body .alyx-ins-section:nth-child(2) .alyx-ins-item{
  font-size: 14px;
  padding: 10px 12px;
  line-height: 1.5;
  min-height: 50px;
}
.alyx-ins-body .alyx-ins-section:nth-child(2) .alyx-ins-text{
  font-size: 13px;
}
.alyx-ins-body .alyx-ins-section:nth-child(2) .alyx-ins-tag{
  font-size: 10px;
  padding: 2px 8px;
  min-width: 56px;
}

/* Quick Ideas (emotional shortcuts) */
.alyx-quick-emotions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 8px 12px;
}
.alyx-quick-emo-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg3, #252532);
  border: 1px solid var(--border, #28283a);
  border-radius: 4px;
  color: var(--text2, #b8b0a2);
  font-family: var(--ff-sans, sans-serif);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  transition: all .12s;
}
.alyx-quick-emo-btn:hover{
  background: var(--bg4, #2e2e3c);
  border-color: var(--gold, #e8b84b);
  color: var(--gold2, #f0c860);
}
.alyx-quick-emo-icon{ font-size: 18px; }

/* En Simple Mode, asegurarnos de que el sidebar izquierdo muestra
   genre, key y scale igual que en Advanced. Simple Mode no oculta
   esos bloques de fábrica si son hijos de .lsidebar — confirmamos. */
body.simple-mode .lsidebar .ls-section,
.lsidebar .ls-section{
  display: block !important;
}

/* ════════════════════════════════════════════════════════════════
   ONBOARDING — Tours con glow dorado y animaciones premium
   ════════════════════════════════════════════════════════════════ */

/* Overlay oscuro con blur del resto de la pantalla */
.alyx-ob-overlay{
  position: fixed; inset: 0;
  z-index: 10500;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: auto;
  opacity: 0;
  transition: background .4s ease, backdrop-filter .4s ease, opacity .4s ease;
}
.alyx-ob-overlay.alyx-ob-overlay-show{
  background: rgba(8, 8, 14, .68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 1;
}
.alyx-ob-hidden{ display: none !important; }

/* Glow dorado en el elemento target */
.alyx-ob-glow{
  position: fixed;
  pointer-events: none;
  z-index: 10550;
  border-radius: 8px;
  opacity: 0;
  transition: left .35s cubic-bezier(.4,0,.2,1),
              top .35s cubic-bezier(.4,0,.2,1),
              width .35s cubic-bezier(.4,0,.2,1),
              height .35s cubic-bezier(.4,0,.2,1),
              opacity .25s ease;
  box-shadow:
    0 0 0 2px rgba(232,184,75,.95),
    0 0 14px 2px rgba(232,184,75,.7),
    0 0 36px 8px rgba(232,184,75,.45),
    0 0 80px 20px rgba(232,184,75,.18);
}
.alyx-ob-glow.alyx-ob-glow-active{
  opacity: 1;
  animation: alyx-ob-breathe 2.2s ease-in-out infinite;
}
@keyframes alyx-ob-breathe{
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(232,184,75,.95),
      0 0 14px 2px rgba(232,184,75,.7),
      0 0 36px 8px rgba(232,184,75,.45),
      0 0 80px 20px rgba(232,184,75,.18);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(255,210,110,1),
      0 0 22px 4px rgba(255,210,110,.85),
      0 0 56px 14px rgba(232,184,75,.55),
      0 0 110px 30px rgba(232,184,75,.25);
  }
}
.alyx-ob-glow.alyx-ob-glow-flash{
  animation: alyx-ob-flash .3s ease-out, alyx-ob-breathe 2.2s ease-in-out .3s infinite;
}
@keyframes alyx-ob-flash{
  0% { filter: brightness(1.6) saturate(1.4); transform: scale(1.06); }
  100% { filter: brightness(1) saturate(1); transform: scale(1); }
}

/* Tooltip con bounce de entrada */
.alyx-ob-tooltip{
  position: fixed;
  z-index: 10600;
  width: 320px;
  max-width: calc(100vw - 24px);
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, #1a1a24 0%, #14141c 100%);
  border: 1px solid rgba(232,184,75,.55);
  border-radius: 8px;
  box-shadow:
    0 8px 32px rgba(0,0,0,.6),
    0 0 0 1px rgba(232,184,75,.15),
    0 0 24px rgba(232,184,75,.18);
  opacity: 0;
  transform: translateY(8px) scale(.97);
  transition: opacity .28s ease, transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.alyx-ob-tooltip.alyx-ob-tooltip-show{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.alyx-ob-step{
  font-family: var(--ff-mono, monospace);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold, #e8b84b);
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: .8;
}
.alyx-ob-title{
  font-family: var(--ff-cinzel, serif);
  font-size: 17px;
  letter-spacing: .8px;
  color: var(--text, #f0ead8);
  margin: 0 0 8px;
  font-weight: 600;
}
.alyx-ob-body{
  font-family: var(--ff-sans, sans-serif);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text2, #b8b0a2);
  margin: 0 0 16px;
}
.alyx-ob-actions{
  display: flex;
  align-items: center;
  gap: 8px;
}
.alyx-ob-btn{
  background: transparent;
  border: 1px solid var(--border2, #36364a);
  color: var(--text2, #b8b0a2);
  font-family: var(--ff-sans, sans-serif);
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .15s ease;
}
.alyx-ob-btn:hover{
  border-color: var(--gold, #e8b84b);
  color: var(--gold, #e8b84b);
  background: rgba(232,184,75,.08);
}
.alyx-ob-next{
  border-color: var(--gold, #e8b84b);
  color: var(--gold, #e8b84b);
  background: rgba(232,184,75,.1);
}
.alyx-ob-next:hover{
  background: rgba(232,184,75,.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,184,75,.25);
}
.alyx-ob-skip{
  font-size: 11px;
  letter-spacing: .5px;
  opacity: .7;
  position: relative;
}
.alyx-ob-skip:hover{ opacity: 1; }

/* Confetti partícula */
.alyx-ob-confetti{
  position: fixed;
  width: 8px; height: 12px;
  background: linear-gradient(180deg, #e8b84b, #f0c860);
  z-index: 10700;
  pointer-events: none;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(232,184,75,.6);
}
.alyx-ob-confetti:nth-child(2n){
  background: linear-gradient(180deg, #f0c860, #fff2c0);
  width: 6px; height: 6px;
  border-radius: 50%;
}
.alyx-ob-confetti:nth-child(3n){
  background: linear-gradient(180deg, #d4a73f, #e8b84b);
  width: 10px; height: 4px;
}

/* Help button (replay) */
.alyx-ob-help{
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 9985;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg2, #1e1e26);
  border: 1px solid var(--border2, #36364a);
  color: var(--text3, #8c8490);
  font-family: var(--ff-cinzel, serif);
  font-size: 16px;
  cursor: pointer;
  transition: all .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.alyx-ob-help:hover{
  border-color: var(--gold, #e8b84b);
  color: var(--gold, #e8b84b);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(232,184,75,.3);
}
