/* Dashboard 首页样式 - Apple 极简风格 */
.page.dashboard-page .container {
  padding: 24px 24px 140px;
}

/* 顶部导航 */
.page.dashboard-page .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 12px;
}

.page.dashboard-page .header-left {
  display: flex;
  flex-direction: column;
}

.page.dashboard-page .subtitle {
  font-size: 10px;
  font-weight: 900;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page.dashboard-page .title {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  margin-top: 8px;
  display: block;
}

/* 总分卡片 - 阳光柠檬黄基调 */
.score-card {
  background: #FACC15;
  border-radius: 44px;
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: 0 40px 80px rgba(250, 204, 21, 0.3);
  position: relative;
  overflow: hidden;
}

.score-card.sticky-score {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.score-content {
  position: relative;
  z-index: 10;
}

.score-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.score-label {
  font-size: 10px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

.score-card.sticky-score .score-label {
  color: #9CA3AF;
}

.trophy {
  font-size: 28px;
}

.score-subtitle {
  font-size: 12px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.score-value {
  font-size: 72px;
  font-weight: 900;
  color: #000000;
  letter-spacing: -4px;
  display: block;
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1;
}

.activity-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  gap: 4px;
}

.activity-badge span {
  font-size: 10px;
  font-weight: 900;
  color: #000000;
}

/* 日历卡片 */
.calendar-card {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid #F9FAFB;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

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

.calendar-label {
  font-size: 10px;
  font-weight: 900;
  color: #E5E7EB;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.calendar-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px;
}

.calendar-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  border-radius: 16px;
  background: #F9FAFB;
  flex: 1;
  min-width: 0;
  margin: 0 2px;
  transition: all 0.2s;
}

.calendar-day.is-today {
  background: #FACC15;
  box-shadow: 0 8px 32px rgba(250, 204, 21, 0.3);
  transform: scale(1.05);
}

.day-label {
  font-size: 8px;
  font-weight: 900;
  color: #9CA3AF;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.calendar-day.is-today .day-label {
  color: rgba(0, 0, 0, 0.4);
}

.day-value {
  font-size: 14px;
  font-weight: 900;
  color: #9CA3AF;
}

.calendar-day.is-today .day-value {
  color: #000000;
}

/* 已填报项目 */
.activities-section {
  margin-top: 24px;
}

.section-title {
  font-size: 14px;
  font-weight: 900;
  color: #6B7280;
  margin-bottom: 16px;
  display: block;
}

.activities-list {
  display: flex;
  flex-direction: column;
}

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

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

.activity-left {
  display: flex;
  align-items: center;
}

.activity-icon {
  width: 40px;
  height: 40px;
  background: #000000;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 16px;
}

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

.activity-name {
  font-size: 14px;
  font-weight: 900;
  color: #000000;
}

.activity-detail {
  font-size: 10px;
  font-weight: 900;
  color: #9CA3AF;
}

.activity-arrow {
  font-size: 24px;
  color: #9CA3AF;
  line-height: 1;
}

/* 动画 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.animate-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}
