/**
 * Result Pages 捆绑CSS文件
 * 包含result系列页面特定的所有样式和高级效果样式
 */

/* 导入核心CSS */
@import '/assets/css/core.css';

/* Result页面特定样式 */
/* 以下样式从pages/result.css, pages/result-page.css, premium-effects.css和其他相关文件合并而来 */

/* 锁定内容样式 */
.locked-content {
  position: relative;
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
}

/* 锁定覆盖层 */
.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  z-index: 10;
  border-radius: inherit;
  transition: opacity 0.5s ease;
}

/* 锁定图标 */
.lock-overlay-icon {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

/* 锁定文本 */
.lock-overlay-text {
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 80%;
  margin-bottom: 15px;
}

/* 锁定图像 */
.locked-image {
  filter: blur(8px);
  opacity: 0.7;
}

/* 解锁按钮 */
.unlock-button {
  cursor: pointer;
}

/* 高级徽章 */
.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(123, 104, 238, 0.3);
}

/* 锁定按钮 */
.locked-button {
  opacity: 0.6;
  cursor: not-allowed;
  background: #ccc !important;
}

/* 结果页特定布局 */
.result-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .result-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* 进度条样式 */
.progress-container {
  width: 100%;
  background-color: rgba(12, 37, 89, 0.5);
  border-radius: 10px;
  margin: 0.5rem 0;
  overflow: hidden;
}

.progress-bar {
  height: 8px;
  border-radius: 10px;
  transition: width 1s ease;
}

/* 响应式调整 */
@media (max-width: 767px) {
  .premium-badge {
    font-size: 12px;
    padding: 3px 10px;
  }
  
  .lock-overlay-icon {
    font-size: 24px;
  }
  
  .lock-overlay-text {
    font-size: 14px;
  }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spin-slow 2.5s linear infinite;
} 