:root {
  --mars-primary: #c45a2c;
  --mars-light: #e07040;
  --mars-glow: #ff8c55;
  --mars-dark: #8a3520;
  --mars-rust: #6d2a18;

  --space-deep: #050208;
  --space-purple: #0d0a15;

  --accent-gold: #e8b059;
  --accent-amber: #d4994a;

  --text-primary: #ede5dc;
  --text-secondary: #b5a899;
  --text-muted: #6d6058;

  --font-header: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: radial-gradient(
    ellipse at bottom,
    var(--space-purple) 0%,
    var(--space-deep) 100%
  );
  font-family: var(--font-body);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ========================================
   STARS BACKGROUND
   ======================================== */

.stars,
.stars2,
.stars3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.stars {
  background-image: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(
      2px 2px at 160px 120px,
      rgba(255, 255, 255, 0.9),
      transparent
    ),
    radial-gradient(1px 1px at 230px 80px, #fff, transparent),
    radial-gradient(
      2px 2px at 300px 150px,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(1px 1px at 370px 30px, #fff, transparent),
    radial-gradient(
      2px 2px at 450px 180px,
      rgba(255, 255, 255, 0.8),
      transparent
    ),
    radial-gradient(1px 1px at 520px 90px, #fff, transparent),
    radial-gradient(
      2px 2px at 600px 140px,
      rgba(255, 255, 255, 0.9),
      transparent
    );
  background-size: 650px 200px;
  animation: starsMove 100s linear infinite;
  opacity: 0.8;
}

.stars2 {
  background-image: radial-gradient(1px 1px at 50px 100px, #fff, transparent),
    radial-gradient(
      2px 2px at 120px 50px,
      rgba(255, 220, 180, 0.9),
      transparent
    ),
    radial-gradient(1px 1px at 200px 160px, #fff, transparent),
    radial-gradient(
      1px 1px at 280px 90px,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(2px 2px at 350px 200px, #fff, transparent),
    radial-gradient(
      1px 1px at 420px 60px,
      rgba(255, 255, 255, 0.8),
      transparent
    ),
    radial-gradient(2px 2px at 500px 130px, rgba(255, 240, 200, 1), transparent),
    radial-gradient(1px 1px at 580px 180px, #fff, transparent);
  background-size: 620px 250px;
  animation: starsMove 120s linear infinite;
  opacity: 0.6;
}

.stars3 {
  background-image: radial-gradient(1px 1px at 80px 60px, #fff, transparent),
    radial-gradient(
      1px 1px at 150px 140px,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(2px 2px at 240px 30px, rgba(255, 200, 150, 1), transparent),
    radial-gradient(1px 1px at 320px 100px, #fff, transparent),
    radial-gradient(
      1px 1px at 400px 170px,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(2px 2px at 480px 80px, #fff, transparent),
    radial-gradient(
      1px 1px at 560px 140px,
      rgba(255, 255, 255, 0.5),
      transparent
    );
  background-size: 600px 220px;
  animation: starsMove 150s linear infinite;
  opacity: 0.5;
}

@keyframes starsMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1000px);
  }
}

/* ========================================
   MARS PLANET
   ======================================== */

.mars-planet {
  position: fixed;
  bottom: -120px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #ff7b47 0%,
    #e5633a 15%,
    #c45a2c 30%,
    #a84825 45%,
    #8a3520 60%,
    #5c2415 80%,
    #2d1209 100%
  );
  box-shadow: inset -40px -40px 80px rgba(0, 0, 0, 0.7),
    inset 20px 20px 60px rgba(255, 180, 120, 0.25),
    0 0 60px rgba(196, 90, 44, 0.5), 0 0 120px rgba(196, 90, 44, 0.25),
    0 0 200px rgba(196, 90, 44, 0.1);
  z-index: 1;
  animation: planetFloat 12s ease-in-out infinite;
  pointer-events: none;
}

.mars-highlight {
  position: absolute;
  top: 12%;
  left: 15%;
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 200, 160, 0.3) 0%,
    rgba(255, 150, 100, 0.1) 40%,
    transparent 70%
  );
  filter: blur(8px);
}

.mars-atmosphere {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    transparent 60%,
    rgba(255, 140, 85, 0.08) 80%,
    rgba(255, 100, 50, 0.12) 100%
  );
  pointer-events: none;
}

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

/* ========================================
   MAIN CONTAINER
   ======================================== */

.container {
  text-align: center;
  padding: 40px 20px;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(196, 90, 44, 0.15);
  border: 1px solid rgba(196, 90, 44, 0.4);
  border-radius: 30px;
  font-family: var(--font-header);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--mars-light);
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  max-width: 90%;
  text-align: center;
}

.badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--mars-glow);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.5;
    box-shadow: 0 0 5px var(--mars-glow);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px var(--mars-glow), 0 0 30px var(--mars-glow);
  }
}

/* Title */
h1 {
  font-family: var(--font-header);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 8px;
}

/* MARSTUDY - S ortak harf */
.mars-part {
  background: linear-gradient(
    135deg,
    var(--mars-light) 0%,
    var(--mars-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 101, 47, 0.6));
  transition: all 0.3s ease;
  cursor: pointer;
}

.mars-part:hover {
  -webkit-text-fill-color: #ffffff;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
}

.mars-part:hover + .shared-s {
  -webkit-text-fill-color: #ffffff;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
}

.shared-s {
  background: linear-gradient(
    135deg,
    var(--mars-light) 0%,
    var(--mars-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 101, 47, 0.6));
  transition: all 0.3s ease;
}

.study-part {
  background: linear-gradient(
    135deg,
    var(--mars-light) 0%,
    var(--mars-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 101, 47, 0.6));
  transition: all 0.3s ease;
  cursor: pointer;
}

.study-part:hover {
  -webkit-text-fill-color: #ffffff;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
}

/* STUDY hover'da S de beyaz olsun */
h1:has(.study-part:hover) .shared-s {
  -webkit-text-fill-color: #ffffff;
  filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
}

/* Tagline */
.tagline {
  font-family: var(--font-header);
  font-size: 1.5rem;
  letter-spacing: 8px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: taglineFade 4s ease-in-out infinite;
}

@keyframes taglineFade {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--mars-primary),
    transparent
  );
}

.divider-icon {
  color: var(--mars-primary);
  font-size: 0.8rem;
  animation: iconRotate 6s linear infinite;
}

@keyframes iconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Description */
.description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 50px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

/* Stats */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-header);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mars-light);
  text-shadow: 0 0 20px rgba(224, 112, 64, 0.5);
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-separator {
  width: 1px;
  height: 50px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--mars-rust),
    transparent
  );
}

