:root {
  --bg-color: #fafafa;
  --text-primary: #1a1a1a;
  --text-secondary: #888;
  --accent-color: #333;
  --card-bg: #fff;
  --border-color: rgba(0, 0, 0, 0.06);
  --danger: #ff4d4f;
  --success: #07c160;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--bg-color);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.plain-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.container {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.top-glow {
  display: none;
}

.header {
  position: relative;
  z-index: 10;
  padding: 18px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header-logo {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 4px;
  object-fit: contain;
}

.header-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.title-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 2px;
  line-height: 1.2;
}

.app-subtitle {
  margin: 3px 0 0;
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.merit-display {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.merit-ring {
  width: 16px;
  height: 16px;
  border: 1px solid var(--text-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.merit-icon {
  font-size: 9px;
}

.merit-count {
  font-size: 13px;
  font-weight: 500;
  min-width: 18px;
}

.admin-entry {
  padding: 4px;
}

.admin-icon-wrap {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-icon {
  font-size: 14px;
  color: var(--text-secondary);
}

.category-tabs {
  position: relative;
  z-index: 10;
  padding: 6px 0 10px;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
}

.tabs-inner {
  display: flex;
  padding: 0 16px;
  gap: 32px;
  white-space: nowrap;
}

.tab-item {
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--text-secondary);
  cursor: pointer;
}

.tab-item.active {
  color: var(--text-primary);
  font-weight: 500;
}

.tab-icon {
  font-size: 12px;
  opacity: 0.7;
}

.tab-text {
  font-size: 14px;
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text-primary);
}

.music-list {
  position: relative;
  z-index: 5;
  height: calc(100vh - 130px);
  padding: 0 15px;
  overflow-y: auto;
}

.loading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.prayer-wheel {
  width: 70px;
  height: 70px;
  position: relative;
}

.wheel-ring {
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
}

.wheel-ring::before {
  content: "唵";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--accent-color);
  font-weight: bold;
}

.wheel-inner {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  animation: wheel-rotate 3s linear infinite;
}

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

.spoke {
  position: absolute;
  font-size: 9px;
  color: var(--accent-color);
  opacity: 0.8;
  font-weight: bold;
}

.s1 { top: 0; left: 50%; transform: translateX(-50%); }
.s2 { top: 50%; right: 0; transform: translateY(-50%); }
.s3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.s4 { top: 50%; left: 0; transform: translateY(-50%); }
.s5 { top: 12%; right: 12%; }
.s6 { bottom: 12%; left: 12%; }

.loading-text {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.music-cards {
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}

.music-card {
  width: 100%;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease;
  position: relative;
  cursor: pointer;
}

.music-card:active {
  background: rgba(0, 0, 0, 0.03);
}

.card-info-simple {
  display: flex;
  align-items: center;
  padding: 14px 12px 14px 0;
}

.play-icon-circle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 12px;
}

.play-icon {
  font-size: 12px;
  margin-left: 2px;
}

.card-text {
  flex: 1;
  overflow: hidden;
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.music-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-meta {
  display: flex;
  align-items: center;
  margin-top: 3px;
}

.music-artist {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
}

.category-tag-simple {
  margin-left: 6px;
  padding: 1px 6px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-secondary);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
}

.empty-lotus {
  width: 50px;
  height: 40px;
  position: relative;
}

.empty-petal {
  position: absolute;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(139, 0, 0, 0.05));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.ep1 { width: 15px; height: 20px; top: 0; left: 50%; transform: translateX(-50%); }
.ep2 { width: 13px; height: 18px; top: 6px; left: 5px; transform: rotate(-40deg); }
.ep3 { width: 13px; height: 18px; top: 6px; right: 5px; transform: rotate(40deg); }

.empty-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: rgba(139, 0, 0, 0.2);
  border-radius: 50%;
}

.empty-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 15px;
}

.empty-hint {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-top: 6px;
}

.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 12px;
  z-index: 100;
}

.mini-cover {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-color);
}

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

.mini-info {
  flex: 1;
  margin-left: 10px;
  overflow: hidden;
  text-align: left;
}

.mini-title {
  font-size: 14px;
  font-weight: 500;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-artist {
  font-size: 11px;
  color: var(--text-secondary);
  display: block;
  margin-top: 1px;
}

.mini-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mini-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
}

