.dashboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.dashboard-loading .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(139, 92, 246, 0.15);
  border-top-color: #8b5cf6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

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

.dashboard-loading p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

/* Skeleton Loading Styles */
.skeleton-loading {
  position: relative;
  pointer-events: none;
}

.skeleton-text,
.skeleton-circle {
  background: linear-gradient(90deg, 
    rgba(139, 92, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(139, 92, 246, 0.1) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  display: inline-block;
}

.skeleton-circle {
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.skeleton-text {
  height: 16px;
  margin: 4px 0;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Loading Value Animation */
.loading-value {
  color: rgba(139, 92, 246, 0.5) !important;
  animation: pulse-loading 2s ease-in-out infinite;
  transition: all 0.4s ease;
}

@keyframes pulse-loading {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

/* Enhanced Dashboard */
.enhanced-dashboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Metrics Section */
.metrics-section {
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 24px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.metrics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  opacity: 0.5;
}

.metrics-section__header {
  margin-bottom: 20px;
}

.metrics-section__title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.metrics-section__subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.metrics-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

.metric-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.05));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 80px;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.metric-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(6, 182, 212, 0.08));
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-card__icon {
  font-size: 26px;
  filter: drop-shadow(0 1px 4px rgba(139, 92, 246, 0.3));
  flex-shrink: 0;
  line-height: 1;
}

.metric-card__content {
  flex: 1;
}

.metric-card__value {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.metric-card__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.metric-card__meta {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
  font-weight: 500;
}

.metric-card__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.metric-card__content {
  flex: 1;
}

.metric-card__value {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 4px;
}

.metric-card__label {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-bottom: 2px;
}

.metric-card__meta {
  font-size: 12px;
  color: #999;
}

.timeline-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.timeline-item__content {
  flex: 1;
  min-width: 0;
}

.timeline-item__title {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.timeline-item__time {
  font-size: 12px;
  color: #999;
}

.timeline-empty {
  padding: 24px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.metrics-grid--compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .metrics-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metric-card__value {
    font-size: 24px;
  }
  
  .metric-card__icon {
    font-size: 28px;
  }
}

/* Badges & Achievements */
.badges-section {
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 24px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.badges-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  opacity: 0.5;
}

.badges-section h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 24px;
  max-height: none;
}

.badge-card {
  position: relative;
  padding: 24px 20px;
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(139, 92, 246, 0.2);
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.badge-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
}

.badge-card--locked {
  opacity: 0.4;
  filter: grayscale(100%);
}

.badge-card--common {
  border-color: rgba(148, 163, 184, 0.3);
}

.badge-card--rare {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.05));
}

.badge-card--rare:hover {
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.badge-card--epic {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.1));
}

.badge-card--epic:hover {
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
}

.badge-card--legendary {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.15));
  animation: legendary-glow 3s ease-in-out infinite;
}

.badge-card--legendary:hover {
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.5);
}

@keyframes legendary-glow {
  0%, 100% {
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.4), 0 0 48px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 0 36px rgba(245, 158, 11, 0.6), 0 0 72px rgba(245, 158, 11, 0.3);
  }
}

.badge-card__icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.badge-card__name {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.badge-card__description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* Weekly Progress Chart */
.weekly-chart {
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 24px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.weekly-chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  opacity: 0.5;
}

.weekly-chart__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

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

.weekly-chart__title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.weekly-chart__subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.weekly-chart__stats {
  display: flex;
  gap: 20px;
}

.weekly-chart__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.weekly-chart__stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.weekly-chart__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: lowercase;
}

.weekly-chart__container {
  position: relative;
}

.weekly-chart__grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 12px;
}

.weekly-chart__grid-line {
  width: 100%;
  height: 1px;
  background: rgba(139, 92, 246, 0.08);
}

.weekly-chart__bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  height: 140px;
  padding: 0 12px;
  position: relative;
}

.weekly-chart__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  position: relative;
}

