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

:root {
  --dy-red: #FE2C55;
  --dy-cyan: #25F4EE;
  --dy-dark: #161823;
  --dy-darker: #0d0e16;
  --dy-card: #1c1e2d;
  --dy-border: #2a2d3e;
  --dy-text: #e8e8ef;
  --dy-text-secondary: #8a8ca0;
  --dy-bg: #121318;
  --gradient-main: linear-gradient(135deg, #FE2C55, #ff6b81);
  --gradient-cyan: linear-gradient(135deg, #25F4EE, #6cf7f0);
  --gradient-mixed: linear-gradient(135deg, #25F4EE, #FE2C55);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', sans-serif;
  background: var(--dy-bg);
  color: var(--dy-text);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* ===== Pages ===== */
.page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(30px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.page.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 10;
}

.page.exit {
  opacity: 0;
  transform: translateX(-30px);
}

/* ===== Home Page ===== */
#page-home {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dy-darker);
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(254,44,85,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(37,244,238,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(254,44,85,0.08) 0%, transparent 50%);
  z-index: 0;
}

.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?w=800&h=1400&fit=crop') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.home-content {
  position: relative;
  z-index: 2;
  padding: 40px 28px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-logo {
  text-align: center;
  margin-bottom: 48px;
}

.logo-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  animation: float 3s ease-in-out infinite;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(37,244,238,0.3));
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.logo-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--dy-text-secondary);
  font-weight: 300;
}

.home-features {
  width: 100%;
  margin-bottom: 48px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:active {
  background: rgba(255,255,255,0.06);
  transform: scale(0.98);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}

.feature-item:nth-child(1) .feature-icon {
  background: rgba(254,44,85,0.12);
  color: var(--dy-red);
}

.feature-item:nth-child(2) .feature-icon {
  background: rgba(37,244,238,0.12);
  color: var(--dy-cyan);
}

.feature-item:nth-child(3) .feature-icon {
  background: rgba(254,44,85,0.1);
  color: var(--dy-red);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-info p {
  font-size: 12px;
  color: var(--dy-text-secondary);
  line-height: 1.4;
}

.btn-start {
  width: 100%;
  max-width: 320px;
  height: 52px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-start::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-start svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-start:active svg {
  transform: translateX(4px);
}

/* ===== Particles ===== */
.home-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(37,244,238,0.4);
  animation: drift linear infinite;
}

@keyframes drift {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== Page Header ===== */
.page-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(18,19,24,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 20;
}

.page-header h2 {
  font-size: 17px;
  font-weight: 600;
}

.btn-back {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--dy-text);
  cursor: pointer;
}

.btn-back svg {
  width: 22px;
  height: 22px;
}

.header-right {
  width: 36px;
}

/* ===== Steps Indicator ===== */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.step.active {
  opacity: 1;
}

.step.completed {
  opacity: 0.7;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: var(--dy-card);
  border: 2px solid var(--dy-border);
  color: var(--dy-text-secondary);
  transition: all 0.3s ease;
}

.step.active .step-dot {
  background: var(--gradient-main);
  border-color: var(--dy-red);
  color: white;
  box-shadow: 0 0 16px rgba(254,44,85,0.4);
}

.step.completed .step-dot {
  background: var(--dy-cyan);
  border-color: var(--dy-cyan);
  color: var(--dy-darker);
}

.step span {
  font-size: 12px;
  color: var(--dy-text-secondary);
}

.step.active span {
  color: var(--dy-text);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--dy-border);
  margin: 0 8px;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.step-line.active {
  background: var(--gradient-mixed);
}

/* ===== Step Content ===== */
.step-content {
  display: none;
  padding: 0 20px 40px;
  animation: fadeUp 0.4s ease;
}

.step-content.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title {
  margin-bottom: 24px;
}

.section-title h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-title p {
  font-size: 13px;
  color: var(--dy-text-secondary);
  line-height: 1.5;
}

/* ===== Upload Area ===== */
.upload-area {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 360px;
  border: 2px dashed var(--dy-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}

.upload-area:active {
  border-color: var(--dy-red);
  background: rgba(254,44,85,0.03);
}

.upload-area.has-image {
  border-style: solid;
  border-color: var(--dy-cyan);
}

.upload-placeholder {
  text-align: center;
  color: var(--dy-text-secondary);
}

.upload-placeholder svg {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  opacity: 0.5;
}

.upload-placeholder p {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--dy-text);
}

.upload-placeholder span {
  font-size: 12px;
}

.upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-reupload {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 13px;
  cursor: pointer;
  z-index: 5;
}

/* ===== Voice Recording ===== */
.voice-script {
  background: var(--dy-card);
  border: 1px solid var(--dy-border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 28px;
}

.script-label {
  font-size: 11px;
  color: var(--dy-cyan);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.script-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dy-text);
}

.voice-recorder {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  margin-bottom: 24px;
}

.recorder-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 48px;
  margin-bottom: 16px;
}

.wave-bar {
  width: 3px;
  height: 8px;
  background: var(--dy-cyan);
  border-radius: 2px;
  opacity: 0.3;
  transition: height 0.15s ease, opacity 0.15s ease;
}

.recording .wave-bar {
  opacity: 0.8;
  animation: wave 0.8s ease-in-out infinite;
}

.recording .wave-bar:nth-child(1) { animation-delay: 0s; }
.recording .wave-bar:nth-child(2) { animation-delay: 0.05s; }
.recording .wave-bar:nth-child(3) { animation-delay: 0.1s; }
.recording .wave-bar:nth-child(4) { animation-delay: 0.15s; }
.recording .wave-bar:nth-child(5) { animation-delay: 0.2s; }
.recording .wave-bar:nth-child(6) { animation-delay: 0.25s; }
.recording .wave-bar:nth-child(7) { animation-delay: 0.3s; }
.recording .wave-bar:nth-child(8) { animation-delay: 0.35s; }
.recording .wave-bar:nth-child(9) { animation-delay: 0.4s; }
.recording .wave-bar:nth-child(10) { animation-delay: 0.45s; }
.recording .wave-bar:nth-child(11) { animation-delay: 0.5s; }
.recording .wave-bar:nth-child(12) { animation-delay: 0.55s; }
.recording .wave-bar:nth-child(13) { animation-delay: 0.6s; }
.recording .wave-bar:nth-child(14) { animation-delay: 0.65s; }
.recording .wave-bar:nth-child(15) { animation-delay: 0.7s; }
.recording .wave-bar:nth-child(16) { animation-delay: 0.75s; }
.recording .wave-bar:nth-child(17) { animation-delay: 0.8s; }
.recording .wave-bar:nth-child(18) { animation-delay: 0.85s; }
.recording .wave-bar:nth-child(19) { animation-delay: 0.9s; }
.recording .wave-bar:nth-child(20) { animation-delay: 0.95s; }

@keyframes wave {
  0%, 100% { height: 8px; }
  50% { height: 36px; }
}

.recorder-time {
  font-size: 28px;
  font-weight: 300;
  color: var(--dy-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.btn-record {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dy-card);
  border: 3px solid var(--dy-red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.btn-record:active {
  transform: scale(0.95);
}

.btn-record.recording {
  border-color: var(--dy-red);
  box-shadow: 0 0 0 4px rgba(254,44,85,0.2), 0 0 20px rgba(254,44,85,0.3);
}

.record-inner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dy-red);
  transition: all 0.3s ease;
}

.btn-record.recording .record-inner {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.recorder-hint {
  font-size: 13px;
  color: var(--dy-text-secondary);
  margin-top: 12px;
}

/* ===== Create Options ===== */
.option-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  background: var(--dy-card);
  border: 1px solid var(--dy-border);
  color: var(--dy-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag.active {
  background: rgba(254,44,85,0.12);
  border-color: var(--dy-red);
  color: var(--dy-red);
}

.create-input {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  background: var(--dy-card);
  border: 1px solid var(--dy-border);
  border-radius: var(--radius-md);
  color: var(--dy-text);
  font-size: 14px;
  line-height: 1.6;
  resize: none;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.create-input:focus {
  border-color: var(--dy-red);
}

.create-input::placeholder {
  color: var(--dy-text-secondary);
  opacity: 0.6;
}

.input-count {
  text-align: right;
  font-size: 12px;
  color: var(--dy-text-secondary);
  margin-top: 6px;
}

/* ===== Buttons ===== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--gradient-main);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:active {
  transform: scale(0.98);
  opacity: 0.9;
}

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

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid var(--dy-border);
  border-radius: var(--radius-md);
  background: var(--dy-card);
  color: var(--dy-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:active {
  background: rgba(255,255,255,0.05);
}

.btn-next {
  margin-top: 28px;
}

.btn-create {
  margin-top: 28px;
  background: var(--gradient-mixed);
  height: 52px;
  font-size: 17px;
  letter-spacing: 1px;
}

.btn-sparkle {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}

/* ===== Creating Page ===== */
#page-creating {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dy-darker);
}

.creating-content {
  text-align: center;
  padding: 40px;
}

.creating-animation {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
}

.creating-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--dy-cyan);
  box-shadow: 0 0 24px rgba(37,244,238,0.3);
}

.creating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(37,244,238,0.15);
  border-radius: 50%;
  animation: orbit 3s linear infinite;
}

.orbit-ring.delay {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-color: rgba(254,44,85,0.15);
  animation-duration: 4s;
  animation-direction: reverse;
}

.orbit-dot {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dy-cyan);
  box-shadow: 0 0 10px var(--dy-cyan);
}

.orbit-ring.delay .orbit-dot {
  background: var(--dy-red);
  box-shadow: 0 0 10px var(--dy-red);
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.creating-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.creating-desc {
  font-size: 14px;
  color: var(--dy-text-secondary);
  margin-bottom: 32px;
  min-height: 20px;
}

.creating-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--dy-card);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-mixed);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 13px;
  color: var(--dy-text-secondary);
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}

