:root {
    --theme-primary: #cc1a25;
    --theme-primary-dark: #9f111a;
    --theme-secondary: #0f172a;
    --theme-secondary-soft: #1e293b;
    --theme-accent: #f59e0b;

    --theme-bg: #f6f7fb;
    --theme-card: #ffffff;
    --theme-text: #111827;
    --theme-muted: #64748b;
    --theme-soft: #94a3b8;
    --theme-border: #e5e7eb;

    --theme-success: #16a34a;
    --theme-danger: #dc2626;
    --theme-warning: #f59e0b;
    --theme-info: #2563eb;

    --theme-shadow: 0 14px 38px rgba(15, 23, 42, .10);
}

/* 1) Klasik haber kırmızı */
body.theme-palette-1,
.theme-palette-1 {
    --theme-primary: #cc1a25;
    --theme-primary-dark: #9f111a;
    --theme-secondary: #0f172a;
    --theme-secondary-soft: #1e293b;
    --theme-accent: #f59e0b;

    --theme-bg: #f6f7fb;
    --theme-card: #ffffff;
    --theme-text: #111827;
    --theme-muted: #64748b;
    --theme-border: #e5e7eb;
}

/* 2) Kurumsal lacivert */
body.theme-palette-2,
.theme-palette-2 {
    --theme-primary: #1e3a8a;
    --theme-primary-dark: #172554;
    --theme-secondary: #020617;
    --theme-secondary-soft: #0f172a;
    --theme-accent: #38bdf8;

    --theme-bg: #f3f7ff;
    --theme-card: #ffffff;
    --theme-text: #0f172a;
    --theme-muted: #64748b;
    --theme-border: #dbeafe;
}

/* 3) Siyah / premium */
body.theme-palette-3,
.theme-palette-3 {
    --theme-primary: #111827;
    --theme-primary-dark: #030712;
    --theme-secondary: #374151;
    --theme-secondary-soft: #4b5563;
    --theme-accent: #facc15;

    --theme-bg: #f5f5f5;
    --theme-card: #ffffff;
    --theme-text: #111827;
    --theme-muted: #6b7280;
    --theme-border: #e5e7eb;
}

/* 4) Kırmızı / siyah güçlü haber */
body.theme-palette-4,
.theme-palette-4 {
    --theme-primary: #e30613;
    --theme-primary-dark: #a5000b;
    --theme-secondary: #111827;
    --theme-secondary-soft: #1f2937;
    --theme-accent: #ffffff;

    --theme-bg: #f8fafc;
    --theme-card: #ffffff;
    --theme-text: #111827;
    --theme-muted: #64748b;
    --theme-border: #e2e8f0;
}

/* 5) Beyaz / kırmızı minimal */
body.theme-palette-5,
.theme-palette-5 {
    --theme-primary: #d71920;
    --theme-primary-dark: #991b1b;
    --theme-secondary: #ffffff;
    --theme-secondary-soft: #f8fafc;
    --theme-accent: #111827;

    --theme-bg: #ffffff;
    --theme-card: #ffffff;
    --theme-text: #111827;
    --theme-muted: #64748b;
    --theme-border: #e5e7eb;
}

/* 6) Kayısı / Malatya teması */
body.theme-palette-6,
.theme-palette-6 {
    --theme-primary: #f97316;
    --theme-primary-dark: #c2410c;
    --theme-secondary: #7c2d12;
    --theme-secondary-soft: #9a3412;
    --theme-accent: #facc15;

    --theme-bg: #fff7ed;
    --theme-card: #ffffff;
    --theme-text: #1f2937;
    --theme-muted: #78716c;
    --theme-border: #fed7aa;
}

/* 7) Tam siyah / beyaz medya */
body.theme-palette-7,
.theme-palette-7 {
    --theme-primary: #000000;
    --theme-primary-dark: #111111;
    --theme-secondary: #ffffff;
    --theme-secondary-soft: #f5f5f5;
    --theme-accent: #a3a3a3;

    --theme-bg: #f5f5f5;
    --theme-card: #ffffff;
    --theme-text: #0a0a0a;
    --theme-muted: #737373;
    --theme-border: #e5e5e5;
}

/* 8) Mavi dijital haber */
body.theme-palette-8,
.theme-palette-8 {
    --theme-primary: #2563eb;
    --theme-primary-dark: #1d4ed8;
    --theme-secondary: #0f172a;
    --theme-secondary-soft: #1e293b;
    --theme-accent: #38bdf8;

    --theme-bg: #eff6ff;
    --theme-card: #ffffff;
    --theme-text: #0f172a;
    --theme-muted: #64748b;
    --theme-border: #bfdbfe;
}

/* 9) Yeşil ekonomi / gündem */
body.theme-palette-9,
.theme-palette-9 {
    --theme-primary: #16a34a;
    --theme-primary-dark: #166534;
    --theme-secondary: #052e16;
    --theme-secondary-soft: #14532d;
    --theme-accent: #84cc16;

    --theme-bg: #f0fdf4;
    --theme-card: #ffffff;
    --theme-text: #0f172a;
    --theme-muted: #64748b;
    --theme-border: #bbf7d0;
}

/* 10) Mor modern medya */
body.theme-palette-10,
.theme-palette-10 {
    --theme-primary: #7c3aed;
    --theme-primary-dark: #5b21b6;
    --theme-secondary: #1e1b4b;
    --theme-secondary-soft: #312e81;
    --theme-accent: #f0abfc;

    --theme-bg: #f5f3ff;
    --theme-card: #ffffff;
    --theme-text: #111827;
    --theme-muted: #64748b;
    --theme-border: #ddd6fe;
}

/* Ortak kullanım sınıfları */
.theme-bg {
    background: var(--theme-bg);
}

.theme-card {
    background: var(--theme-card);
    color: var(--theme-text);
    border-color: var(--theme-border);
}

.theme-primary {
    color: var(--theme-primary);
}

.theme-primary-bg {
    background: var(--theme-primary);
    color: #ffffff;
}

.theme-secondary-bg {
    background: var(--theme-secondary);
    color: #ffffff;
}

.theme-accent {
    color: var(--theme-accent);
}

.theme-border {
    border-color: var(--theme-border);
}

/* Header/footer dosyalarında kullanılabilecek ortak yardımcılar */
.mh-theme-primary {
    color: var(--theme-primary);
}

.mh-theme-primary-bg {
    background: var(--theme-primary);
    color: #fff;
}

.mh-theme-dark-bg {
    background: var(--theme-secondary);
    color: #fff;
}

.mh-theme-card {
    background: var(--theme-card);
    color: var(--theme-text);
    border: 1px solid var(--theme-border);
}

.mh-theme-muted {
    color: var(--theme-muted);
}

.mh-theme-shadow {
    box-shadow: var(--theme-shadow);
}