/* --- SIFIRLAMA (RESET) --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ana Renk Paleti */
    --bg-main: #0B0D14;          /* En koyu ana zemin */
    --bg-card: #131722;          /* Kart ve modül arka planı */
    --bg-card-hover: #1A1F2E;    /* Kart üzerine gelinceki ton */
    --border-color: #232838;     /* İnce sınır çizgileri */
    
    /* Vurgu & Buton Renkleri */
    --accent-purple: #8B5CF6;    /* Neon Mor Logo / Buton */
    --accent-purple-hover: #7C3AED;
    --accent-green: #22C55E;     /* Fiyat Yeşili */
    --accent-red: #EF4444;       /* İndirim / Etiket Kırmızısı */
    
    /* Tipografi Renkleri */
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    /* Font ve Genişlik */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1440px;
}

body {
    background-color: var(--bg-main) !important;
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.5;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}