/* Mobile App V8.6.1 - 移动端专属样式 */

/* ==================== 全局重置 ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================== 应用容器 ==================== */
#mobile-app {
  min-height: 100vh;
  padding-bottom: 70px; /* 为底部导航留空间 */
}

#mobile-content {
  padding: 16px;
  padding-bottom: 80px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ==================== 登录页面 ==================== */
.mobile-login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
  margin: -16px;
  margin-bottom: -80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-login-header {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.mobile-app-logo {
  font-size: 64px;
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}

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

.mobile-app-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.mobile-app-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.mobile-login-form {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.mobile-input-group {
  position: relative;
  margin-bottom: 20px;
}

.mobile-input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.mobile-input-group input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 48px;
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mobile-input-group input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.mobile-login-tips {
  margin-top: 24px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* ==================== 按钮样式 ==================== */
.mobile-btn-primary,
.mobile-btn-secondary {
  height: 50px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  touch-action: manipulation;
}

.mobile-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.mobile-btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
}

.mobile-btn-secondary {
  background: #f0f3f7;
  color: #666;
}

.mobile-btn-secondary:active {
  background: #e0e6ed;
}

.mobile-btn-block {
  width: 100%;
}

/* ==================== 页面头部 ==================== */
.mobile-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: white;
  border-bottom: 1px solid #e0e6ed;
  margin: -16px -16px 16px -16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mobile-page-header h1 {
  font-size: 20px;
  font-weight: 600;
  flex: 1;
  text-align: center;
}

.mobile-back-btn,
.mobile-icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #333;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-back-btn:active,
.mobile-icon-btn:active {
  background: #f0f3f7;
}

/* ==================== 首页 ==================== */
.mobile-home-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 32px 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.mobile-home-header h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.mobile-home-header p {
  font-size: 16px;
  opacity: 0.9;
}

.mobile-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-quick-action {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-quick-action:active {
  transform: scale(0.95);
}

.mobile-quick-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
  color: white;
}

.mobile-quick-action span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

/* ==================== 区块样式 ==================== */
.mobile-section {
  margin-bottom: 24px;
}

.mobile-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mobile-section-header h2 {
  font-size: 18px;
  font-weight: 600;
}

.mobile-section-header a {
  color: #667eea;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

/* ==================== 卡片样式 ==================== */
.mobile-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-card:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.mobile-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mobile-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
  margin-right: 12px;
}

.mobile-card-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #999;
}

.mobile-card-meta i {
  margin-right: 4px;
}

/* ==================== 徽章样式 ==================== */
.mobile-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-badge-success {
  background: #e8f5e9;
  color: #2e7d32;
}

.mobile-badge-warning {
  background: #fff3e0;
  color: #f57c00;
}

.mobile-badge-danger {
  background: #ffebee;
  color: #c62828;
}

.mobile-badge-info {
  background: #e3f2fd;
  color: #1976d2;
}

.mobile-badge-default {
  background: #f0f3f7;
  color: #666;
}

/* ==================== 过滤标签 ==================== */
.mobile-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
  margin: -16px -16px 16px -16px;
  background: white;
  border-bottom: 1px solid #e0e6ed;
  scrollbar-width: none;
}

.mobile-filter-tabs::-webkit-scrollbar {
  display: none;
}

.mobile-filter-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 2px solid #e0e6ed;
  border-radius: 20px;
  background: white;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-filter-tab.active {
  background: #667eea;
  border-color: #667eea;
  color: white;
}

/* ==================== 表单样式 ==================== */
.mobile-form {
  background: white;
  border-radius: 12px;
  padding: 20px;
}

.mobile-form-section {
  margin-bottom: 24px;
}

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

.mobile-form-hint {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

.mobile-form input[type="text"],
.mobile-form input[type="url"],
.mobile-form input[type="password"],
.mobile-form input[type="email"],
.mobile-form textarea,
.mobile-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.mobile-form input:focus,
.mobile-form textarea:focus,
.mobile-form select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.mobile-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.mobile-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mobile-form-actions button {
  flex: 1;
}

/* ==================== 分段控制 ==================== */
.mobile-segmented-control {
  display: flex;
  background: #f0f3f7;
  border-radius: 10px;
  padding: 4px;
}

.mobile-segment {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-segment.active {
  background: white;
  color: #667eea;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ==================== 个人资料 ==================== */
.mobile-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.mobile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
}

.mobile-profile-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mobile-profile-role {
  font-size: 14px;
  opacity: 0.9;
}

.mobile-menu-section {
  margin-bottom: 24px;
}

.mobile-menu-title {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 16px;
  margin-bottom: 8px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px;
  margin-bottom: 1px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-menu-item:first-of-type {
  border-radius: 12px 12px 0 0;
}

.mobile-menu-item:last-of-type {
  border-radius: 0 0 12px 12px;
}

.mobile-menu-item:only-child {
  border-radius: 12px;
}

.mobile-menu-item:active {
  background: #f0f3f7;
}

.mobile-menu-item > i:first-child {
  color: #667eea;
  font-size: 18px;
  width: 24px;
}

.mobile-menu-item > span {
  flex: 1;
  font-size: 16px;
}

.mobile-menu-item > i:last-child {
  color: #ccc;
  font-size: 14px;
}

/* ==================== 视频信息 ==================== */
.mobile-video-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.mobile-video-info h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.mobile-video-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  opacity: 0.9;
}

.mobile-video-meta i {
  margin-right: 6px;
}

.mobile-transcript-info {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  background: #e8f5e9;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #2e7d32;
}

.mobile-transcript-info i {
  margin-right: 6px;
}

/* ==================== 分析结果 ==================== */
.mobile-result-container {
  background: white;
  border-radius: 12px;
  padding: 20px;
}

.mobile-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px solid #f0f3f7;
}

.mobile-result-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2e7d32;
  font-weight: 600;
}