/* Mission Text */
.mission-text {
  padding: 25px 40px;
  background: rgba(196, 90, 44, 0.08);
  border-left: 3px solid var(--mars-primary);
  border-radius: 0 8px 8px 0;
  backdrop-filter: blur(5px);
  margin: 0 10px;
}

.mission-text p {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(5, 2, 8, 0.9));
  z-index: 10;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-divider {
  margin: 0 8px;
  opacity: 0.5;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--mars-light);
}

/* Language Switcher */
.lang-switcher {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: rgba(196, 90, 44, 0.15);
  border: 1px solid rgba(196, 90, 44, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-header);
}

.lang-switcher:hover {
  background: rgba(196, 90, 44, 0.25);
  border-color: rgba(196, 90, 44, 0.5);
}

.lang-option {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.lang-option.active {
  color: var(--mars-light);
}

.lang-separator {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0 2px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .container {
    padding: 20px 16px;
    max-width: 100%;
    margin: 0;
  }

  h1 {
    font-size: 3.5rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .tagline {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
  }

  .mars-planet {
    width: 220px;
    height: 220px;
    bottom: -60px;
    right: -50px;
  }

  .stats {
    gap: 28px;
    margin-bottom: 40px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .stat-separator {
    display: none;
  }

  .mission-text {
    padding: 22px 28px;
    margin: 0 8px;
  }

  .mission-text p {
    font-size: 1.05rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 10px 20px;
    letter-spacing: 2px;
    gap: 8px;
    margin-bottom: 32px;
  }

  .description {
    font-size: 1.15rem;
    margin-bottom: 40px;
    padding: 0 8px;
  }

  .divider {
    margin-bottom: 24px;
  }

  .divider-line {
    width: 45px;
  }

  footer {
    padding: 16px;
  }

  footer p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    padding: 16px 12px;
    max-width: 100%;
  }

  h1 {
    font-size: 2.8rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .tagline {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .description {
    font-size: 1.05rem;
    padding: 0 4px;
    line-height: 1.7;
    margin-bottom: 36px;
  }

  .mars-planet {
    width: 180px;
    height: 180px;
    bottom: -45px;
    right: -45px;
  }

  .badge {
    font-size: 0.65rem;
    padding: 9px 18px;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  .stats {
    gap: 24px;
    margin-bottom: 36px;
  }

  .mission-text {
    padding: 20px 22px;
    margin: 0 6px;
  }

  .mission-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .divider {
    gap: 16px;
    margin-bottom: 20px;
  }

  .divider-line {
    width: 35px;
  }

  footer {
    padding: 14px 12px;
  }

  footer p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

@media (max-width: 360px) {
  body {
    padding-bottom: 65px;
  }

  .container {
    padding: 14px 10px;
  }

  h1 {
    font-size: 2.4rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .tagline {
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
  }

  .description {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .badge {
    font-size: 0.6rem;
    padding: 8px 16px;
    letter-spacing: 1px;
    margin-bottom: 24px;
  }

  .mars-planet {
    width: 160px;
    height: 160px;
    bottom: -40px;
    right: -40px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stats {
    gap: 22px;
    margin-bottom: 32px;
  }

  .mission-text {
    padding: 18px 20px;
  }

  .mission-text p {
    font-size: 0.9rem;
  }

  footer {
    padding: 12px 10px;
  }

  footer p {
    font-size: 0.75rem;
  }
}

/* ========================================
   ACCESSIBILITY - Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   WEEKLY PERFORMANCE CARDS
   ======================================== */

.weekly-performance {
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}

.section-title {
  font-family: var(--font-header);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.title-icon {
  font-size: 1.2rem;
}

.week-badge {
  background: linear-gradient(135deg, var(--mars-primary), var(--mars-glow));
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 140, 85, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 140, 85, 0.6); }
}

/* Lists Section - Grid Layout */
.lists-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

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

/* List Card Base */
.list-card {
  background: rgba(15, 10, 25, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

/* Danger List (Red) */
.list-card.danger-list {
  border-color: rgba(255, 59, 92, 0.3);
}

/* Success List (Green) */
.list-card.success-list {
  border-color: rgba(0, 255, 136, 0.3);
}

/* Quarantine List (Orange) */
.list-card.quarantine-list {
  border-color: rgba(255, 150, 50, 0.5);
  box-shadow: 0 0 20px rgba(255, 150, 50, 0.2), inset 0 0 30px rgba(255, 150, 50, 0.05);
  position: relative;
  overflow: hidden;
  animation: capsuleGlow 3s ease-in-out infinite;
}

@keyframes capsuleGlow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 150, 50, 0.2), inset 0 0 30px rgba(255, 150, 50, 0.05);
  }
  50% { 
    box-shadow: 0 0 35px rgba(255, 150, 50, 0.4), inset 0 0 40px rgba(255, 150, 50, 0.1);
  }
}

/* List Title */
.list-title {
  font-family: var(--font-header);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 15px 20px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-title .icon {
  font-size: 1rem;
}

.danger-list .list-title {
  background: rgba(255, 59, 92, 0.1);
}

.success-list .list-title {
  background: rgba(0, 255, 136, 0.1);
}

.quarantine-list .list-title {
  background: linear-gradient(90deg, rgba(255, 150, 50, 0.2), rgba(255, 100, 50, 0.1));
}

/* List Description */
.list-description {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 8px 20px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

/* List Content */
.list-content {
  padding: 15px 20px;
  min-height: 100px;
}

/* List Item */
.list-item {
  font-family: var(--font-header);
  font-size: 0.85rem;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  transition: transform 0.2s ease, background 0.2s ease;
}

.list-item:last-child {
  margin-bottom: 0;
}

.list-item:hover {
  transform: translateX(3px);
}

.danger-list .list-item {
  background: rgba(255, 59, 92, 0.1);
  border-left: 3px solid #ff3b5c;
  color: #ff3b5c;
}

.success-list .list-item {
  background: rgba(0, 255, 136, 0.1);
  border-left: 3px solid #00ff88;
  color: #00ff88;
}

.quarantine-list .list-item {
  background: rgba(255, 150, 50, 0.1);
  border-left: 3px solid #ff9632;
  color: #ff9632;
}

.colonist-name {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.list-item-stats {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Quarantine Rules Section */
.quarantine-rules {
  padding: 15px 20px;
  background: rgba(255, 150, 50, 0.05);
  border-top: 1px solid rgba(255, 150, 50, 0.2);
}

.quarantine-rules .rule-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 150, 50, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quarantine-rules .rule-item:last-child {
  border-bottom: none;
}

/* Update Info */
.update-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 25px;
  opacity: 0.7;
}

/* Section Divider */
.section-divider {
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mars-primary), transparent);
  margin: 40px auto;
}

/* ========================================
   WEEKLY PERFORMANCE RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
  .lists-section.three-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .weekly-performance {
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 12px;
  }

  .lists-section.three-columns {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.1rem;
    gap: 10px;
    margin-bottom: 20px;
  }

  .week-badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  .list-title {
    font-size: 0.75rem;
    padding: 12px 16px;
  }

  .list-description {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .list-content {
    padding: 12px 16px;
    min-height: auto;
  }

  .list-item {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .list-item-stats {
    font-size: 0.65rem;
  }

  .quarantine-rules {
    padding: 12px 16px;
  }

  .quarantine-rules .rule-item {
    font-size: 0.7rem;
    padding: 6px 0;
  }

  .section-divider {
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .weekly-performance {
    margin-top: 15px;
    padding: 0 10px;
  }

  .section-title {
    font-size: 1rem;
    flex-direction: column;
    gap: 8px;
  }

  .title-icon {
    font-size: 1.3rem;
  }

  .list-title {
    font-size: 0.7rem;
    padding: 10px 14px;
  }

  .list-item {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .update-info {
    font-size: 0.75rem;
    margin-top: 20px;
  }

  .section-divider {
    margin: 25px auto;
  }
}
