:root {
  /* Pembe Tonları */
  --pink-50: #FFF0F5;
  --pink-100: #FFE0EB;
  --pink-200: #FFB6C1;
  --pink-300: #FF91A4;
  --pink-400: #FF69B4;
  --pink-500: #FF1493;
  --pink-600: #C71585;
  
  /* Yeşil Tonları */
  --green-50: #F0FFF4;
  --green-100: #C6F6D5;
  --green-200: #9AE6B4;
  --green-300: #68D391;
  --green-400: #48BB78;
  --green-500: #38A169;
  --green-600: #2F855A;
  
  /* Nötr */
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --gray-100: #F7FAFC;
  --gray-300: #E2E8F0;
  --gray-500: #A0AEC0;
  --gray-700: #4A5568;
  --gray-900: #1A202C;
  --black: #000000;
  
  /* Accent */
  --gold: #FFD700;
  --coral: #FF6B6B;
  --lavender: #E6E6FA;
  --sky: #87CEEB;
  --sunset: #FF7E5F;
  
  /* Gradients */
  --grad-main: linear-gradient(135deg, #FFB6C1, #90EE90);
  --grad-pink: linear-gradient(135deg, #FF69B4, #FFB6C1);
  --grad-green: linear-gradient(135deg, #48BB78, #9AE6B4);
  --grad-sunset: linear-gradient(135deg, #FF7E5F, #FFB6C1);
  --grad-night: linear-gradient(135deg, #2D3748, #4A5568);
  --grad-gold: linear-gradient(135deg, #FFD700, #FFA500);
  
  /* Tipografi boyutları */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --rounded-sm: 4px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-2xl: 24px;
  --rounded-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 20px rgba(255,105,180,0.3);
  --shadow-green: 0 0 20px rgba(72,187,120,0.3);
  
  /* Animasyon */
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;
  --duration-slowest: 1200ms;
  
  /* Z-Index */
  --z-background: -1;
  --z-base: 0;
  --z-garden: 10;
  --z-elements: 20;
  --z-floating: 30;
  --z-navigation: 40;
  --z-overlay: 50;
  --z-modal: 60;
  --z-notification: 70;
  --z-cursor: 80;
  --z-loading: 90;
  --z-top: 100;
}