.mobile-result-badge i {
  font-size: 20px;
}

.mobile-result-source {
  font-size: 12px;
  color: #999;
}

.mobile-result-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.mobile-result-content h2 {
  font-size: 18px;
  margin: 20px 0 12px;
  color: #667eea;
}

.mobile-result-content h3 {
  font-size: 16px;
  margin: 16px 0 8px;
}

.mobile-result-content p {
  margin-bottom: 12px;
}

.mobile-result-content li {
  margin-left: 20px;
  margin-bottom: 8px;
}

/* ==================== 底部导航 ==================== */
#mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: white;
  border-top: 1px solid #e0e6ed;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 16px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: none;
  background: transparent;
  color: #999;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
  border-radius: 12px;
}

.mobile-nav-item i {
  font-size: 24px;
}

.mobile-nav-item.active {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.mobile-nav-item:active {
  transform: scale(0.95);
}

/* ==================== 空状态 ==================== */
.mobile-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.mobile-empty-state i {
  display: block;
  margin-bottom: 16px;
}

.mobile-empty-state p {
  margin-bottom: 20px;
}

/* ==================== 加载动画 ==================== */
#mobile-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#mobile-loading.show {
  opacity: 1;
  visibility: visible;
}

.mobile-loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.mobile-loading-text {
  color: white;
  font-size: 16px;
  margin-top: 20px;
}

/* ==================== Toast提示 ==================== */
.mobile-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: white;
  padding: 12px 20px;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 90%;
}

.mobile-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.mobile-toast i {
  font-size: 18px;
}

.mobile-toast-success {
  color: #2e7d32;
}

.mobile-toast-error {
  color: #c62828;
}

.mobile-toast-warning {
  color: #f57c00;
}

.mobile-toast-info {
  color: #1976d2;
}

/* ==================== 列表容器 ==================== */
.mobile-list {
  margin: 0 -16px;
  padding: 0 16px;
}

/* ==================== 响应式调整 ==================== */
@media (min-width: 768px) {
  #mobile-app {
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-login-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==================== 安全区域适配 (iPhone刘海屏) ==================== */
@supports (padding: max(0px)) {
  #mobile-app {
    padding-bottom: max(70px, env(safe-area-inset-bottom));
  }
  
  #mobile-bottom-nav {
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    height: calc(70px + env(safe-area-inset-bottom));
  }
}

/* ==================== 触摸反馈优化 ==================== */
button, a, .mobile-card, .mobile-menu-item {
  -webkit-user-select: none;
  user-select: none;
}

/* ==================== 滚动条隐藏 ==================== */
::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
}

/* ==================== 首页落地页 ==================== */
.mobile-landing-page {
  padding: 0;
  margin: -16px;
  margin-bottom: -80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mobile-hero-section {
  padding: 48px 24px 32px;
  text-align: center;
  color: white;
}

.mobile-hero-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 32px;
}

.mobile-hero-section .mobile-btn-primary {
  max-width: 300px;
  margin: 0 auto;
  background: white;
  color: #667eea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-hero-section .mobile-btn-primary:active {
  transform: translateY(2px);
}

/* ==================== 移动端轮播图 ==================== */
.mobile-carousel-container {
  padding: 0 16px 24px;
}

.mobile-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  background: white;
}

.mobile-carousel-slide {
  display: none;
  position: relative;
}

.mobile-carousel-slide.active {
  display: block;
}

.mobile-carousel-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mobile-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 24px 16px 16px;
  color: white;
}

.mobile-carousel-caption h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mobile-carousel-caption p {
  font-size: 14px;
  opacity: 0.9;
}

.mobile-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.mobile-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-carousel-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* ==================== 特性网格 ==================== */
.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 16px;
  background: white;
  border-radius: 24px 24px 0 0;
}

.mobile-feature-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mobile-feature-card:active {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.mobile-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  color: white;
}

.mobile-feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.mobile-feature-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* ==================== 卡片操作按钮 ==================== */
.mobile-card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f3f7;
}

.mobile-action-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f0f3f7;
  color: #666;
}

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

.mobile-action-view {
  background: #e3f2fd;
  color: #1976d2;
}

.mobile-action-edit {
  background: #fff3e0;
  color: #f57c00;
}

.mobile-action-delete {
  background: #ffebee;
  color: #c62828;
}

/* ==================== 详情页面样式 ==================== */
.mobile-detail-container {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.mobile-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px solid #f0f3f7;
}

.mobile-detail-header h2 {
  font-size: 20px;
  font-weight: 600;
  flex: 1;
}

.mobile-detail-section {
  margin-bottom: 24px;
}

.mobile-detail-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-detail-section h3 i {
  font-size: 18px;
}

.mobile-detail-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

.mobile-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mobile-info-item {
  background: #f0f3f7;
  padding: 12px;
  border-radius: 8px;
}

.mobile-info-label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}

.mobile-info-value {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.mobile-questions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-question-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
}

.mobile-question-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mobile-question-number {
  width: 24px;
  height: 24px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.mobile-question-type {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.mobile-question-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}

.mobile-question-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-question-options li {
  font-size: 13px;
  color: #666;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.mobile-question-options li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #667eea;
}

.mobile-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mobile-btn-danger {
  height: 50px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  touch-action: manipulation;
  background: #c62828;
  color: white;
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.mobile-btn-danger:active {
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.3);
}
