/* EP28 Starry Clone Styles */
.ep28-clone-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: ep28FadeIn 0.3s ease;
}
@keyframes ep28FadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ep28-panel {
  background: rgba(15, 23, 42, 0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 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);
}
.ep28-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.ep28-badge { background: linear-gradient(135deg, #a855f7, #c084fc); color: white; font-size: 13px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }
.ep28-hint { font-size: 12px; color: #e9d5ff; font-weight: 600; }

.ep28-stars-box {
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(30, 41, 59, 0.8); border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 14px; padding: 14px;
}
.ep28-stars-display {
  display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px;
  font-size: 28px; flex-wrap: wrap;
}
.ep28-star-item {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: rgba(15, 23, 42, 0.8); border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15); animation: ep28Pop 0.25s ease;
}
.ep28-star-item.orig { border-color: #facc15; background: rgba(250, 204, 21, 0.2); }
.ep28-star-item.clone { border-color: #c084fc; background: rgba(192, 132, 252, 0.2); }
@keyframes ep28Pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.ep28-count-info {
  display: flex; justify-content: space-between; font-size: 12px; color: #cbd5e1;
  font-weight: 700; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 8px;
}
.ep28-count-info b { color: #c084fc; font-size: 14px; }

.ep28-btn-clone {
  width: 100%; padding: 12px; font-size: 14px; font-weight: 800; border: none; border-radius: 12px;
  background: linear-gradient(135deg, #a855f7, #7c3aed); color: white; cursor: pointer; min-height: 48px;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4); transition: all 0.2s ease;
}
.ep28-btn-clone:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.ep28-btn-clone:disabled { opacity: 0.5; cursor: not-allowed; }
.ep28-status-msg { font-size: 12px; font-weight: 700; color: #e9d5ff; text-align: center; min-height: 18px; }

.ep28-complete-wrap { width: 100%; max-width: 900px; margin: 14px auto 0; animation: ep28FadeIn 0.4s ease; }
.ep28-complete-card {
  background: rgba(15, 23, 42, 0.92); border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 20px; padding: 20px 24px; text-align: center;
}
.ep28-complete-icon { display: inline-block; background: rgba(168, 85, 247, 0.2); color: #c084fc; font-weight: 800; font-size: 13px; padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; }
.ep28-comp-btn.primary { background: linear-gradient(135deg, #a855f7, #7c3aed); color: white; border: none; padding: 10px 18px; border-radius: 12px; font-weight: 700; cursor: pointer; margin-top: 10px; }

.ep28-silent-next-wrap {
  width: 100%; max-width: 900px; margin: 12px auto 0; text-align: center;
}
.ep28-silent-next-btn {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  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) {
  .ep28-clone-wrap { position: relative; right: auto; bottom: auto; width: 100%; max-width: 100%; margin: 12px auto 0; }
}
