/* ──────────────────────────────────────────────
   LiveScoreJSON — Cookie Consent Banner
   NEDEN: KVKK/GDPR uyumluluğu için tüm sayfalarda
   ortak çerez onay banner'ı.
   ────────────────────────────────────────────── */

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--bg-dark, #0f172a); color: #e2e8f0;
    padding: 14px 24px; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; line-height: 1.5; }
.cookie-banner a {
    color: #7dd3fc; text-decoration: underline;
}
.cookie-banner button {
    background: var(--accent, #059669); color: #fff; border: none;
    padding: 7px 18px; border-radius: 5px; font-weight: 600;
    cursor: pointer; font-size: 13px; white-space: nowrap;
    font-family: inherit;
}
.cookie-banner button:hover { background: var(--accent-hover, #047857); }

@media (max-width: 640px) {
    .cookie-banner { padding: 12px 16px; gap: 10px; font-size: 12px; }
    .cookie-banner button { width: 100%; }
}
