* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 顶部导航 */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #a5b4fc, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company-name {
  font-size: 12px;
  color: #9ca3af;
}

.nav {
  display: flex;
  gap: 12px;
}

.nav-link {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: #cbd5f5;
  transition: all 0.2s;
}

.nav-link:hover {
  background: rgba(148, 163, 184, 0.2);
}

.nav-link.active {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #ffffff;
}

/* 页面通用 */
.page {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.page-header h2 {
  font-size: 22px;
  font-weight: 600;
}

.page-header-actions {
  display: flex;
  gap: 10px;
}

.help-text {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* 按钮 */
.btn {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
  background: rgba(148, 163, 184, 0.18);
  color: #e5e7eb;
}

.btn-secondary:hover {
  background: rgba(148, 163, 184, 0.3);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(148, 163, 184, 0.15);
}

.btn-danger {
  background: rgba(248, 113, 113, 0.18);
  color: #fecaca;
}

.btn-danger:hover {
  background: rgba(248, 113, 113, 0.35);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-icon {
  border: none;
  background: rgba(15, 23, 42, 0.6);
  color: #d1d5db;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: rgba(148, 163, 184, 0.5);
}

.btn-icon.danger {
  color: #fecaca;
}

/* 首页 */
.home-page {
  margin-top: 30px;
}

.hero {
  background: radial-gradient(circle at top left, #4f46e5 0, transparent 50%),
    radial-gradient(circle at bottom right, #ec4899 0, transparent 55%),
    linear-gradient(135deg, #020617, #020617);
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 12px;
  color: #a5b4fc;
}

.features {
  margin-top: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.feature-icon {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 13px;
  color: #9ca3af;
}

/* 编辑器页面 */
.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 20px;
}

.editor-left,
.editor-right {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.editor-left h3,
.editor-right h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.script-textarea {
  width: 100%;
  min-height: 260px;
  resize: vertical;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  color: #e5e7eb;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.6;
}

.script-textarea::placeholder {
  color: #6b7280;
}

.editor-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.shot-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shot-item {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 10px 10px 8px;
  background: rgba(15, 23, 42, 0.9);
}

.shot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.shot-id {
  font-size: 13px;
  font-weight: 600;
}

.shot-actions {
  display: flex;
  gap: 4px;
}

.shot-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shot-field label,
.shot-field-inline label {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 2px;
}

.shot-field-inline {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px;
}

.input {
  width: 100%;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  color: #e5e7eb;
  padding: 5px 8px;
  font-size: 13px;
}

.shot-textarea {
  width: 100%;
  min-height: 70px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  color: #e5e7eb;
  padding: 6px 8px;
  font-size: 13px;
  resize: vertical;
}

.empty-shots,
.empty-works {
  border-radius: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  padding: 18px;
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
}

/* 多宫格页面 */
.multigrid-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.multigrid-left,
.multigrid-right {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.multigrid-left h3,
.multigrid-right h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.multigrid-preview {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.grid-main {
  flex: 1.2;
  aspect-ratio: 4 / 3;
  background: #020617;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-align: center;
}

.grid-side {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.grid-cell {
  background: #020617;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.prompt-textarea {
  width: 100%;
  min-height: 260px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  color: #e5e7eb;
  padding: 10px 12px;
  font-size: 12px;
  font-family: "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  line-height: 1.5;
  resize: vertical;
}

/* 作品页面 */
.works-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.work-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.work-title {
  font-size: 15px;
  margin-bottom: 2px;
}

.work-meta {
  font-size: 12px;
  color: #9ca3af;
}

.video-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

.video-status.success {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.video-status.generating {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.video-status.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.work-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 响应式 */
@media (max-width: 900px) {
  .editor-layout,
  .multigrid-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .page-header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .work-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .work-actions {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    padding: 26px 18px;
  }

  .hero-title {
    font-size: 22px;
  }
}

/* 视频生成页面 */
.generate-page {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.generate-layout {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.generate-left,
.generate-right {
  flex: 1;
  background: rgba(30, 41, 59, 0.6);
  border-radius: 12px;
  padding: 24px;
}

.generate-left h3,
.generate-right h3 {
  margin-bottom: 16px;
  color: #f1f5f9;
}

.shots-preview {
  max-height: 600px;
  overflow-y: auto;
}

.shot-preview-item {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}

.shot-preview-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #94a3b8;
}

.shot-id {
  font-weight: 600;
  color: #6366f1;
}

.shot-desc {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.5;
}

/* API 配置 */
.api-config {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.config-note {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* 生成状态 */
.generate-status {
  margin-top: 20px;
}

.status-idle,
.status-generating,
.status-success,
.status-error {
  text-align: center;
  padding: 20px;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

.btn-icon {
  margin-right: 8px;
}

/* 进度条 */
.progress-container {
  margin: 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transition: width 0.3s ease;
}

.progress-text {
  color: #e5e7eb;
  font-size: 14px;
  margin-bottom: 4px;
}

.progress-note {
  color: #94a3b8;
  font-size: 12px;
}

/* 视频预览 */
.video-preview-container {
  margin: 20px 0;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.generated-video {
  width: 100%;
  max-height: 500px;
  display: block;
}

.video-placeholder {
  padding: 60px 20px;
  text-align: center;
  color: #94a3b8;
}

.video-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.status-success h4 {
  color: #10b981;
  margin-bottom: 16px;
}

.status-error .error-message {
  color: #ef4444;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 6px;
}

/* 分享弹窗 */
.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.share-modal-content {
  background: #1e293b;
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.share-modal-content h3 {
  margin-bottom: 20px;
  color: #f1f5f9;
}

.share-form {
  margin-bottom: 24px;
}

.share-note {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 6px;
  padding: 12px;
  margin-top: 16px;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  cursor: pointer;
  color: #e5e7eb;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
}

.empty-state p {
  margin-bottom: 20px;
}

/* 响应式 - 视频生成页面 */
@media (max-width: 768px) {
  .generate-layout {
    flex-direction: column;
  }

  .generate-left,
  .generate-right {
    width: 100%;
  }
}

/* ========== 用户/账号页面新样式 ========== */

/* 页面头部 */
.page-header {
  padding: 20px;
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 20px;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  margin-top: 10px;
}

.back-btn {
  background: rgba(148, 163, 184, 0.2);
  border: none;
  color: #e5e7eb;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  margin-bottom: 10px;
}

.back-btn:hover {
  background: rgba(148, 163, 184, 0.3);
}

/* 加载和错误状态 */
.loading-container,
.error-container {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(148, 163, 184, 0.2);
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.error-message {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 16px;
  border-radius: 8px;
  white-space: pre-line;
}

/* 用户页面 - 账号列表 */
.accounts-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-card {
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.account-card:hover {
  border-color: #6366f1;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.account-info {
  margin-bottom: 20px;
}

.account-name {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.account-id {
  font-size: 14px;
  color: #94a3b8;
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.account-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.account-link-info {
  background: rgba(15, 23, 42, 0.6);
  padding: 16px;
  border-radius: 8px;
}

.link-label {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.link-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  color: #e5e7eb;
  font-size: 12px;
  margin-bottom: 8px;
  font-family: monospace;
}

.copy-link-btn {
  background: rgba(148, 163, 184, 0.2);
  border: none;
  color: #e5e7eb;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-link-btn:hover {
  background: rgba(148, 163, 184, 0.3);
}

/* 账号页面 - 按日期分组的视频 */
.videos-by-date {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.date-group {
  margin-bottom: 40px;
}

.date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.5);
}

.date-title {
  font-size: 32px;
  font-weight: 800;
  color: #f1f5f9;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.video-count {
  font-size: 14px;
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
}

.videos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 视频卡片（新设计） */
.video-item-card {
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s;
}

.video-item-card:hover {
  border-color: #6366f1;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.video-info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-title {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin: 0;
}

.video-title-placeholder {
  font-size: 16px;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hashtag-tag {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-publish,
.btn-qrcode,
.btn-view {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-publish {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #ffffff;
  flex: 1;
  min-width: 160px;
}

.btn-publish:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-publish:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-qrcode {
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-qrcode:hover {
  background: rgba(99, 102, 241, 0.3);
}

.btn-view {
  background: rgba(148, 163, 184, 0.2);
  color: #e5e7eb;
}

.btn-view:hover {
  background: rgba(148, 163, 184, 0.3);
}

.btn-icon {
  margin-right: 6px;
  font-size: 16px;
}

/* 视频播放器弹窗 */
.video-player-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.video-player-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
}

.video-player {
  width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.close-video-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.close-video-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* 二维码弹窗 */
.qrcode-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.qrcode-content {
  background: #1e293b;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 100%;
}

.qrcode-content h3 {
  color: #f1f5f9;
  margin-bottom: 20px;
  font-size: 20px;
}

.qrcode-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.qrcode-image {
  max-width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(148, 163, 184, 0.2);
}

.qrcode-loading {
  color: #94a3b8;
  font-size: 14px;
}

.close-qrcode-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(148, 163, 184, 0.2);
  border: none;
  color: #e5e7eb;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.close-qrcode-btn:hover {
  background: rgba(148, 163, 184, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .page-title {
    font-size: 20px;
  }
  
  .date-title {
    font-size: 24px;
  }
  
  .account-card {
    padding: 16px;
  }
  
  .video-item-card {
    padding: 16px;
  }
  
  .video-actions {
    flex-direction: column;
  }
  
  .btn-publish,
  .btn-qrcode,
  .btn-view {
    width: 100%;
  }
  
  .account-link-info {
    display: flex;
    flex-direction: column;
  }
  
  .link-input {
    font-size: 11px;
  }
}


