/* ═══════════════════════════════════════════════════════
   FORSID BAR  —  attribution strip
═══════════════════════════════════════════════════════ */

.forsid-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--f-bg, #f6f6f3);
    border-top: 1px solid var(--f-border, #e1e1dc);
}

.forsid-bar__text {
    font-size: 11px;
    font-weight: 400;
    color: var(--f-text-muted, #b8b8b2);
    letter-spacing: 0.02em;
}

.forsid-bar__link {
    font-size: 11px;
    font-weight: 400;
    color: var(--f-text-muted, #b8b8b2);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: var(--f-border, #e1e1dc);
    letter-spacing: 0.02em;
    transition: color 0.15s ease;
}

.forsid-bar__link:hover {
    color: var(--f-text, #555550);
    text-decoration-color: currentColor;
}

/* ── DARK ── */
.forsid-bar--dark {
    background: #0e0e0e;
    border-top: 1px solid #1e1e1e;
}

.forsid-bar--dark .forsid-bar__text        { color: #333330; }
.forsid-bar--dark .forsid-bar__link        { color: #333330; text-decoration-color: #2a2a2a; }
.forsid-bar--dark .forsid-bar__link:hover  { color: #666660; }

/* ═══════════════════════════════════════
   BİLDİRİM
═══════════════════════════════════════ */
:root {
    --notify-bg: #ffffff;
    --notify-text: #1d1d1f;
    --notify-text-secondary: #86868b;
    --notify-border: rgba(0, 0, 0, 0.08);
    --notify-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.1);
    --notify-font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
}
.notify-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    pointer-events: none;
    width: 100%;
    max-width: 380px;
    padding: 0 20px;
    box-sizing: border-box;
}
.notify {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--notify-bg);
    border: 1px solid var(--notify-border);
    border-radius: 14px;
    box-shadow: var(--notify-shadow);
    font-family: var(--notify-font);
    pointer-events: auto;
    animation: notifyIn 0.3s ease-out forwards;
}
.notify.exit {
    animation: notifyOut 0.2s ease-in forwards;
}
.notify-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--notify-text);
    opacity: 0.9;
}
.notify-icon svg { width: 100%; height: 100%; }
.notify-content  { flex: 1; min-width: 0; }
.notify-message {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--notify-text);
    margin: 0;
    letter-spacing: -0.01em;
}
.notify-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--notify-text-secondary);
    transition: background 0.15s ease, color 0.15s ease;
    margin: -4px -6px -4px 0;
}
.notify-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--notify-text);
}
.notify-close svg { width: 16px; height: 16px; }
@keyframes notifyIn {
    0%   { opacity: 0; transform: translateY(-8px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes notifyOut {
    0%   { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-4px) scale(0.98); }
}
@media (max-width: 480px) {
    .notify-container { top: 12px; padding: 0 12px; }
    .notify           { padding: 14px 16px; gap: 12px; border-radius: 12px; }
    .notify-message   { font-size: 13px; }
}

/* ═══════════════════════════════════════
   404
═══════════════════════════════════════ */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}
.page-404__inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.page-404__code {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: #111;
    letter-spacing: -4px;
    margin-bottom: 24px;
}
.page-404__title {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}
.page-404__desc {
    font-size: 15px;
    color: #6d6d6d;
    margin-bottom: 32px;
    line-height: 1.6;
}
.page-404__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .18s;
}
.page-404__btn:hover {
    background: #333;
    color: #fff;
}
