/* 填报页面样式 - Apple 极简风格 */
.page.activity-page .container {
  padding: 24px 24px 180px;
}

/* 顶部标题 */
.page.activity-page .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  padding-top: 12px;
}

.page.activity-page .header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page.activity-page .subtitle {
  font-size: 10px;
  font-weight: 900;
  color: #FACC15;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

.page.activity-page .title {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  font-style: italic;
}

.date-badge {
  background: #000000;
  color: #FACC15;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 锁定提示横幅 */
.lock-banner {
  background: #FEF3C7;
  border: 2px solid #FACC15;
  border-radius: 24px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(250, 204, 21, 0.2);
}

.lock-icon {
  font-size: 28px;
  line-height: 1;
}

.lock-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lock-title {
  font-size: 14px;
  font-weight: 900;
  color: #000000;
}

.lock-detail {
  font-size: 10px;
  font-weight: 700;
  color: #6B7280;
}

/* 实时分数卡片 - 毛玻璃效果 */
.score-card.sticky-score {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 44px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  position: sticky;
  top: 12px;
  z-index: 10;
  transition: all 0.3s;
}

.score-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.score-label {
  font-size: 8px;
  font-weight: 900;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.score-value {
  font-size: 56px;
  font-weight: 900;
  color: #000000;
  font-style: italic;
  letter-spacing: -4px;
  line-height: 1;
}

.score-icon {
  width: 56px;
  height: 56px;
  background: #FACC15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(250, 204, 21, 0.3);
}

/* 活动量列表 */
.dimensions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dimension-item {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #F9FAFB;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s;
}

.dimension-item:active {
  transform: scale(0.98);
}

.dimension-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dimension-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
}

.dimension-icon {
  font-size: 24px;
  line-height: 1;
}

.dimension-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dimension-name {
  font-size: 15px;
  font-weight: 900;
  color: #000000;
}

.dimension-value {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 计数器 */
.counter {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F9FAFB;
  padding: 6px;
  border-radius: 50px;
  border: 1px solid #E5E7EB;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.counter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: none;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s;
}

.counter-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.counter-btn.add {
  background: #FACC15;
  box-shadow: 0 2px 8px rgba(250, 204, 21, 0.3);
}

.counter-btn:active {
  transform: scale(0.9);
}

.btn-icon {
  font-size: 18px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
}

.counter-btn.add .btn-icon {
  color: #FFFFFF;
}

.counter-value {
  width: 28px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #000000;
  font-style: italic;
}

/* 提交按钮 */
.submit-wrapper {
  position: fixed;
  bottom: 96px;
  left: 32px;
  right: 32px;
  z-index: 20;
}

.submit-btn {
  width: 100%;
  max-width: 400px;
  height: 64px;
  background: #000000;
  color: #FACC15;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  margin: 0 auto;
  transition: all 0.2s;
}

.submit-btn.disabled {
  background: #D1D5DB;
  color: #9CA3AF;
  cursor: not-allowed;
  box-shadow: none;
}

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

.submit-icon {
  font-size: 26px;
  font-weight: 900;
}

.submit-text {
  font-size: 18px;
  font-weight: 900;
}

/* 成功提示 */
.toast {
  position: fixed;
  top: 48px;
  left: 28px;
  right: 28px;
  z-index: 100;
  animation: slideDown 0.5s ease-out;
}

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

.toast-content {
  background: #000000;
  color: #FACC15;
  border-radius: 36px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast-icon {
  font-size: 28px;
  color: #4ADE80;
  line-height: 1;
}

.toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-title {
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.toast-detail {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 900;
  text-transform: uppercase;
}
