/* ============ NUTRICOD PREMIUM STYLES ============ */

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

/* CSS Variables */
:root {
  --primary: #FF6B95;
  --primary-light: #FF8FAB;
  --primary-dark: #E85A82;
  --gradient-primary: linear-gradient(135deg, #FF6B95 0%, #FF8FAB 100%);
  --gradient-warm: linear-gradient(135deg, #FFD93D 0%, #F59E0B 100%);
  --gradient-success: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  --gradient-danger: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  --gradient-water: linear-gradient(135deg, #7DD3FC 0%, #0EA5E9 100%);
  --gradient-purple: linear-gradient(135deg, #A78BFA 0%, #7C3AED 100%);
  
  --bg-main: linear-gradient(180deg, #FFF5F7 0%, #FFFFFF 50%, #FFF8FA 100%);
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.7);
  
  --text-primary: #2D2D2D;
  --text-secondary: #6B6B6B;
  --text-muted: #9CA3AF;
  
  --border-light: rgba(255, 107, 149, 0.1);
  --border-medium: rgba(255, 107, 149, 0.2);
  
  --shadow-sm: 0 2px 8px rgba(255, 107, 149, 0.08);
  --shadow-md: 0 4px 20px rgba(255, 107, 149, 0.12);
  --shadow-lg: 0 8px 40px rgba(255, 107, 149, 0.16);
  --shadow-glow: 0 0 30px rgba(255, 107, 149, 0.25);
  
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-main);
  min-height: 100vh;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 149, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 143, 171, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 217, 61, 0.04) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, 2%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-1deg); }
}

#app {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ CARDS ============ */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  opacity: 0.5;
}

.card-hover:hover,
.card-hover:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.card-hover:active {
  transform: scale(0.98) translateY(0);
}

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-glow {
  box-shadow: var(--shadow-glow);
}

.card-gradient {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
}

/* ============ BUTTONS ============ */
.btn-primary {
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 149, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 149, 0.45);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(255, 107, 149, 0.3);
}

.btn-secondary {
  padding: 12px 20px;
  background: rgba(255, 107, 149, 0.1);
  color: var(--primary);
  border: 1px solid rgba(255, 107, 149, 0.2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 107, 149, 0.15);
  border-color: rgba(255, 107, 149, 0.3);
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-choice {
  padding: 14px 18px;
  background: #fff;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.btn-choice:hover {
  border-color: var(--primary-light);
  background: rgba(255, 107, 149, 0.05);
}

.btn-choice.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 107, 149, 0.3);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255, 107, 149, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-icon:hover {
  background: rgba(255, 107, 149, 0.2);
  transform: scale(1.05);
}

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

/* ============ PROGRESS BARS ============ */
.progress-bar {
  height: 8px;
  background: rgba(255, 107, 149, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

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

/* Vitamin progress */
.vitamin-progress {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.vitamin-progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

/* ============ ICONS ============ */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.icon-circle:hover {
  transform: scale(1.1);
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(255, 107, 149, 0.3);
}

/* ============ BADGES ============ */
.badge {
  padding: 6px 14px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.badge-success {
  background: var(--gradient-success);
}

.badge-warning {
  background: var(--gradient-warm);
}

/* ============ ANIMATIONS ============ */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

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

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

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

.glow-animation {
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 149, 0.3); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 149, 0.5); }
}

.slide-in {
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scale-in {
  animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.bounce-in {
  animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Stagger animations for lists */
.stagger-item {
  opacity: 0;
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.05s; }
.stagger-item:nth-child(2) { animation-delay: 0.1s; }
.stagger-item:nth-child(3) { animation-delay: 0.15s; }
.stagger-item:nth-child(4) { animation-delay: 0.2s; }
.stagger-item:nth-child(5) { animation-delay: 0.25s; }
.stagger-item:nth-child(6) { animation-delay: 0.3s; }

/* ============ INPUTS ============ */
input[type="number"],
input[type="text"],
textarea {
  outline: none;
  transition: all var(--transition-fast);
}

input[type="number"]:focus,
input[type="text"]:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 149, 0.15);
}

/* Custom styled input */
.input-styled {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.input-styled:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 149, 0.1);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 149, 0.3);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 149, 0.5);
}

/* ============ TOAST NOTIFICATIONS ============ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(45, 45, 45, 0.95);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  z-index: 1000;
  max-width: 90%;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.toast.success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(22, 163, 74, 0.95) 100%);
}

.toast.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.95) 0%, rgba(220, 38, 38, 0.95) 100%);
}

/* ============ SPECIAL BUTTONS ============ */
.test-button {
  font-size: 10px !important;
  padding: 6px 10px !important;
  background: rgba(0, 0, 0, 0.05) !important;
  color: var(--text-muted) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all var(--transition-fast) !important;
}

