/* 内容战略报告样式 */
.strategy-card {
  transition: all 0.3s ease;
  transform-origin: center;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.locked-card {
  filter: blur(3px);
  pointer-events: none;
  position: relative;
}

.upgrade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  z-index: 10;
}

/* 标签云样式 */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud-item {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tag-cloud-item:hover {
  transform: scale(1.05);
}

/* 内容日历样式 */
.calendar-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.calendar-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.calendar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.calendar-card.locked {
  filter: blur(2px) grayscale(1);
  pointer-events: none;
}

.mode-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* 解锁动画 */
@keyframes unlock {
  0% {
    filter: blur(3px) grayscale(1);
    opacity: 0.7;
  }
  50% {
    filter: blur(1px) grayscale(0.5);
    opacity: 0.85;
  }
  100% {
    filter: blur(0) grayscale(0);
    opacity: 1;
  }
}

/* 新设计的标签页样式 */
.tab-button {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.tab-button:hover::before {
  opacity: 1;
}

/* 活跃标签页样式 */
.tab-button.active-tab {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 2px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

.tab-button.active-tab .w-12.h-12 {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.tab-button.active-tab h3 {
  color: #4f46e5;
  font-weight: 700;
}

.tab-button.active-tab p {
  color: #6366f1;
}

/* 非活跃标签页样式 */
.tab-button.inactive-tab {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid transparent;
  opacity: 0.8;
}

.tab-button.inactive-tab:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* 场景介绍样式 */
.scenario-intro {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.scenario-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.scenario-intro:hover::before {
  left: 100%;
}

.scenario-intro:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 标签页内容区域样式 */
.tab-content {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

.tab-content.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .tab-button {
    padding: 0.75rem 1rem;
  }
  
  .tab-button .w-12.h-12 {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .tab-button h3 {
    font-size: 0.875rem;
  }
  
  .tab-button p {
    font-size: 0.75rem;
  }
  
  .scenario-intro {
    padding: 1rem;
  }
  
  .scenario-intro h4 {
    font-size: 1rem;
  }
  
  .scenario-intro p {
    font-size: 0.875rem;
  }
}

/* 标签页切换动画 */
@keyframes tabSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tabSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

.tab-content.slide-in {
  animation: tabSlideIn 0.4s ease-out;
}

.tab-content.slide-out {
  animation: tabSlideOut 0.4s ease-out;
}

/* 免费版提示动画 */
@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-out-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

.animate-slide-in-right {
  animation: slide-in-right 0.3s ease-out;
}

.unlock-animation {
  animation: unlock 0.8s ease-out forwards;
}

/* 用户反馈卡片样式 */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 100px;
  opacity: 0.1;
  font-family: serif;
  color: #6366f1;
}

/* 成功指标样式 */
.metric-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
}

.metric-card .value {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .calendar-view {
    grid-template-columns: 1fr;
  }
} 

/* 以下为暗色模式相关样式，已注释或移除，整体采用浅色风格 */
/*
input[type="url"], input[type="text"], input[type="number"], select {
  background-color: #23272f !important;
  color: #f3f4f6 !important;
  border: 1px solid #374151 !important;
  border-radius: 0.75rem;
  box-shadow: none;
}
input::placeholder {
  color: #6b7280 !important;
  opacity: 1;
}
label, .input-label, .form-label {
  color: #d1d5db !important;
}
.text-gray-600, .text-gray-700, .text-gray-500 {
  color: #a1a1aa !important;
}
.glass-card, .result-card, .calendar-card, .gap-card {
  background: linear-gradient(135deg, #23272f 60%, #1e2230 100%) !important;
  color: #f3f4f6 !important;
  border: 1px solid #374151 !important;
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.25);
}
button, .btn {
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%) !important;
  color: #fff !important;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px 0 rgba(99,102,241,0.15);
  border: none;
}
button:hover, .btn:hover {
  filter: brightness(1.1);
}
.tag, .inline-block, .badge {
  background: #312e81 !important;
  color: #c7d2fe !important;
  border-radius: 9999px;
  font-weight: 500;
}
hr, .border-gray-200, .border-gray-300 {
  border-color: #374151 !important;
}
#successMetrics, #userTestimonials, .text-sm {
  color: #a1a1aa !important;
} 
input, select, textarea, .glass-card, .result-card, .calendar-card, .gap-card, .modal, .loading-modal, .ai-loading-modal {
  color: #f3f4f6 !important;
}
input::placeholder, textarea::placeholder {
  color: #a1a1aa !important;
}
#aiLoadingModal {
  color: #fff;
}
#aiLoadingModal .step-icon {
  font-size: 1.5rem;
  transition: color 0.3s;
}
#aiLoadingModal .step-done .step-icon {
  color: #22c55e;
}
#aiLoadingModal .step-active .step-icon {
  color: #fbbf24;
  animation: ai-spin 1s linear infinite;
}
#aiLoadingModal .step-done {
  color: #22c55e;
}
#aiLoadingModal .step-active {
  color: #fbbf24;
}
#aiLoadingModal .step-wait {
  color: #a1a1aa;
}
@keyframes ai-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#aiLoadingModal .bg-gradient-to-br {
  background: linear-gradient(135deg, #23272f 60%, #1e2230 100%) !important;
}
#aiLoadingProgress {
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
} 
*/ 