.weekly-chart__bar-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.weekly-chart__bar-fill {
  width: 100%;
  max-width: 36px;
  background: linear-gradient(180deg, #8b5cf6 0%, rgba(139, 92, 246, 0.6) 100%);
  border-radius: 6px 6px 0 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 3px;
  box-shadow: 0 -2px 12px rgba(139, 92, 246, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-bottom: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  cursor: pointer;
}

.weekly-chart__bar-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 6px 6px 0 0;
}

.weekly-chart__bar-fill--empty {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
  box-shadow: none;
}

.weekly-chart__bar-fill:not(.weekly-chart__bar-fill--empty):hover {
  background: linear-gradient(180deg, #06b6d4 0%, rgba(6, 182, 212, 0.7) 100%);
  transform: scaleY(1.05);
  box-shadow: 0 -4px 20px rgba(6, 182, 212, 0.5);
  border-color: rgba(6, 182, 212, 0.6);
}

.weekly-chart__bar--today .weekly-chart__bar-fill:not(.weekly-chart__bar-fill--empty) {
  background: linear-gradient(180deg, #06b6d4 0%, rgba(6, 182, 212, 0.6) 100%);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 -2px 16px rgba(6, 182, 212, 0.4);
}

.weekly-chart__bar-value {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  line-height: 1;
}

.weekly-chart__bar-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.weekly-chart__bar--today .weekly-chart__bar-label {
  color: #06b6d4;
  font-weight: 700;
}

.weekly-chart__today-indicator {
  color: #06b6d4;
  font-size: 8px;
  filter: drop-shadow(0 0 4px rgba(6, 182, 212, 0.8));
  animation: pulse-indicator 2s ease-in-out infinite;
}

@keyframes pulse-indicator {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 640px) {
  .weekly-chart {
    padding: 20px 16px;
  }
  
  .weekly-chart__header {
    flex-direction: column;
    gap: 12px;
  }
  
  .weekly-chart__stats {
    align-self: stretch;
    justify-content: space-around;
  }
  
  .weekly-chart__bars {
    height: 120px;
    gap: 4px;
  }
  
  .weekly-chart__bar-fill {
    max-width: 28px;
  }
  
  .weekly-chart__bar-label {
    font-size: 10px;
  }
}

.heatmap-cell--intensity-3 {
  background: rgba(139, 92, 246, 0.65);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.4);
}

.heatmap-cell--intensity-4 {
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.6);
}

/* Weekly Goal - Redesign Elegante */
.weekly-goal {
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 20px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.weekly-goal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  opacity: 0.5;
}

.weekly-goal h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.weekly-goal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.weekly-goal__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.weekly-goal__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.weekly-goal__header-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.weekly-goal__title {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.3;
}

.weekly-goal__subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.weekly-goal__stats {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.weekly-goal__current-wrapper {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.weekly-goal__current {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.weekly-goal__separator {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  line-height: 1;
}

.weekly-goal__target-number {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.weekly-goal__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: lowercase;
}

.weekly-goal__progress-container {
  margin-bottom: 14px;
}

.weekly-goal__progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
}

.weekly-goal__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  border-radius: 6px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
}

.weekly-goal__progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2.5s infinite;
}

.weekly-goal__progress-percentage {
  font-family: 'Sora', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.weekly-goal__footer {
  display: flex;
  align-items: center;
}

.weekly-goal__message {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.weekly-goal__message--success {
  color: rgba(6, 182, 212, 0.9);
}

.weekly-goal__message-icon,
.weekly-goal__remaining-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.weekly-goal__message-text {
  flex: 1;
}

.weekly-goal__message-text strong {
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 640px) {
  .weekly-goal {
    padding: 16px;
  }
  
  .weekly-goal__header {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .weekly-goal__current {
    font-size: 32px;
  }
  
  .weekly-goal__target-number {
    font-size: 20px;
  }
  
  .weekly-goal__separator {
    font-size: 20px;
  }
  
  .weekly-goal__message {
    font-size: 12px;
  }
}

.pattern-insight__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.pattern-insight__value {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.pattern-insight__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Track/Courses List */
.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.track-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.track-item:last-child {
  border-bottom: none;
}

.track-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.track-item__title {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.track-item__value {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.track-item__progress {
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  border-radius: 6px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

.track-item__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Recent Activities / Timeline */
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item__icon {
  font-size: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
}

.timeline-item__content {
  flex: 1;
}

.timeline-item__title {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 4px 0;
  font-weight: 500;
}

.timeline-item__time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Section Headings */
.courses-in-progress h3,
.recent-activities h3,
.activities-section h3,
.courses-section h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.courses-in-progress,
.recent-activities,
.activities-section,
.courses-section {
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 24px;
  min-height: auto;
}

/* Activities List */
.activities-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.05));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.activity-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s;
}

.activity-item:hover {
  transform: translateX(4px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.activity-item:hover::before {
  opacity: 1;
}

.activity-item__icon {
  font-size: 24px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
}

.activity-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.activity-item__text {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.activity-item__time {
  font-size: 13px;
  color: rgba(139, 92, 246, 0.8);
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.activity-item__time::before {
  content: '🕐';
  font-size: 12px;
  opacity: 0.7;
}

/* Courses List */
.courses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-progress-card {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.06));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-progress-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.25);
}

.course-progress-card__info {
  margin-bottom: 16px;
}

.course-progress-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.course-progress-card__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.course-progress-card__progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.course-progress-card__bar {
  flex: 1;
  height: 8px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.course-progress-card__fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  border-radius: 8px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-progress-card__percentage {
  font-size: 14px;
  font-weight: 600;
  color: #8b5cf6;
  min-width: 45px;
  text-align: right;
}

@media (max-width: 1400px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .metrics-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metric-card__value {
    font-size: 24px;
  }
  
  .metric-card__icon {
    font-size: 28px;
  }
  
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .heatmap-grid {
    gap: 4px;
  }
}

/* Motivational Stats - Redesign */
.motivational-stats {
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 24px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.motivational-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  opacity: 0.5;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.motivational-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.motivational-card {
  padding: 36px 28px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.motivational-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s;
}

.motivational-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.3);
}

.motivational-card:hover::before {
  opacity: 1;
}

.motivational-card__icon {
  font-size: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
  animation: floatIcon 3s ease-in-out infinite;
}

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

.motivational-card__message {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
}

/* Study Pattern - Redesign */
.study-pattern {
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 24px;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.study-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%);
  opacity: 0.5;
}

.study-pattern__title,
.study-heatmap__title {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.study-pattern__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pattern-card {
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(6, 182, 212, 0.08));
  backdrop-filter: blur(16px);
  border: 2px solid rgba(139, 92, 246, 0.25);
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pattern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.pattern-card--time {
  border-color: rgba(251, 191, 36, 0.4);
}

.pattern-card--time:hover {
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
}

.pattern-card--day {
  border-color: rgba(6, 182, 212, 0.4);
}

.pattern-card--day:hover {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
}

.pattern-card__icon {
  font-size: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(139, 92, 246, 0.5));
  animation: floatIcon 3s ease-in-out infinite;
}

.pattern-card__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
}

.pattern-card__value {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.pattern-card__meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Milestones Section */
.milestones-section {
  margin: 32px 0;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.milestone-card {
  padding: 28px 32px;
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.milestone-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.milestone-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.milestone-card__icon {
  font-size: 48px;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

.milestone-card__info {
  flex: 1;
}

.milestone-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.milestone-card__description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.milestone-card__progress {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.milestone-card__stats {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Sora', sans-serif;
}

.milestone-card__current {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.milestone-card__separator {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.milestone-card__target {
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.milestone-card__bar {
  position: relative;
  height: 12px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.milestone-card__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 12px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.milestone-card__fill--badge {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.milestone-card__fill--streak {
  background: linear-gradient(90deg, #f97316, #fb923c);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.6);
}

.milestone-card__fill--hours {
  background: linear-gradient(90deg, #06b6d4, #22d3ee);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

.milestone-card__percentage {
  align-self: flex-end;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* Weekly Challenges Section */
.challenges-section {
  margin: 32px 0;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.challenge-card {
  position: relative;
  padding: 24px 28px;
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(139, 92, 246, 0.25);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s;
}

.challenge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
}

.challenge-card:hover::before {
  opacity: 1;
}

.challenge-card--completed {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(23, 25, 40, 0.8);
}

.challenge-card--completed::before {
  background: linear-gradient(90deg, #22c55e, #10b981);
  opacity: 1;
}

.challenge-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  transition: all 0.3s;
}

.challenge-card--completed .challenge-card__badge {
  background: linear-gradient(135deg, #22c55e, #10b981);
  border-color: #22c55e;
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
}

.challenge-card__content {
  padding-right: 60px;
}

.challenge-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.challenge-card--completed .challenge-card__title {
  color: #22c55e;
}

.challenge-card__description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.challenge-card__progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.challenge-card__bar {
  position: relative;
  height: 10px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.challenge-card__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.challenge-card--completed .challenge-card__bar {
  background: rgba(34, 197, 94, 0.2);
}

.challenge-card--completed .challenge-card__fill {
  background: linear-gradient(90deg, #22c55e, #10b981);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.challenge-card__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.challenge-card__count {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Sora', sans-serif;
}

.challenge-card__reward {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  color: #8b5cf6;
}

.challenge-card--completed .challenge-card__reward {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.challenge-card__checkmark {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(34, 197, 94, 0.15);
  transform: rotate(-15deg);
}

/* Progress Evolution Chart */
.progress-evolution {
  margin: 32px 0;
  padding: 32px;
  background: rgba(23, 25, 40, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.progress-evolution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
}

.progress-evolution__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.progress-evolution__legend {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.line-chart {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(11, 11, 16, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.line-chart__svg {
  width: 100%;
  height: auto;
  display: block;
}

.line-chart__path {
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
  animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}

.line-chart__point {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: fadeIn 0.6s ease-out backwards;
}

.line-chart__point:nth-child(1) { animation-delay: 0.2s; }
.line-chart__point:nth-child(2) { animation-delay: 0.4s; }
.line-chart__point:nth-child(3) { animation-delay: 0.6s; }
.line-chart__point:nth-child(4) { animation-delay: 0.8s; }
.line-chart__point:nth-child(5) { animation-delay: 1s; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.line-chart__point:hover {
  r: 8;
  fill: #06b6d4;
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.8));
}

.progress-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.progress-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.progress-stat__icon {
  font-size: 40px;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.4));
}

.progress-stat__content {
  flex: 1;
}

.progress-stat__value {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.progress-stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .progress-stats {
    grid-template-columns: 1fr;
  }
  
  .progress-evolution__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Ajustes de altura dinâmica para cards */
.dashboard-section {
  min-height: auto;
  height: fit-content;
}

.weekly-progress-card,
.upcoming-goals-card,
.weekly-challenges-card,
.achievements-card,
.courses-in-progress-card {
  min-height: auto;
  height: fit-content;
}

/* Progresso semanal - reduzir altura do gráfico */
.weekly-chart__bars {
  height: 140px;
}

/* Melhorar espaçamento entre seções */
.enhanced-dashboard > * + * {
  margin-top: 24px;
}

/* Cards de conteúdo com auto-ajuste */
.course-progress-card,
.next-step-card {
  padding: 20px;
  min-height: auto;
}

/* Ajustar altura dos cards de lista */
.activities-list,
.goals-list,
.challenges-list,
.courses-list {
  max-height: none;
  min-height: 120px;
}

/* Melhorar proporção do card "Seu próximo passo" */
.next-step-header {
  margin-bottom: 16px;
}

.next-step-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.next-step-actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

/* Melhorias visuais adicionais para elegância */
.metric-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

/* Animação suave no hover do ícone */
.metric-card:hover .metric-card__icon {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Responsividade aprimorada */
@media (max-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }
  
  .metric-card {
    padding: 12px 14px;
    min-height: 68px;
  }
  
  .metric-card__icon {
    font-size: 24px;
  }
  
  .metric-card__value {
    font-size: 20px;
  }
  
  .metric-card__label {
    font-size: 11px;
  }
  
  .metric-card__meta {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .metric-card {
    padding: 12px;
    min-height: 64px;
  }
}
