/* EP19 Coco AND Logic Styles */
.ep19-logic-wrap {
  position: absolute; right: 20px; bottom: 20px; z-index: 100;
  display: flex; flex-direction: column; max-width: 248px; width: calc(100% - 40px);
  pointer-events: auto; animation: ep19FadeIn 0.3s ease;
}
@keyframes ep19FadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ep19-panel {
  background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.4); border-radius: 18px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.ep19-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ep19-badge { background: linear-gradient(135deg, #0284c7, #38bdf8); color: white; font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.ep19-hint { font-size: 11px; color: #bae6fd; font-weight: 600; }
.ep19-keys-row { display: flex; align-items: center; gap: 8px; background: rgba(30,41,59,0.7); padding: 10px; border-radius: 12px; }
@media (min-width: 769px) {
  .ep19-title-row, .ep19-keys-row { flex-direction: column; align-items: stretch; text-align: center; }
}
.ep19-key-btn {
  flex: 1; padding: 10px 8px; font-size: 12px; font-weight: 700; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15); background: rgba(15,23,42,0.8); color: #94a3b8; cursor: pointer;
  min-height: 44px; transition: all 0.2s ease;
}
.ep19-key-btn.inserted { background: rgba(56, 189, 248, 0.25); border-color: #38bdf8; color: #f0f9ff; box-shadow: 0 0 12px rgba(56,189,248,0.4); }
.ep19-and-tag { font-size: 12px; font-weight: 800; color: #facc15; font-family: 'JetBrains Mono', monospace; }
.ep19-status-tag { font-size: 12px; color: #bae6fd; text-align: center; display: block; font-weight: 600; }
.ep19-status-tag.success { color: #4ade80; }
.ep19-complete-wrap { width: 100%; max-width: 900px; margin: 14px auto 0; animation: ep19FadeIn 0.4s ease; }
.ep19-complete-card {
  background: rgba(15, 23, 42, 0.9); border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 20px; padding: 20px 24px; text-align: center;
}
.ep19-complete-icon { display: inline-block; background: rgba(56, 189, 248, 0.2); color: #38bdf8; font-weight: 800; font-size: 13px; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; }
.ep19-comp-btn.primary { background: linear-gradient(135deg, #0284c7, #38bdf8); color: white; border: none; padding: 10px 18px; border-radius: 12px; font-weight: 700; cursor: pointer; }
@media (max-width: 768px) {
  .ep19-logic-wrap { position: relative; right: auto; bottom: auto; width: 100%; max-width: 100%; margin: 12px auto 0; }
}
