/* EP23 Starry AI Classification Styles */
.ep23-classify-wrap {
  position: absolute; right: 20px; bottom: 20px; z-index: 100;
  display: flex; flex-direction: column; max-width: 440px; width: calc(100% - 40px);
  pointer-events: auto; animation: ep23FadeIn 0.3s ease;
}
@keyframes ep23FadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ep23-panel {
  background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(192, 132, 252, 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);
}
.ep23-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.ep23-badge { background: linear-gradient(135deg, #a855f7, #c084fc); color: white; font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.ep23-hint { font-size: 12px; color: #e9d5ff; font-weight: 600; }
.ep23-feature-box { display: flex; align-items: center; gap: 12px; background: rgba(30,41,59,0.7); padding: 12px; border-radius: 12px; }
.ep23-shape-preview { font-size: 32px; padding: 4px 10px; background: rgba(15,23,42,0.85); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; }
.ep23-feature-text { display: flex; flex-direction: column; font-size: 13px; color: #f8fafc; }
.ep23-feature-text b { color: #c084fc; font-size: 14px; }
.ep23-feature-text small { color: #94a3b8; font-size: 11px; margin-top: 2px; }
.ep23-baskets-row { display: flex; gap: 8px; }
.ep23-basket-btn {
  flex: 1; padding: 10px 6px; 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: #f8fafc; cursor: pointer;
  min-height: 44px; transition: all 0.2s ease; text-align: center;
}
.ep23-basket-btn:hover { background: rgba(192, 132, 252, 0.25); border-color: #c084fc; transform: translateY(-1px); }
.ep23-status-msg { font-size: 12px; font-weight: 700; color: #e9d5ff; text-align: center; min-height: 18px; }

.ep23-complete-wrap { width: 100%; max-width: 900px; margin: 14px auto 0; animation: ep23FadeIn 0.4s ease; }
.ep23-complete-card {
  background: rgba(15, 23, 42, 0.92); border: 1px solid rgba(192, 132, 252, 0.4);
  border-radius: 20px; padding: 20px 24px; text-align: center;
}
.ep23-complete-icon { display: inline-block; background: rgba(192, 132, 252, 0.2); color: #c084fc; font-weight: 800; font-size: 13px; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; }
.ep23-comp-btn.primary { background: linear-gradient(135deg, #a855f7, #c084fc); color: white; border: none; padding: 10px 18px; border-radius: 12px; font-weight: 700; cursor: pointer; margin-top: 10px; }

.ep23-silent-next-wrap {
  width: 100%; max-width: 900px; margin: 12px auto 0; text-align: center;
}
.ep23-silent-next-btn {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: white; border: none; padding: 12px 24px; border-radius: 14px;
  font-size: 14px; font-weight: 800; cursor: pointer;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
  .ep23-classify-wrap { position: relative; right: auto; bottom: auto; width: 100%; max-width: 100%; margin: 12px auto 0; }
}