.test-button:hover {
  background: rgba(0, 0, 0, 0.08) !important;
  color: var(--text-secondary) !important;
}

.breakdown-button {
  background: var(--gradient-primary) !important;
  box-shadow: 0 4px 20px rgba(255, 107, 149, 0.4);
  animation: breakdownPulse 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.breakdown-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: breakdownShine 3s ease-in-out infinite;
}

@keyframes breakdownPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(255, 107, 149, 0.4);
  }
  50% { 
    transform: scale(1.03);
    box-shadow: 0 6px 30px rgba(255, 107, 149, 0.6);
  }
}

@keyframes breakdownShine {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -50%) rotate(180deg); }
}

.breakdown-button:hover {
  transform: scale(1.05);
}

.breakdown-button:active {
  transform: scale(0.98);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: space-around;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.nav-item.active::before {
  width: 24px;
}

.nav-icon {
  width: 24px;
  height: 24px;
  transition: all var(--transition-fast);
}

.nav-item:not(.active) .nav-icon {
  opacity: 0.5;
}

.nav-item.active .nav-icon {
  transform: scale(1.1);
}

.nav-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-item.active .nav-label {
  color: var(--primary);
  font-weight: 600;
}

/* ============ WATER GLASSES ============ */
.water-glass {
  width: 12px;
  height: 26px;
  border-radius: 6px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.water-glass.empty {
  background: rgba(125, 211, 252, 0.15);
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.water-glass.filled {
  background: var(--gradient-water);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.water-glass.filled::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

/* ============ MACRO PROGRESS ============ */
.macro-bar {
  height: 8px;
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.macro-bar-protein { background: rgba(253, 164, 175, 0.2); }
.macro-bar-fat { background: rgba(253, 186, 116, 0.2); }
.macro-bar-carb { background: rgba(134, 239, 172, 0.2); }

.macro-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.macro-fill-protein { background: linear-gradient(90deg, #FDA4AF, #FB7185); }
.macro-fill-fat { background: linear-gradient(90deg, #FDBA74, #FB923C); }
.macro-fill-carb { background: linear-gradient(90deg, #86EFAC, #4ADE80); }

/* ============ LEVEL CARD ============ */
.level-card {
  padding: 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.level-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.level-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

/* ============ STAT CARDS ============ */
.stat-card {
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card.green { background: rgba(34, 197, 94, 0.1); }
.stat-card.orange { background: rgba(249, 115, 22, 0.1); }
.stat-card.red { background: rgba(239, 68, 68, 0.1); }
.stat-card.purple { background: rgba(167, 139, 250, 0.1); }
.stat-card.pink { background: rgba(255, 107, 149, 0.1); }

.stat-value {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.stat-card.green .stat-value { color: #22C55E; }
.stat-card.orange .stat-value { color: #F97316; }
.stat-card.red .stat-value { color: #EF4444; }
.stat-card.purple .stat-value { color: #A78BFA; }
.stat-card.pink .stat-value { color: #FF6B95; }

/* ============ TOOLTIP ============ */
.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 1000;
  max-width: 220px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

/* ============ CYCLE PHASE CARDS ============ */
.phase-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.phase-period { background: linear-gradient(135deg, rgba(254, 242, 242, 0.9), rgba(254, 226, 226, 0.9)); }
.phase-pms { background: linear-gradient(135deg, rgba(239, 246, 255, 0.9), rgba(219, 234, 254, 0.9)); }
.phase-ovulation { background: linear-gradient(135deg, rgba(255, 251, 235, 0.9), rgba(254, 243, 199, 0.9)); }
.phase-follicular { background: linear-gradient(135deg, rgba(240, 253, 244, 0.9), rgba(220, 252, 231, 0.9)); }

/* ============ SHIMMER EFFECT ============ */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============ LOADING STATE ============ */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 107, 149, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* ============ GLASS PANEL ============ */
.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ============ DECORATIVE ELEMENTS ============ */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  pointer-events: none;
}

.decorative-blob {
  position: absolute;
  background: var(--gradient-primary);
  opacity: 0.05;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -10px) scale(1.05); }
  66% { transform: translate(-5px, 5px) scale(0.95); }
}

/* ============ NUMBER COUNTER ANIMATION ============ */
.number-animate {
  display: inline-block;
  transition: all 0.3s ease;
}

.number-animate.updating {
  transform: scale(1.1);
  color: var(--primary);
}

/* ============ SAFE AREA ============ */
@supports (padding: env(safe-area-inset-bottom)) {
  .safe-bottom {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 380px) {
  :root {
    --radius-md: 14px;
    --radius-lg: 20px;
  }
  
  .btn-primary {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ============ DARK MODE SUPPORT (Future) ============ */
@media (prefers-color-scheme: dark) {
  /* Reserve for dark mode styles */
}