.progress-inner {
  height: 100%;
  width: 0;
  background: var(--text-primary);
  transition: width 0.2s ease;
}

.player-page {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  overflow: hidden;
}

.bg-blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) saturate(0.9);
  opacity: 0.15;
  transform: scale(1.1);
}

.buddha-glow,
.buddha-glow.glow-2 {
  display: none;
}

.top-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 16px 12px;
  z-index: 10;
}

.back-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}

.back-icon {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.page-title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-subtitle {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-secondary);
}

.placeholder {
  width: 28px;
}

.cover-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  z-index: 5;
}

.cover-circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cover-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--bg-color);
}

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

.play-indicator {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 12px;
}

.bar {
  width: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  animation: bar-dance 1s ease-in-out infinite;
}

.bar1 { height: 6px; animation-delay: 0s; }
.bar2 { height: 9px; animation-delay: 0.2s; }
.bar3 { height: 5px; animation-delay: 0.4s; }

@keyframes bar-dance {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.scripture-section {
  margin: 36px 16px 0;
}

.scripture-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding: 0 2px;
}

.scripture-title,
.scripture-line-indicator {
  font-size: 12px;
  color: var(--text-secondary);
}

.scripture-box {
  max-height: 90px;
  padding: 10px 12px;
  overflow-y: auto;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.scripture-line {
  font-size: 13px;
  line-height: 21px;
  color: var(--text-secondary);
  text-align: center;
  padding: 3px 0;
}

.scripture-line.active {
  color: var(--text-primary);
  font-weight: 500;
}

.no-scripture {
  margin-top: 40px;
  text-align: center;
}

.now-label {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.controls-section {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.time-text {
  font-size: 10px;
  color: var(--text-secondary);
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.progress-slider {
  flex: 1;
  margin: 0 8px;
  accent-color: var(--text-primary);
}

.buttons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 28px;
}

.ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text-secondary);
}

.play-btn-mini {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timer-row {
  margin-top: 28px;
}

.timer-btn-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 12px;
}

.muyu-floating {
  position: absolute;
  right: 12px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
}

.muyu-icon {
  width: 44px;
  height: 44px;
  position: relative;
}

.muyu-surface {
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 26px;
  background: var(--text-primary);
  border-radius: 50% 50% 45% 45%;
}

.muyu-striker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 22px;
  background: var(--text-secondary);
  border-radius: 6px;
}

.muyu-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  animation: ripple-expand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-expand {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.muyu-label {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.muyu-count {
  margin-top: 2px;
  padding: 2px 6px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.merit-toast {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--text-primary);
  border-radius: 24px;
  animation: merit-fade 1s ease-out forwards;
}

.merit-text {
  font-size: 13px;
  color: var(--card-bg);
  font-weight: 500;
  letter-spacing: 1px;
}

@keyframes merit-fade {
  0% { opacity: 0; transform: translate(-50%, 8px) scale(0.9); }
  20% { opacity: 1; transform: translate(-50%, 0) scale(1); }
  80% { opacity: 1; transform: translate(-50%, -4px) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -12px) scale(0.95); }
}

.timer-picker-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
}

.timer-picker {
  width: 100%;
  background: var(--card-bg);
  border-radius: 16px 16px 0 0;
  padding: 16px;
  border-top: 1px solid var(--border-color);
}

.picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.picker-title {
  font-size: 15px;
  font-weight: 500;
}

.picker-close {
  width: 24px;
  height: 24px;
  font-size: 18px;
  color: var(--text-secondary);
}

.picker-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.picker-option {
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
}

.picker-option.active {
  background: var(--text-primary);
  color: var(--card-bg);
  border-color: var(--text-primary);
}

.admin-page {
  min-height: 100vh;
  background: #f5f5f5;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-box {
  width: 100%;
  max-width: 360px;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.login-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 24px;
}

.login-tip {
  margin: -12px 0 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
}

.form-item {
  display: block;
  margin-bottom: 16px;
}

.label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.input,
.textarea,
.search-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.input,
.search-input {
  height: 40px;
}

.textarea {
  min-height: 120px;
  padding: 10px 12px;
  resize: vertical;
}

.login-btn,
.secondary-btn,
.add-btn,
.batch-btn,
.oss-btn,
.logout-btn,
.search-btn,
.cancel-btn,
.save-btn {
  border: 0;
  cursor: pointer;
}