/* ===== Preview Page ===== */
.preview-content {
  padding-bottom: 100px;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 520px;
  background: var(--dy-darker);
  overflow: hidden;
}

.video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
}

.btn-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-play:active {
  transform: scale(0.9);
}

.btn-play svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.video-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-music {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ===== Preview Details ===== */
.preview-details {
  padding: 20px;
}

.detail-card {
  background: var(--dy-card);
  border: 1px solid var(--dy-border);
  border-radius: var(--radius-md);
  padding: 4px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.detail-row + .detail-row {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.detail-label {
  font-size: 14px;
  color: var(--dy-text-secondary);
}

.detail-value {
  font-size: 14px;
  font-weight: 500;
}

.detail-success {
  color: var(--dy-cyan);
}

/* ===== Preview Actions ===== */
.preview-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: rgba(18,19,24,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05);
  z-index: 30;
}

.btn-publish {
  flex: 1;
}

.btn-secondary {
  flex-shrink: 0;
}

/* ===== Modals ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 340px;
  background: var(--dy-card);
  border: 1px solid var(--dy-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
  transform: scale(1) translateY(0);
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.modal-icon svg {
  width: 100%;
  height: 100%;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--dy-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-info {
  text-align: left;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--dy-text-secondary);
}

.info-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dy-cyan);
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.btn-modal-cancel {
  flex: 1;
  height: 44px;
  border: 1px solid var(--dy-border);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--dy-text-secondary);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-cancel:active {
  background: rgba(255,255,255,0.05);
}

.btn-modal-confirm {
  flex: 1;
  height: 44px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--gradient-main);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-confirm:active {
  opacity: 0.8;
}

/* ===== Scrollbar ===== */
.page::-webkit-scrollbar {
  width: 0;
  display: none;
}

/* ===== Safe Area ===== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .preview-actions {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}