.login-btn {
  width: 100%;
  height: 44px;
  background-color: var(--success);
  color: #fff;
  font-size: 16px;
  border-radius: 22px;
  margin-top: 8px;
}

.secondary-btn {
  width: 100%;
  height: 40px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 10px;
}

.login-error {
  color: var(--danger);
  font-size: 13px;
  text-align: center;
  margin: 14px 0 0;
}

.admin-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.admin-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.admin-meta {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--text-secondary);
}

.admin-header .header-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.add-btn,
.batch-btn,
.oss-btn,
.logout-btn,
.search-btn {
  color: #fff;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 8px;
}

.add-btn,
.search-btn {
  background-color: var(--success);
}

.batch-btn {
  background-color: #1677ff;
}

.oss-btn {
  background-color: #fa8c16;
}

.logout-btn {
  background-color: var(--danger);
}

.batch-progress {
  margin: 10px 15px 0;
  padding: 10px 12px;
  background: #fff7e6;
  border: 1px solid #ffd591;
  border-radius: 8px;
  color: #ad6800;
  font-size: 13px;
}

.search-bar {
  display: flex;
  gap: 10px;
  padding: 10px 15px;
  background-color: #fff;
}

.search-input {
  flex: 1;
  border-radius: 20px;
}

.search-btn {
  flex-shrink: 0;
  border-radius: 20px;
}

.admin-music-list {
  flex: 1;
  padding: 10px;
}

.admin-music-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.music-cover-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--bg-color);
  flex-shrink: 0;
}

.admin-music-info {
  flex: 1;
  min-width: 0;
}

.admin-music-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-music-artist {
  font-size: 13px;
  color: #666;
}

.admin-music-detail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.music-category {
  font-size: 12px;
  color: var(--success);
  background-color: #e7f7ef;
  padding: 2px 8px;
  border-radius: 4px;
}

.file-name {
  font-size: 12px;
  color: var(--text-secondary);
}

.oss-badge {
  font-size: 12px;
  color: #666;
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 4px;
}

.oss-badge.synced {
  color: #237804;
  background: #f6ffed;
}

.oss-badge.failed {
  color: #a8071a;
  background: #fff1f0;
}

.music-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.action-btn {
  border: 0;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.action-btn.edit {
  background: var(--success);
}

.action-btn.delete {
  background: var(--danger);
}

.empty-tip {
  text-align: center;
  color: #999;
  padding: 50px 0;
}

.modal-mask {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  z-index: 101;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.modal-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.modal-close {
  font-size: 28px;
  color: #999;
}

.modal-body {
  flex: 1;
  padding: 15px;
  max-height: 60vh;
  overflow-y: auto;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-item {
  padding: 6px 15px;
  background-color: #f5f5f5;
  border-radius: 8px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

.category-item.active {
  background-color: var(--success);
  color: #fff;
}

.file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-select {
  display: block;
  padding: 15px;
  border: 1px dashed #ddd;
  border-radius: 8px;
  text-align: center;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

.cover-select {
  width: 100px;
  height: 100px;
  border: 1px dashed #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

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

.cover-placeholder {
  color: #999;
  font-size: 12px;
  padding: 8px;
  text-align: center;
}

.switch-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
}

.switch-row input {
  width: 18px;
  height: 18px;
}

.oss-warning {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff7e6;
  border: 1px solid #ffd591;
  color: #8c5a00;
  font-size: 12px;
  line-height: 1.55;
}

.oss-token {
  min-height: 72px;
}

.oss-status {
  min-height: 20px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
  word-break: break-all;
}

.modal-footer {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-top: 1px solid #eee;
}

.cancel-btn,
.save-btn {
  flex: 1;
  height: 44px;
  font-size: 16px;
  border-radius: 22px;
}

.cancel-btn {
  background-color: #f5f5f5;
  color: #666;
}

.save-btn {
  background-color: var(--success);
  color: #fff;
}

@media (min-width: 720px) {
  body {
    display: flex;
    justify-content: center;
    background: #ececec;
  }

  #app {
    width: 430px;
    min-height: 100vh;
    background: var(--bg-color);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  }

  .mini-player,
  .timer-picker-mask,
  .modal-mask,
  .modal {
    left: 50%;
    right: auto;
    width: 430px;
    transform: translateX(-50%);
  }
}
