/* =========================================================
   ÇİZGİ ARŞİV — Bootstrap 5 üzeri dark tema
   ========================================================= */

/* ── Tasarım Değişkenleri ─────────────────────────────── */
:root {
    --bg:          #0d1117;
    --surface:     #161b22;
    --surface-2:   #1c2128;
    --surface-3:   #22272e;
    --border:      rgba(255,255,255,0.07);
    --border-2:    rgba(255,255,255,0.11);
    --accent:      #f97316;
    --accent-light:#fb923c;
    --accent-dark: #c2540a;
    --accent-dim:  rgba(249,115,22,0.12);
    --text:        #e6edf3;
    --text-2:      #8b949e;
    --text-3:      #484f58;
    --r-xl:        16px;
    --r-lg:        12px;
    --r-md:        8px;
    --r-sm:        5px;
    --topbar-h:    62px;
    --t:           0.15s ease;
}

/* ── Light Tema ───────────────────────────────────────── */
[data-theme="light"] {
    --bg:          #f0f2f5;
    --surface:     #ffffff;
    --surface-2:   #f6f8fa;
    --surface-3:   #eaedf0;
    --border:      rgba(0,0,0,0.07);
    --border-2:    rgba(0,0,0,0.11);
    --text:        #1c2128;
    --text-2:      #57606a;
    --text-3:      #9ea7b0;
}
[data-theme="light"] .ca-navbar {
    background: rgba(255,255,255,0.88);
    box-shadow: 0 1px 0 0 rgba(249,115,22,0.10), 0 2px 16px rgba(0,0,0,0.08);
}
[data-theme="light"] .ca-nav-list > li > a:hover {
    background: rgba(0,0,0,0.05);
}
[data-theme="light"] .ca-nav-list > li > a:hover i { opacity: 1; }
[data-theme="light"] .search-field {
    background: var(--surface-2);
    border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .search-field:focus {
    background: #fff;
}
[data-theme="light"] .filter-chip:hover {
    border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .ca-theme-icon-dark  { display: none !important; }
[data-theme="light"] .ca-theme-icon-light { display: inline !important; }
[data-theme="light"] .ca-theme-toggle     { color: var(--accent); }

/* Tema geçiş animasyonu */
html { transition: background 0.25s ease, color 0.25s ease; }

/* ── Global reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Bootstrap overrides */
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
.btn:focus-visible { box-shadow: 0 0 0 3px var(--accent-dim); }

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
@keyframes navbar-accent-slide {
    from { transform: translateX(-100%); }
    to   { transform: translateX(120%); }
}

.ca-navbar {
    height: var(--topbar-h);
    background: rgba(13,17,23,0.85);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

/* Animasyonlu alt turuncu accent çizgisi */
.ca-navbar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(249,115,22,0.50) 25%,
        rgba(249,115,22,1.00) 50%,
        rgba(249,115,22,0.50) 75%,
        transparent 100%
    );
    pointer-events: none;
}

.ca-navbar::before {
    content: '';
    position: absolute;
    bottom: 0; left: -20%;
    width: 40%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.60), transparent);
    animation: navbar-accent-slide 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.ca-navbar-inner {
    height: 100%;
    padding: 0 28px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

/* ── Brand ────────────────────────────────────────────── */
.ca-brand {
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.ca-brand:hover { opacity: 0.92; transform: translateX(1px); }

.ca-brand-icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    font-size: 0.92rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.ca-brand-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}
.ca-brand:hover .ca-brand-icon {
    transform: rotate(-5deg) scale(1.06);
}

.ca-brand-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
    white-space: nowrap;
}

.ca-brand-sub {
    font-size: 0.57rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-top: 1px;
    white-space: nowrap;
    font-weight: 500;
}

/* ── Ayırıcı ──────────────────────────────────────────── */
.ca-nav-sep {
    display: block;
    width: 1px;
    height: 22px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.10), transparent);
    flex-shrink: 0;
}

/* ── Nav Linkleri ─────────────────────────────────────── */
.ca-nav { overflow: hidden; min-width: 0; }

.ca-nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0; padding: 0;
}
.ca-nav-list li { list-style: none; }

.ca-nav-list .nav-link,
.ca-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-2);
    padding: 7px 13px;
    border-radius: 10px;
    font-size: 0.83rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
}

.ca-nav-list .nav-link:hover,
.ca-nav-list > li > a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Aktif link: gradient arka plan + nokta */
.ca-nav-list .nav-link.active,
.ca-nav-list > li.current-menu-item > a,
.ca-nav-list > li.current_page_item > a {
    background: linear-gradient(135deg, rgba(249,115,22,0.16) 0%, rgba(249,115,22,0.06) 100%);
    color: var(--accent);
    font-weight: 600;
    box-shadow:
        inset 0 1px 0 rgba(249,115,22,0.18),
        0 0 0 1px rgba(249,115,22,0.12);
}

/* Aktif alt nokta */
.ca-nav-list > li.current-menu-item > a::after,
.ca-nav-list > li.current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(249,115,22,0.80);
}

/* İkonlar (doğrudan <i> ve walker'dan gelen .menu-item-icon) */
.ca-nav-list .nav-link i,
.ca-nav-list > li > a i,
.ca-nav-list > li > a .menu-item-icon i {
    font-size: 0.78rem;
    opacity: 0.50;
    flex-shrink: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.ca-nav-list .nav-link:hover i,
.ca-nav-list > li > a:hover i,
.ca-nav-list > li > a:hover .menu-item-icon i {
    opacity: 1;
    transform: scale(1.10);
}
.ca-nav-list .nav-link.active i,
.ca-nav-list > li.current-menu-item > a i,
.ca-nav-list > li.current-menu-item > a .menu-item-icon i {
    opacity: 1;
    color: var(--accent);
}

/* Walker tarafından eklenen sarma span'lar */
.menu-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.menu-item-text { /* sadece span, herhangi bir override gerektirmiyor */ }


/* ── Arama ────────────────────────────────────────────── */
.ca-search {
    width: 240px;
    flex-shrink: 0;
    transition: width 0.30s cubic-bezier(0.22, 1, 0.36, 1);
}
.ca-search:focus-within { width: 320px; }

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form-icon {
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    font-size: 0.75rem;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 1;
}
.search-form:focus-within .search-form-icon { color: var(--accent); }

.search-field {
    width: 100%; height: 36px;
    padding: 0 88px 0 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 999px;
    color: var(--text);
    font-size: 0.83rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.search-field::-webkit-search-cancel-button,
.search-field::-webkit-search-decoration { -webkit-appearance: none; display: none; }
.search-field::placeholder { color: var(--text-3); }
.search-field:focus {
    border-color: rgba(249,115,22,0.50);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.10), 0 4px 16px rgba(0,0,0,0.30);
    padding-right: 42px;
}

/* Ctrl+K badge */
.search-kbd {
    position: absolute;
    right: 42px; top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px 7px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 6px;
    font-size: 0.6rem;
    font-family: inherit;
    color: var(--text-3);
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
    letter-spacing: 0.02em;
}
.search-form:focus-within .search-kbd { opacity: 0; }

.search-submit {
    position: absolute;
    right: 5px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text-3);
    font-size: 0.7rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.search-form:focus-within .search-submit {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 2px 12px rgba(249,115,22,0.45);
}
.search-submit:hover { transform: translateY(-50%) scale(1.10); }

/* ── İkon buton ───────────────────────────────────────── */
.ca-icon-btn {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: var(--text-2);
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease,
                color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ca-icon-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.ca-icon-btn:active { transform: translateY(0); box-shadow: none; }

/* ── Profil pill ──────────────────────────────────────── */
.ca-profile-pill {
    height: 36px;
    padding: 0 14px 0 5px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    font-family: inherit;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease,
                transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.ca-profile-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(249,115,22,0.10) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ca-profile-pill:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(249,115,22,0.35);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.30), 0 0 0 1px rgba(249,115,22,0.10);
}
.ca-profile-pill:hover::before { opacity: 1; }
.ca-profile-pill:active { transform: translateY(0); box-shadow: none; }

.ca-avatar {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(249,115,22,0.40), inset 0 1px 0 rgba(255,255,255,0.20);
}

.ca-profile-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
    transition: color 0.2s ease;
}
.ca-profile-pill:hover .ca-profile-name { color: var(--text); }

/* ── Kullanıcı menü chevron ───────────────────────────── */
.ca-user-menu-chevron {
    font-size: .6rem;
    color: var(--text-3);
    transition: transform 0.22s ease, color 0.2s ease;
    margin-left: -2px;
}
.ca-profile-pill[aria-expanded="true"] .ca-user-menu-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

/* ── Giriş Yap butonu (misafir) ───────────────────────── */
.ca-login-btn {
    height: 36px;
    padding: 0 16px 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    gap: 7px;
    border: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(249,115,22,0.40), inset 0 1px 0 rgba(255,255,255,0.15);
    white-space: nowrap;
    flex-shrink: 0;
}
.ca-login-btn i { font-size: .78rem; }
.ca-login-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.50), inset 0 1px 0 rgba(255,255,255,0.15);
    color: #fff;
}
.ca-login-btn:active { transform: translateY(0); filter: brightness(0.95); }

/* ── User menu wrapper ────────────────────────────────── */
.ca-user-menu-wrap {
    position: relative;
    flex-shrink: 0;
}

/* ── User dropdown panel ──────────────────────────────── */
.ca-user-dropdown {
    position: fixed;
    top: 0; left: 0;   /* JS tarafından güncellenir */
    min-width: 220px;
    background: var(--surface, rgba(18,22,29,0.98));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
    padding: 6px;
    z-index: 9999;
    /* kapalı */
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    transform-origin: top right;
}
.ca-user-dropdown.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Küçük ok işareti — JS --arrow-right değişkeniyle hizalanır */
.ca-user-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    right: var(--arrow-right, 18px);
    width: 10px; height: 10px;
    background: var(--surface, rgba(18,22,29,0.98));
    border-left: 1px solid rgba(255,255,255,0.10);
    border-top: 1px solid rgba(255,255,255,0.10);
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
}

/* Header: avatar + isim/email */
.ca-user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 2px;
}
.ca-user-dropdown-avatar {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(249,115,22,0.35);
}
.ca-user-dropdown-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}
.ca-user-dropdown-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ca-user-dropdown-email {
    font-size: 0.70rem;
    color: var(--text-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ayraç */
.ca-user-dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 4px 4px;
}

/* Menü öğesi */
.ca-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    cursor: pointer;
}
.ca-user-dropdown-item i {
    width: 16px;
    text-align: center;
    font-size: 0.80rem;
    color: var(--text-3);
    transition: color 0.15s ease;
    flex-shrink: 0;
}
.ca-user-dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
}
.ca-user-dropdown-item:hover i { color: var(--accent); }
.ca-user-dropdown-item--danger { color: #f87171; }
.ca-user-dropdown-item--danger i { color: #f87171; }
.ca-user-dropdown-item--danger:hover {
    background: rgba(248,113,113,0.10);
    color: #fca5a5;
}
.ca-user-dropdown-item--danger:hover i { color: #fca5a5; }

/* ── Mobil çıkış linki ────────────────────────────────── */
.ca-mobile-logout-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #f87171;
    text-decoration: none;
    transition: background 0.15s ease;
    margin-top: 4px;
}
.ca-mobile-logout-link:hover { background: rgba(248,113,113,0.10); color: #fca5a5; }

/* ══════════════════════════════════════════════════════════
   LIVE SEARCH DROPDOWN
   ══════════════════════════════════════════════════════════ */
.search-form { position: relative; }

/* Search açıkken field kenarlığı açılıma işaret eder */
.search-form.is-active .search-field {
    border-bottom-left-radius:  8px;
    border-bottom-right-radius: 8px;
    border-color: rgba(249,115,22,0.55) !important;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.12), 0 4px 16px rgba(0,0,0,0.30) !important;
}

/* Dropdown kapsayıcı — position:fixed ile body-level render */
.ca-search-dropdown {
    position: fixed;          /* body-level — navbar overflow'undan etkilenmez */
    top: 0; left: 0;          /* JS tarafından güncellenir */
    width: 340px;             /* JS tarafından güncellenir */
    background: rgba(18,22,29,0.97);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow:
        0 24px 64px rgba(0,0,0,0.70),
        0 8px 24px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);
    z-index: 9999;            /* Navbar (200), Drawer (299) üzerinde */
    overflow: hidden;
    /* Giriş animasyonu */
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top center;
    transition:
        opacity 0.22s cubic-bezier(0.22,1,0.36,1),
        transform 0.22s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
}

.ca-search-dropdown.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ── Skeleton yüklenme ─────────────────────────────── */
.ca-search-skeleton {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
}
.ca-search-skeleton-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
}
.ca-search-sk-thumb {
    width: 36px; height: 50px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
    animation: ca-sk-pulse 1.4s ease-in-out infinite;
}
.ca-search-sk-lines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.ca-search-sk-line {
    height: 9px;
    border-radius: 5px;
    background: rgba(255,255,255,0.05);
    animation: ca-sk-pulse 1.4s ease-in-out infinite;
}
.ca-search-sk-line:nth-child(2) { width: 60%; animation-delay: 0.15s; }
.ca-search-sk-line:nth-child(3) { width: 40%; animation-delay: 0.30s; }
@keyframes ca-sk-pulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1;   }
}

/* ── Sonuç başlığı ────────────────────────────────── */
.ca-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ca-search-header-label {
    font-size: 0.63rem;
    font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}
.ca-search-header-count {
    font-size: 0.63rem;
    color: var(--text-3);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 2px 8px;
}

/* ── Sonuç listesi ────────────────────────────────── */
.ca-search-results {
    list-style: none;
    margin: 0; padding: 6px 6px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    max-height: 380px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.10) transparent;
}
.ca-search-results::-webkit-scrollbar      { width: 4px; }
.ca-search-results::-webkit-scrollbar-track { background: transparent; }
.ca-search-results::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }

/* Sonuç satırı */
.ca-search-result-item {
    list-style: none;
}
.ca-search-result-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.15s ease, transform 0.15s ease;
    position: relative;
}
.ca-search-result-link:hover,
.ca-search-result-item.is-focused .ca-search-result-link {
    background: rgba(255,255,255,0.06);
    color: var(--text);
}
.ca-search-result-link:hover .ca-search-result-title,
.ca-search-result-item.is-focused .ca-search-result-title {
    color: var(--accent);
}

/* Thumbnail */
.ca-search-result-thumb {
    width: 36px; height: 50px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--surface-3);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.07);
}
.ca-search-result-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.ca-search-result-thumb-fallback {
    width: 100%; height: 100%;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    color: var(--text-3);
}

/* İçerik */
.ca-search-result-body { flex: 1; min-width: 0; }
.ca-search-result-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s ease;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
/* Arama terimi vurgusu */
.ca-search-result-title mark {
    background: rgba(249,115,22,0.25);
    color: var(--accent);
    border-radius: 3px;
    padding: 0 2px;
}
.ca-search-result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: var(--text-3);
}
.ca-search-result-cat {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.65rem;
}
.ca-search-result-cat i { font-size: 0.58rem; }

/* ── Boş durum ────────────────────────────────────── */
.ca-search-empty {
    padding: 28px 16px;
    text-align: center;
    color: var(--text-3);
}
.ca-search-empty i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    opacity: 0.4;
    display: block;
}
.ca-search-empty p {
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}
.ca-search-empty strong { color: var(--text-2); }

/* ── Footer: Tüm sonuçlar ────────────────────────── */
.ca-search-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 8px 6px;
}
.ca-search-all-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.80rem;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.ca-search-all-link:hover {
    background: rgba(249,115,22,0.10);
    color: var(--accent);
}
.ca-search-all-link i { font-size: 0.72rem; }
.ca-search-all-count {
    margin-left: auto;
    font-size: 0.65rem;
    background: rgba(249,115,22,0.15);
    color: var(--accent);
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 700;
}

/* Light tema uyumu */
[data-theme="light"] .ca-search-dropdown {
    background: rgba(255,255,255,0.97);
    border-color: rgba(0,0,0,0.09);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
}
[data-theme="light"] .ca-search-result-title { color: var(--text); }
[data-theme="light"] .ca-search-sk-thumb,
[data-theme="light"] .ca-search-sk-line { background: rgba(0,0,0,0.07); }

/* ══════════════════════════════════════════════════════════
   CONTENT LAYOUT — sayfa içi içerik px ile
   ══════════════════════════════════════════════════════════ */
.ca-page {
    padding: 20px 28px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 22px;
    align-items: start;
}

.ca-page-full {
    padding: 0;
    min-height: calc(100vh - var(--topbar-h));
    display: flex;
    flex-direction: column;
}

/* ══════════════════════════════════════════════════════════
   TICKER — kayar son eklenenler bandı
   ══════════════════════════════════════════════════════════ */
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.recent-ticker {
    display: flex;
    align-items: stretch;
    height: 42px;
    margin-bottom: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
}

.ticker-label {
    flex-shrink: 0;
    padding: 0 16px;
    display: flex; align-items: center;
    background: var(--accent);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    height: 42px;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
    will-change: transform;
}
.ticker-wrapper:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 100%;
    border-right: 1px solid var(--border);
    text-decoration: none;
    transition: background var(--t);
    flex-shrink: 0;
}
.ticker-item:hover { background: var(--surface-2); }

.ticker-thumb {
    width: 26px; height: 26px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--surface-3);
    flex-shrink: 0;
}
.ticker-thumb img { width: 100%; height: 100%; object-fit: cover; }

.ticker-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ticker-time { font-size: 0.68rem; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   HERO — featured grid
   ══════════════════════════════════════════════════════════ */
.hero-featured {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 6px;
    height: 420px;
    margin-bottom: 18px;
}

.hero-side { display: flex; flex-direction: column; gap: 6px; }

.hero-card {
    position: relative;
    overflow: hidden;
    background: var(--surface-3) center/cover no-repeat;
    border-radius: var(--r-md);
    display: flex; flex-direction: column; justify-content: flex-end;
    text-decoration: none;
}
.hero-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.25) 45%,
        transparent 100%);
}
.hero-card--sm { flex: 1; min-height: 0; transition: filter var(--t); }
.hero-card--sm:hover { filter: brightness(1.06); }
.hero-card--main { height: 100%; }

.hero-card-body { position: relative; z-index: 1; padding: 12px 14px 14px; }

.hero-cat-tag {
    display: inline-flex; align-items: center;
    height: 20px; padding: 0 9px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.hero-card-title {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.84rem; font-weight: 700;
    color: #fff; line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-main-title {
    margin: 0 0 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem; font-weight: 700;
    color: #fff; line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-main-meta {
    display: flex; align-items: center; gap: 14px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.68);
    margin-bottom: 12px;
}
.hero-main-meta i { margin-right: 3px; opacity: 0.8; }

.hero-read-btn {
    display: inline-flex; align-items: center;
    height: 32px; padding: 0 16px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.32);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.78rem; font-weight: 600;
    margin-bottom: 12px;
    transition: background var(--t);
}
.hero-card--main:hover .hero-read-btn { background: rgba(255,255,255,0.22); }

.hero-dots { display: flex; align-items: center; gap: 4px; }
.hero-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.32);
    transition: all var(--t);
}
.hero-dot.active { width: 16px; border-radius: 3px; background: #fff; }

/* ══════════════════════════════════════════════════════════
   FILTER CHIPS
   ══════════════════════════════════════════════════════════ */
.filter-row {
    display: flex; gap: 6px;
    margin-bottom: 16px;
    overflow-x: auto; scrollbar-width: none; padding-bottom: 2px;
}
.home .filter-row > .filter-chip[data-filter="all"] { order: 1; }
.home .filter-row > .filter-chip[data-filter="latest"] { order: 2; }
.home .filter-row > .filter-chip[data-filter="favorites"] { order: 3; }
.home .filter-row > .filter-chip[data-filter="continue"] { order: 4; }
.filter-row::-webkit-scrollbar { display: none; }

.filter-chip {
    display: inline-flex; align-items: center; gap: 6px;
    height: 32px; padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border-2);
    background: var(--surface);
    color: var(--text-2);
    font-size: 0.79rem; font-weight: 600; font-family: inherit;
    white-space: nowrap; flex-shrink: 0;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.filter-chip i { font-size: 0.72rem; opacity: 0.7; }
.filter-chip:hover {
    color: var(--text);
    background: var(--surface-2);
    border-color: rgba(255,255,255,0.15);
}
.filter-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 2px 10px rgba(249,115,22,0.30);
}
.filter-chip.active i { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   SECTION TITLE
   ══════════════════════════════════════════════════════════ */
.section-title {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.section-title h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem; font-weight: 700;
    color: var(--text);
    display: flex; align-items: center; gap: 8px;
}
.section-title h2::before {
    content: '';
    display: inline-block;
    width: 3px; height: 15px;
    border-radius: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.section-title a {
    font-size: 0.75rem; font-weight: 600;
    color: var(--text-3);
    display: inline-flex; align-items: center; gap: 4px;
    transition: color var(--t);
}
.section-title a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   LIBRARY PANEL
   ══════════════════════════════════════════════════════════ */
.library-panel {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
}

/* ══════════════════════════════════════════════════════════
   KATEGORİ / SERİ KARTLARI
   ══════════════════════════════════════════════════════════ */
.series-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px 11px;
}

.series-card {
    display: flex; flex-direction: column;
    border-radius: var(--r-md);
    background: var(--surface-2);
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.series-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    border-color: rgba(249,115,22,0.28);
}
.series-card:hover .series-thumb img { transform: scale(1.04); }

.series-thumb {
    display: block;
    aspect-ratio: 0.68;
    overflow: hidden;
    background: var(--surface-3);
    flex-shrink: 0;
}
.series-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.fallback-cover {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem; font-weight: 700;
    color: var(--text-3);
    background: var(--surface-3);
}

.series-info {
    padding: 9px 10px 11px;
    flex: 1;
    display: flex; flex-direction: column; gap: 3px;
}
.series-info h3 {
    margin: 0;
    font-size: 0.79rem; font-weight: 600;
    color: var(--text); line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.series-sub {
    margin: 0;
    font-size: 0.7rem; color: var(--text-3);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════════
   RECENT / CONTINUE (alt liste)
   ══════════════════════════════════════════════════════════ */
.continue-section {
    margin-top: 18px; padding-top: 16px;
    border-top: 1px solid var(--border);
}
.continue-section-label {
    font-size: 0.66rem; font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.09em;
    margin: 0 0 10px;
}
.continue-list { display: flex; flex-direction: column; gap: 1px; }

.continue-item {
    display: flex; align-items: center; gap: 12px;
    padding: 7px 6px;
    border-radius: var(--r-md);
    transition: background var(--t);
}
.continue-item:hover { background: var(--surface-3); }

.continue-cover {
    width: 34px; height: 46px;
    border-radius: var(--r-sm);
    overflow: hidden;
    background: var(--surface-3);
    flex-shrink: 0; display: block;
}
.continue-cover img { width: 100%; height: 100%; object-fit: cover; }
.continue-cover span {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-size: 0.74rem; color: var(--text-3);
}
.continue-item h3 {
    margin: 0; flex: 1; min-width: 0;
    font-size: 0.79rem; font-weight: 600;
    color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.continue-pages, .continue-percent, .progress-track { display: none; }

/* ══════════════════════════════════════════════════════════
   SAĞ SIDEBAR PANELLERİ
   ══════════════════════════════════════════════════════════ */
.right-sidebar {
    display: flex; flex-direction: column; gap: 14px;
    position: sticky; top: calc(var(--topbar-h) + 16px);
}

/* ── Panel blok: glassmorphism kart ────────────────── */
.panel-block {
    padding: 16px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.030) 0%,
        rgba(255,255,255,0.010) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.panel-block:hover {
    border-color: rgba(255,255,255,0.10);
    box-shadow: 0 8px 32px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Sol süslü gradient çizgi */
.panel-block::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--accent), rgba(249,115,22,0.20));
}

.panel-block-title {
    margin: 0 0 14px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.67rem; font-weight: 700;
    color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.10em;
    display: flex; align-items: center; gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.panel-block-title i {
    color: var(--accent);
    font-size: 0.75rem;
    width: 20px; height: 20px;
    background: rgba(249,115,22,0.12);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Kategori chipleri */
.cat-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-chip {
    display: inline-flex; align-items: center;
    height: 26px; padding: 0 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-2);
    font-size: 0.70rem; font-weight: 600;
    transition: background 0.18s ease, border-color 0.18s ease,
                color 0.18s ease, transform 0.18s ease;
    text-decoration: none;
}
.cat-chip:hover {
    background: rgba(249,115,22,0.12);
    border-color: rgba(249,115,22,0.28);
    color: var(--accent);
    transform: translateY(-1px);
}

/* Recent posts */
.recent-list { display: flex; flex-direction: column; gap: 2px; }
.recent-item {
    display: flex; gap: 10px; align-items: center;
    padding: 7px 6px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}
.recent-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(2px);
}

.recent-thumb {
    width: 36px; height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-3); flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.06);
}
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-thumb span {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-size: 0.75rem; font-weight: 700; color: var(--text-3);
}
.recent-body { flex: 1; min-width: 0; }
.recent-body h4 {
    margin: 0;
    font-size: 0.74rem; font-weight: 600;
    color: var(--text); line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.18s ease;
}
.recent-item:hover .recent-body h4 { color: var(--accent); }
.recent-body time { display: block; margin-top: 3px; font-size: 0.62rem; color: var(--text-3); }

/* ══════════════════════════════════════════════════════════
   KATEGORİ SAYFASI — seri başlık + bölüm listesi
   ══════════════════════════════════════════════════════════ */
.series-header-panel {
    display: flex; gap: 22px;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    margin-bottom: 16px;
    align-items: flex-start;
}
.series-cover-lg {
    width: 130px; flex-shrink: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 0.68;
    background: var(--surface-3);
}
.series-cover-lg img { width: 100%; height: 100%; object-fit: cover; }
.series-cover-lg .fallback-cover { font-size: 2.2rem; }
.series-header-meta { flex: 1; min-width: 0; }
.series-eyebrow {
    margin: 0 0 6px;
    font-size: 0.63rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: var(--accent);
}
.series-name {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem; font-weight: 700;
    color: var(--text); line-height: 1.2;
    letter-spacing: -0.02em;
}
.series-desc {
    margin: 0 0 12px;
    font-size: 0.84rem; color: var(--text-2); line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.series-stat-row { display: flex; flex-wrap: wrap; gap: 14px; font-size: 0.78rem; color: var(--text-3); }
.series-stat-row strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }

/* ── Episodes Panel ─────────────────────────────────────── */
.episodes-panel {
    padding: 0;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.028) 0%,
        rgba(255,255,255,0.008) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.28),
                inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Panel başlığı */
.episodes-panel .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.018);
    position: relative;
}

.episodes-panel .section-title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 20px;
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 1px;
}

.episodes-panel .section-title h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -0.01em;
}

.episodes-panel .section-title h2::before {
    content: '';
    display: inline-block;
    width: 14px; height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 2px 8px rgba(249,115,22,0.45);
    flex-shrink: 0;
}

/* Bölüm sayısı badge */
.episodes-panel .section-title .muted {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 0.70rem;
    font-weight: 600;
    color: var(--text-3);
}

/* Episode list */
.episode-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
}

@keyframes ep-row-in {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}

.episode-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 20px;
    text-decoration: none;
    position: relative;
    transition: background 0.18s ease, transform 0.18s ease;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.episode-row:last-child { border-bottom: none; }

/* Hover: sol turuncu çizgi + hafif arka plan */
.episode-row::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, var(--accent), rgba(249,115,22,0.20));
    opacity: 0;
    transform: scaleY(0.5);
    transition: opacity 0.20s ease, transform 0.20s ease;
}

.episode-row:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.episode-row:hover {
    background: rgba(255,255,255,0.04);
}

/* Numara kolonu */
.ep-num {
    width: 28px;
    flex-shrink: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-3);
    text-align: right;
    transition: color 0.18s ease;
}
.episode-row:hover .ep-num { color: var(--accent); }

/* Thumbnail */
.ep-thumb {
    width: 44px; height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--surface-3);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-thumb-fallback {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-size: 0.78rem; color: var(--text-3);
}
.episode-row:hover .ep-thumb {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.50);
}

/* Bilgi alanı */
.ep-info { flex: 1; min-width: 0; }
.ep-info h3 {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.18s ease;
    letter-spacing: -0.01em;
}
.episode-row:hover .ep-info h3 { color: var(--accent); }
.ep-info time {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
    font-size: 0.65rem;
    color: var(--text-3);
}
.ep-info time::before {
    content: '';
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--text-3);
    opacity: 0.5;
}

/* YENİ badge */
@keyframes ep-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.45); }
    50%       { box-shadow: 0 0 0 5px rgba(249,115,22,0); }
}

.ep-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 20px;
    padding: 0 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(249,115,22,0.22), rgba(249,115,22,0.10));
    border: 1px solid rgba(249,115,22,0.30);
    color: var(--accent);
    font-size: 0.60rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
    animation: ep-badge-pulse 2s ease-in-out infinite;
}

.ep-badge::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(249,115,22,0.80);
}

/* Oku butonu */
.ep-read-btn {
    flex-shrink: 0;
    height: 32px;
    padding: 0 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--text-2);
    font-size: 0.74rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.20s ease, border-color 0.20s ease,
                color 0.20s ease, transform 0.20s ease, box-shadow 0.20s ease;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ep-read-btn i { font-size: 0.75rem; }

.episode-row:hover .ep-read-btn {
    background: linear-gradient(135deg, rgba(249,115,22,0.20), rgba(249,115,22,0.10));
    border-color: rgba(249,115,22,0.35);
    color: var(--accent);
    transform: translateX(-2px);
    box-shadow: 0 2px 12px rgba(249,115,22,0.25);
}

/* ══════════════════════════════════════════════════════════
   OKUYUCU (SINGLE POST)
   ══════════════════════════════════════════════════════════ */

/* ── Wrapper ──────────────────────────────────────────── */
.ca-reader-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

/* ── Breadcrumb ───────────────────────────────────────── */
.reader-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    color: var(--text-3);
    flex-wrap: wrap;
}
.reader-breadcrumb a { color: var(--text-2); transition: color 0.15s ease; }
.reader-breadcrumb a:hover { color: var(--accent); }
.reader-breadcrumb span { color: var(--text); font-weight: 600; }
.reader-bc-sep { font-size: 0.5rem; opacity: 0.4; }

/* ── Başlık Paneli ────────────────────────────────────── */
.reader-header {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    align-items: flex-start;
}

.reader-cover-wrap {
    width: 110px;
    flex-shrink: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 0.68;
    background: var(--surface-3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.reader-cover-img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.reader-header-body { flex: 1; min-width: 0; }

.reader-series-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--accent);
    margin-bottom: 6px;
    transition: opacity 0.15s ease;
}
.reader-series-link:hover { opacity: 0.8; }
.reader-series-link i { font-size: 0.6rem; }

.reader-title {
    margin: 0 0 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.reader-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.reader-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 26px;
    padding: 0 10px;
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    font-size: 0.72rem;
    color: var(--text-2);
}
.reader-meta-pill i { font-size: 0.65rem; color: var(--text-3); }

.reader-series-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(249,115,22,0.25);
    border-radius: var(--r-md);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.reader-series-btn:hover {
    background: rgba(249,115,22,0.20);
    border-color: rgba(249,115,22,0.40);
}

/* ── Bölüm Navigasyonu ────────────────────────────────── */
.reader-chapter-nav {
    display: flex;
    align-items: stretch;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 10px;
}
.reader-chapter-nav--bottom { margin-top: 4px; }

.reader-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--r-md);
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    color: var(--text);
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    flex: 1;
}
.reader-nav-btn--next { justify-content: flex-end; }
.reader-nav-btn--series { justify-content: center; flex: 0.7; }
.reader-nav-btn:hover {
    background: var(--surface-3);
    border-color: rgba(249,115,22,0.30);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.reader-nav-btn--disabled {
    opacity: 0.38;
    cursor: not-allowed;
    pointer-events: none;
}

.reader-nav-btn i { font-size: 0.78rem; color: var(--text-3); flex-shrink: 0; }
.reader-nav-btn:hover i { color: var(--accent); }
.reader-nav-btn--next:hover i,
.reader-nav-btn--series:hover i { color: var(--accent); }

.reader-nav-label {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.reader-nav-label small {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-3);
    line-height: 1;
    margin-bottom: 2px;
}
.reader-nav-label strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}
.reader-nav-btn--next .reader-nav-label { text-align: right; }

.reader-nav-current {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-3);
    flex-shrink: 0;
    white-space: nowrap;
}
.reader-nav-current i { color: var(--accent); font-size: 0.68rem; }

/* ── Okuma Alanı ──────────────────────────────────────── */
.reader-content {
    background: #0a0a0a;
    border-radius: var(--r-xl);
    overflow: hidden;
    padding: 8px 0;
}
[data-theme="light"] .reader-content { background: #1a1a1a; }

.reader-content img {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    /* çizgi roman sayfaları arasında ince boşluk */
    padding: 1px 0;
}
.reader-content p {
    margin: 0;
    line-height: 0;
    font-size: 0;
}
.reader-content p:empty { display: none; }
/* Metin bazlı içerik varsa normalize et */
.reader-content p:has(> :not(img)) {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-2);
    padding: 12px 20px;
}

/* ── Etiketler ────────────────────────────────────────── */
.reader-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}
.reader-tags-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-3);
    margin-right: 4px;
}

/* ══════════════════════════════════════════════════════════
   YAZAR KUTUSU
   ══════════════════════════════════════════════════════════ */
.reader-author-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}

/* Arka plan dekor */
.reader-author-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 60%, transparent 100%);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

/* ── Avatar ───────────────────────────────────────────── */
.reader-author-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.reader-author-avatar,
.reader-author-avatar-wrap > img {
    width: 72px !important;
    height: 72px !important;
    border-radius: var(--r-lg);
    object-fit: cover;
    display: block;
    background: var(--surface-3);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.reader-author-avatar-fallback {
    width: 72px; height: 72px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

/* Rozet */
.reader-author-badge {
    position: absolute;
    bottom: -4px; right: -4px;
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 6px;
    border: 2px solid var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(249,115,22,0.40);
}

/* ── Gövde ────────────────────────────────────────────── */
.reader-author-body { flex: 1; min-width: 0; }

.reader-author-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.reader-author-eyebrow {
    margin: 0 0 3px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--accent);
}
.reader-author-eyebrow i { font-size: 0.58rem; }

.reader-author-name {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* İstatistikler */
.reader-author-stats {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}
.reader-author-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 12px;
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    min-width: 52px;
    text-align: center;
}
.reader-author-stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.reader-author-stat span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-3);
    margin-top: 1px;
}

/* Bio */
.reader-author-bio {
    margin: 0 0 14px;
    font-size: 0.86rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* Link */
.reader-author-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 16px;
    background: var(--accent-dim);
    border: 1px solid rgba(249,115,22,0.22);
    border-radius: var(--r-md);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.reader-author-link i { font-size: 0.65rem; transition: transform 0.2s ease; }
.reader-author-link:hover {
    background: rgba(249,115,22,0.18);
    border-color: rgba(249,115,22,0.38);
    transform: translateY(-1px);
}
.reader-author-link:hover i { transform: translateX(3px); }

/* Plugin/Gutenberg'in auto-eklediği yazar kutusunu gizle */
.wp-block-post-author,
.entry-author,
.author-info,
.author-bio-box,
.post-author-bio,
.saboxplugin-wrap,
[class*="sabox"],
[class*="sab-"] { display: none !important; }

/* Responsive */
@media (max-width: 600px) {
    .reader-author-card { flex-direction: column; gap: 14px; }
    .reader-author-top { flex-direction: column; gap: 10px; }
    .reader-author-stats { align-self: stretch; justify-content: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   YORUMLAR — Modernize
   ══════════════════════════════════════════════════════════ */

/* ── Kapsayıcı ────────────────────────────────────────── */
.reader-comments-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

/* ── Başlık çubuğu ────────────────────────────────────── */
.ca-comments {
    display: flex;
    flex-direction: column;
}

.ca-comments-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 18px 22px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
}
.ca-comments-title i {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent-dim);
    border-radius: var(--r-md);
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ── Yorum Listesi ────────────────────────────────────── */
.ca-comment-list {
    list-style: none;
    margin: 0;
    padding: 0 22px;
    display: flex;
    flex-direction: column;
}

/* Her yorum kartı */
.ca-comment-item {
    position: relative;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.ca-comment-item:last-child { border-bottom: none; }

/* Yanıt yorumları */
.ca-comment-item .children {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 52px;
    border-left: 2px solid var(--border-2);
    padding-left: 16px;
}
.ca-comment-item .children .ca-comment-item {
    padding: 14px 0;
}
.ca-comment-item .children .ca-comment-item:last-child { border-bottom: none; }

/* Gövde */
.ca-comment-body {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* Avatar */
.ca-comment-avatar { flex-shrink: 0; position: relative; }
.ca-comment-avatar-img,
.ca-comment-avatar img {
    width: 40px; height: 40px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    background: var(--surface-3);
}
/* Fallback avatar (baş harf) */
.ca-comment-avatar-fallback {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(249,115,22,0.30);
    flex-shrink: 0;
}

/* Avatar balon efekti */
.ca-comment-avatar::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--surface);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.ca-comment-item:first-child .ca-comment-avatar::after { opacity: 1; }

/* İçerik alanı */
.ca-comment-main {
    flex: 1;
    min-width: 0;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 0 var(--r-lg) var(--r-lg) var(--r-lg);
    padding: 12px 14px;
    position: relative;
}
/* Balon kuyruğu */
.ca-comment-main::before {
    content: '';
    position: absolute;
    top: 12px; left: -6px;
    width: 12px; height: 12px;
    background: var(--surface-2);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transform: rotate(45deg);
    border-radius: 0 0 0 3px;
}

/* Header: yazar + tarih */
.ca-comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.ca-comment-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}
.ca-comment-date {
    font-size: 0.68rem;
    color: var(--text-3);
    margin-left: auto;
    white-space: nowrap;
}
.ca-comment-pending {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(249,115,22,0.20);
    border-radius: 4px;
    padding: 1px 7px;
}

/* Yorum metni */
.ca-comment-text {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
}
.ca-comment-text p { margin: 0 0 0.4em; }
.ca-comment-text p:last-child { margin: 0; }
.ca-comment-text a { color: var(--accent); }

/* Aksiyonlar */
.ca-comment-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.ca-comment-reply a,
.comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--r-sm);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-3);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}
.ca-comment-reply a:hover,
.comment-reply-link:hover {
    color: var(--accent);
    background: var(--accent-dim);
    border-color: rgba(249,115,22,0.20);
}

/* ── Sayfalama ────────────────────────────────────────── */
.ca-comments-pagination {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    padding: 14px 22px;
    border-top: 1px solid var(--border);
}

/* ── Yorum Formu ──────────────────────────────────────── */
.ca-comment-form-wrap {
    padding: 22px;
    border-top: 2px solid var(--border);
    background: var(--surface-2);
}

.ca-comments-form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}
.ca-comments-form-title i {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent-dim);
    border-radius: var(--r-md);
    color: var(--accent);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Kullanıcı giriş mesajı */
.ca-comment-form .logged-in-as {
    font-size: 0.78rem;
    color: var(--text-3);
    margin: 0 0 14px;
    padding: 8px 12px;
    background: var(--surface-3);
    border-radius: var(--r-md);
}
.ca-comment-form .logged-in-as a { color: var(--accent); }

.ca-comment-form { display: flex; flex-direction: column; gap: 12px; }
.ca-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ca-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ca-form-group label {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: 0.01em;
}
.ca-form-group label span { color: var(--accent); margin-left: 1px; }

.ca-form-control {
    width: 100%;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    color: var(--text);
    font-size: 0.84rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ca-form-control:focus {
    background: var(--surface);
    border-color: rgba(249,115,22,0.50);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
}
.ca-form-control::placeholder { color: var(--text-3); }
.ca-form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

/* Form alt çubuğu */
.ca-comment-form .form-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.ca-comment-submit {
    height: 40px;
    padding: 0 24px;
    background: var(--accent);
    border: none;
    border-radius: var(--r-md);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
    box-shadow: 0 3px 12px rgba(249,115,22,0.35);
}
.ca-comment-submit::before {
    content: '\f1d8';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.78rem;
}
.ca-comment-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(249,115,22,0.45);
}
.ca-comment-submit:active { transform: translateY(0); }

.ca-cancel-reply {
    display: inline-flex;
    align-items: center;
}
.ca-cancel-reply a {
    font-size: 0.75rem;
    color: var(--text-3);
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ca-cancel-reply a:hover { color: var(--accent); }

/* Kapalı / kilitli */
.ca-comments-closed,
.reader-comments-locked {
    text-align: center;
    padding: 28px 20px;
    color: var(--text-3);
    font-size: 0.84rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.ca-comments-closed i { font-size: 1.4rem; opacity: 0.4; }

/* Eski single class'ları (geriye uyumluluk) */
.single-post-content,
.single-tags { display: none; }

/* ══════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════ */
.pagination-wrap { margin-top: 20px; }
.pagination-wrap .nav-links { display: flex; flex-wrap: wrap; gap: 5px; }
.pagination-wrap .page-numbers {
    min-width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--border-2);
    border-radius: var(--r-md);
    color: var(--text-2);
    font-size: 0.8rem;
    transition: all var(--t);
}
.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.ca-footer {
    position: relative;
    margin-top: 0;
    background: rgba(10,14,20,0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Üst gradient çizgi */
.ca-footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(249,115,22,0.50) 30%,
        rgba(249,115,22,0.80) 50%,
        rgba(249,115,22,0.50) 70%,
        transparent 100%
    );
    pointer-events: none;
}

.ca-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 28px;
    flex-wrap: wrap;
}

/* Marka */
.ca-footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ca-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ca-footer-logo-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(249,115,22,0.35);
}

.ca-footer-logo-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.ca-footer-tagline {
    font-size: 0.72rem;
    color: var(--text-3);
    margin: 0;
    line-height: 1.5;
}

/* Linkler */
.ca-footer-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.ca-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-3);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease;
}
.ca-footer-link i { font-size: 0.70rem; opacity: 0.75; }
.ca-footer-link:hover {
    color: var(--accent);
    background: rgba(249,115,22,0.08);
}

/* Copyright */
.ca-footer-copy {
    font-size: 0.72rem;
    color: var(--text-3);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .ca-footer-inner { flex-direction: column; align-items: flex-start; padding: 16px 20px; gap: 14px; }
    .ca-footer-copy  { font-size: 0.68rem; }
}

/* ════════════════════════════════════════════════════════
   VIEW TRANSITIONS — tema animasyonu
   ════════════════════════════════════════════════════════ */
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.38s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(root) {
    animation-name: vt-fade-out;
}

::view-transition-new(root) {
    animation-name: vt-fade-in;
}

@keyframes vt-fade-out {
    from { opacity: 1; filter: blur(0); }
    to   { opacity: 0; filter: blur(4px); }
}

@keyframes vt-fade-in {
    from { opacity: 0; filter: blur(4px); }
    to   { opacity: 1; filter: blur(0); }
}

/* Tema toggle butonunu animasyon siirasinda gizle */
#ca-theme-toggle:active {
    opacity: 0.70;
    transform: scale(0.92);
}

/* ══════════════════════════════════════════════════════════
   UTILS
   ══════════════════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 48px 24px; }
.empty-state p { color: var(--text-2); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.main-content--library, .main-content--category { padding: 0; background: none; border: none; min-width: 0; }

/* Eski class örtüşmeleri — kaldır */
.panel-toolbar, .filter-tabs, .filter-tab,
.people-list, .person-row, .blog-list, .blog-row,
.follow-btn { display: none !important; }

/* ══════════════════════════════════════════════════════════
   MOBİL DRAWER & HAMBURGER
   ══════════════════════════════════════════════════════════ */

/* Hamburger butonu — masaüstünde gizli */
.ca-hamburger { display: none !important; }

/* Overlay */
.ca-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.60);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 298;
    opacity: 0;
    transition: opacity 0.28s ease;
}
.ca-mobile-overlay.is-open {
    display: block;
    opacity: 1;
}

/* Drawer */
.ca-mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--surface);
    border-left: 1px solid var(--border-2);
    z-index: 299;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.30s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    box-shadow: -8px 0 40px rgba(0,0,0,0.50);
}
.ca-mobile-drawer.is-open { transform: translateX(0); }

.ca-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.ca-mobile-drawer-search {
    padding: 14px 18px 10px;
    flex-shrink: 0;
}
.ca-mobile-drawer-search .search-field {
    width: 100%;
    height: 40px;
    padding-left: 40px;
}

/* Mobil nav listesi */
.ca-mobile-nav { flex: 1; overflow-y: auto; padding: 8px 10px; }

.ca-mobile-nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ca-mobile-nav-list li { list-style: none; }
.ca-mobile-nav-list > li > a,
.ca-mobile-nav-list .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--r-md);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}
.ca-mobile-nav-list > li > a:hover,
.ca-mobile-nav-list .nav-link:hover {
    background: var(--surface-2);
    color: var(--text);
}
.ca-mobile-nav-list > li.current-menu-item > a,
.ca-mobile-nav-list .nav-link.active {
    background: rgba(249,115,22,0.12);
    color: var(--accent);
    font-weight: 600;
}
.ca-mobile-nav-list .menu-item-icon i,
.ca-mobile-nav-list > li > a i {
    font-size: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.ca-mobile-nav-list > li.current-menu-item > a i,
.ca-mobile-nav-list > li.current-menu-item > a .menu-item-icon i,
.ca-mobile-nav-list .nav-link.active i { opacity: 1; }

.ca-mobile-drawer-footer {
    padding: 14px 18px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.ca-mobile-profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: var(--r-md);
    transition: background 0.18s ease, color 0.18s ease;
}
.ca-mobile-profile-link:hover { background: var(--surface-2); color: var(--text); }
.ca-mobile-profile-link .ca-avatar { width: 32px; height: 32px; border-radius: 10px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .series-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
    .ca-page { grid-template-columns: minmax(0, 1fr) 240px; }
    .series-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .hero-featured { height: 370px; }
}
@media (max-width: 900px) {
    .ca-page { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
    .right-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }
    .right-sidebar > * { min-width: 0; }
    .hero-featured { height: 300px; }
    .series-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    /* Navbar: nav gizle, hamburger göster */
    .ca-brand-sub { display: none; }
    .ca-nav { display: none !important; }
    .ca-nav-sep { display: none; }
    .ca-search { width: 160px; }
    .ca-search:focus-within { width: 200px; }
    .search-kbd { display: none; }
    .ca-profile-name { display: none; }
    .ca-user-menu-chevron { display: none; }
    .ca-login-btn span { display: none; }
    .ca-login-btn { padding: 0 12px; }
    .ca-hamburger { display: inline-flex !important; }
    /* Navbar inner küçük padding */
    .ca-navbar-inner { padding: 0 16px; }
}
@media (max-width: 640px) {
    .ca-page { padding: 12px; }
    .ca-navbar-inner { padding: 0 12px; }
    /* Hero */
    .hero-featured { grid-template-columns: 1fr; height: auto; min-height: 0; }
    .hero-side { display: none; }
    .hero-card--main { min-height: 220px; height: auto; aspect-ratio: 16/9; }
    .hero-main-title { font-size: 1.3rem; }
    .recent-ticker { display: none; }
    /* Grid */
    .series-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .library-panel { padding: 13px; }
    .right-sidebar { grid-template-columns: 1fr; }
    /* Seri başlık */
    .series-header-panel { flex-direction: column; }
    .series-cover-lg { width: 100px; }
    /* Reader */
    .reader-header { flex-direction: column; gap: 14px; }
    .reader-cover-wrap { width: 90px; }
    .reader-chapter-nav { flex-direction: column; gap: 8px; }
    .reader-nav-current { justify-content: center; }
    .reader-nav-btn--next { justify-content: flex-start; }
    .reader-nav-label strong { max-width: 160px; }
    .ca-form-row { grid-template-columns: 1fr; }
    .reader-comments-wrap { padding: 14px; }
    /* Search mobilde tam genişlik */
    .ca-search { width: 130px; }
    .ca-search:focus-within { width: 170px; }
}
@media (max-width: 440px) {
    .series-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ca-search { display: none; }
}


/* ══════════════════════════════════════════════════════════
   ÇEVİRMENLER SAYFASI
   ══════════════════════════════════════════════════════════ */

/* ── Sayfa sarmalayıcı ─────────────────────────────────── */
.team-page-wrap {
    flex: 1 1 0;
    min-width: 0;
    padding: 32px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Sayfa başlığı ─────────────────────────────────────── */
.team-page-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.team-page-header-icon {
    width: 52px; height: 52px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}

.team-page-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}

.team-page-desc {
    font-size: 0.88rem;
    color: var(--text-2);
    margin: 0;
}

/* ── İstatistik bant ───────────────────────────────────── */
.team-stats-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.team-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.82rem;
    color: var(--text-2);
}

.team-stat-pill i  { color: var(--accent); font-size: 0.78rem; }
.team-stat-pill span { font-weight: 700; color: var(--text); }

/* ── Kart ızgara ───────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* ── Tek kart ──────────────────────────────────────────── */
.team-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    border-color: rgba(249,115,22,0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(249,115,22,0.12);
}

/* Üst aksan çizgisi */
.team-card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
    flex-shrink: 0;
}

/* Hover arka plan glow */
.team-card-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: radial-gradient(ellipse 80% 100% at 50% -10%, rgba(249,115,22,0.09) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.team-card:hover .team-card-glow { opacity: 1; }

/* ── Hero (merkezli avatar + isim) ─────────────────────── */
.team-card-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 20px;
    gap: 10px;
}

/* Avatar wrap */
.team-card-avatar-wrap {
    position: relative;
    display: inline-block;
}

.team-card-avatar-img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    border: 3px solid var(--surface-3);
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.30);
    transition: border-color 0.2s ease;
}
.team-card:hover .team-card-avatar-img {
    border-color: rgba(249,115,22,0.50);
}

.team-card-avatar-fallback {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid rgba(249,115,22,0.30);
    letter-spacing: -0.02em;
    box-shadow: 0 4px 16px rgba(249,115,22,0.25);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover .team-card-avatar-fallback {
    border-color: rgba(249,115,22,0.55);
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}

/* Rozet */
.team-card-badge {
    position: absolute;
    bottom: 0; right: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 0.58rem;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--surface);
    box-shadow: 0 2px 6px rgba(249,115,22,0.40);
}

.team-card-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.3;
}

.team-card-role {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.73rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.team-card-role--dev {
    color: #58a6ff;
}

/* ── İstatistikler ─────────────────────────────────────── */
.team-card-stats {
    display: flex;
    align-items: stretch;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 0 0 16px;
}

.team-card-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 8px;
}

.team-card-stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.team-card-stat span {
    font-size: 0.67rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.team-card-stat-divider {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
    align-self: stretch;
}

/* ── Bio ───────────────────────────────────────────────── */
.team-card-bio {
    font-size: 0.82rem;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0 0 16px;
    padding: 0 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card-bio a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(249,115,22,0.35);
    text-underline-offset: 2px;
    transition: color var(--t), text-decoration-color var(--t);
}

.team-card-bio a:hover {
    color: var(--accent-light);
    text-decoration-color: var(--accent-light);
}

.team-card-bio--empty {
    color: var(--text-3);
    font-style: italic;
}

/* ── Aksiyonlar ────────────────────────────────────────── */
.team-card-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px;
}

.team-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--r-md);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.team-card-btn--primary {
    background: var(--accent);
    color: #fff;
    border: 1px solid transparent;
    flex: 1;
    box-shadow: 0 2px 8px rgba(249,115,22,0.25);
}

.team-card-btn--primary:hover {
    background: var(--accent-light);
    color: #fff;
    box-shadow: 0 4px 14px rgba(249,115,22,0.40);
}

.team-card-btn--ghost {
    background: transparent;
    color: var(--text-2);
    border: 1px solid var(--border-2);
    padding: 8px 12px;
    flex-shrink: 0;
}

.team-card-btn--ghost:hover {
    background: var(--surface-3);
    color: var(--text);
    border-color: var(--border-2);
}

/* ── Boş durum ─────────────────────────────────────────── */
.team-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 56px 0;
    color: var(--text-3);
    font-size: 0.9rem;
}

.team-empty i { font-size: 2.5rem; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .team-page-wrap  { padding: 20px 0 32px; gap: 20px; }
    .team-grid       { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .team-page-title { font-size: 1.35rem; }
    .team-page-header { gap: 12px; }
    .team-page-header-icon { width: 42px; height: 42px; font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card-hero  { padding: 22px 16px 16px; }
    .team-card-actions { padding: 0 16px; }
    .team-card-bio   { padding: 0 16px; }
}

/* ══════════════════════════════════════════════════════════
   SERİLERİMİZ SAYFASI
   ══════════════════════════════════════════════════════════ */

.series-page-wrap {
    flex: 1 1 0;
    min-width: 0;
    padding: 32px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.series-page-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.series-page-header-icon {
    width: 52px; height: 52px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}

.series-page-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}

.series-page-desc {
    font-size: 0.88rem;
    color: var(--text-2);
    margin: 0;
}

.series-page-stats-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.series-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.series-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.series-card:hover {
    border-color: rgba(249,115,22,0.40);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.40);
    color: inherit;
}

.series-card-cover {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--surface-3);
}

.series-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.series-card:hover .series-card-cover img {
    transform: scale(1.06);
}

.series-card-cover-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-3);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
}

.series-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.40) 50%,
        rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.series-card:hover .series-card-overlay {
    opacity: 1;
}

.series-card-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(249,115,22,0.45);
    transform: translateY(6px);
    transition: transform 0.25s ease;
}

.series-card:hover .series-card-read-btn {
    transform: translateY(0);
}

.series-badge {
    position: absolute;
    top: 8px; right: 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    border-radius: var(--r-md);
    padding: 4px 7px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    color: #fff;
    min-width: 36px;
    text-align: center;
}

.series-badge small {
    font-size: 0.58rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.series-badge--gold   { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 2px 8px rgba(245,158,11,0.40); }
.series-badge--silver { background: linear-gradient(135deg, #64748b, #475569); box-shadow: 0 2px 8px rgba(100,116,139,0.35); }
.series-badge--new    { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 2px 8px rgba(249,115,22,0.35); }

.series-card-info {
    padding: 10px 12px 12px;
}

.series-card-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.series-card-desc {
    font-size: 0.72rem;
    color: var(--text-3);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .series-page-wrap  { padding: 20px 0 32px; gap: 20px; }
    .series-page-grid  { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .series-page-title { font-size: 1.35rem; }
}

@media (max-width: 480px) {
    .series-page-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .series-card-info { padding: 8px 10px 10px; }
}

/* ══════════════════════════════════════════════════════════
   MOBİL UYGULAMA SAYFASI
   ══════════════════════════════════════════════════════════ */

/* ── Keyframes ─────────────────────────────────────────── */
@keyframes app-float {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50%       { transform: translateY(-14px) rotate(1deg); }
}

@keyframes app-pulse-ring {
    0%   { box-shadow: 0 4px 24px rgba(61,220,132,0.40), 0 0 0 0 rgba(61,220,132,0.35); }
    70%  { box-shadow: 0 8px 32px rgba(61,220,132,0.55), 0 0 0 14px rgba(61,220,132,0); }
    100% { box-shadow: 0 4px 24px rgba(61,220,132,0.40), 0 0 0 0 rgba(61,220,132,0); }
}

@keyframes app-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes app-badge-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(61,220,132,0.20); }
    50%       { box-shadow: 0 0 0 6px rgba(61,220,132,0.08); }
}

@keyframes app-orb-drift {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33%       { transform: scale(1.12) translate(20px, -15px); }
    66%       { transform: scale(0.92) translate(-10px, 12px); }
}

@keyframes app-grid-shimmer {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}

@keyframes app-sticky-slide {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ── Sayfa kapsayıcı ────────────────────────────────────── */
.app-page-wrap {
    flex: 1 1 0;
    min-width: 0;
    padding: 28px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Scroll-reveal base ─────────────────────────────────── */
.app-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.app-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── HERO ──────────────────────────────────────────────── */
.app-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 60px 48px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: 0 0 80px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Arka plan dekor */
.app-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.app-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.app-hero-orb--green {
    width: 380px; height: 380px;
    top: -100px; left: -80px;
    background: radial-gradient(circle, rgba(61,220,132,0.18) 0%, rgba(61,220,132,0.05) 70%);
    animation: app-orb-drift 9s ease-in-out infinite;
}

.app-hero-orb--orange {
    width: 300px; height: 300px;
    bottom: -80px; right: 160px;
    background: radial-gradient(circle, rgba(249,115,22,0.14) 0%, rgba(249,115,22,0.03) 70%);
    animation: app-orb-drift 12s ease-in-out infinite reverse;
}

.app-hero-orb--blue {
    width: 220px; height: 220px;
    top: 30%; right: -40px;
    background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, transparent 70%);
    animation: app-orb-drift 15s ease-in-out infinite 3s;
}

.app-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
    animation: app-grid-shimmer 6s ease-in-out infinite;
}

/* Sol içerik */
.app-hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
}

.app-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(61,220,132,0.08);
    border: 1px solid rgba(61,220,132,0.22);
    color: #3ddc84;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.76rem;
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0.02em;
    animation: app-badge-glow 3s ease-in-out infinite;
}

.app-hero-badge i { font-size: 0.8rem; }

.app-hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.05em;
    margin: 0;
    line-height: 1;
}

.app-hero-title-accent {
    background: linear-gradient(135deg, #3ddc84 0%, #00c853 35%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.app-hero-sub {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 440px;
    line-height: 1.75;
    margin: 0;
}

/* İstatistikler */
.app-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 16px 22px;
    width: fit-content;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.app-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 22px;
    gap: 3px;
    position: relative;
}

.app-hero-stat:first-child { padding-left: 0; }
.app-hero-stat:last-child  { padding-right: 0; }

.app-hero-stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    background: linear-gradient(180deg, #e6edf3 0%, #8b949e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-hero-stat span {
    font-size: 0.65rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.app-hero-stat-sep {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
    flex-shrink: 0;
}

/* İndirme butonu */
.app-hero-actions { display: flex; gap: 14px; align-items: center; }

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #3ddc84 0%, #00c853 60%, #00a843 100%);
    color: #0d1117;
    border-radius: 16px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    animation: app-pulse-ring 2.4s cubic-bezier(0.66, 0, 0, 1) infinite;
    transition: transform 0.2s ease, filter 0.2s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.app-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 60%);
    pointer-events: none;
}

.app-download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.08);
    color: #0d1117;
    animation-play-state: paused;
}

.app-download-btn i { font-size: 1.3rem; flex-shrink: 0; }

.app-download-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.app-download-btn small {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.72;
}

.app-download-btn strong { font-size: 0.95rem; font-weight: 800; }

.app-hero-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-3);
    margin: 0;
}

.app-hero-note i { color: #3ddc84; }

/* ── Telefon mockup ─────────────────────────────────────── */
.app-hero-right {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.app-mockup {
    position: relative;
}

.app-mockup-phone {
    position: relative;
    width: 200px;
    background: linear-gradient(160deg, #1c2128 0%, #0d1117 100%);
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.10);
    overflow: hidden;
    box-shadow:
        0 0 0 6px rgba(255,255,255,0.03),
        0 0 0 7px rgba(61,220,132,0.06),
        0 32px 80px rgba(0,0,0,0.70),
        inset 0 1px 0 rgba(255,255,255,0.12);
    animation: app-float 5s ease-in-out infinite;
}

.app-mockup-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 9px;
    background: #0d1117;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.app-mockup-screen { position: relative; }

.app-mockup-screen img {
    width: 100%;
    display: block;
}

.app-mockup-btn--side {
    position: absolute;
    right: -4px;
    top: 90px;
    width: 4px; height: 52px;
    background: rgba(255,255,255,0.12);
    border-radius: 0 4px 4px 0;
}

.app-mockup-btn--vol {
    position: absolute;
    left: -4px;
    top: 90px;
    width: 4px; height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px 0 0 4px;
}

/* Glow halo around phone */
.app-mockup-halo {
    position: absolute;
    inset: -20px;
    border-radius: 50px;
    background: radial-gradient(ellipse at 50% 80%, rgba(61,220,132,0.15) 0%, transparent 65%);
    pointer-events: none;
    animation: app-float 5s ease-in-out infinite;
}

.app-mockup-shadow {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px; height: 28px;
    background: rgba(61,220,132,0.22);
    filter: blur(20px);
    border-radius: 50%;
    animation: app-float 5s ease-in-out infinite;
}

/* ── Bölüm başlığı ─────────────────────────────────────── */
.app-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-section-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.app-section-header::before {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 48px; height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 1px;
}

.app-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0;
}

.app-section-title i {
    color: var(--accent);
    filter: drop-shadow(0 0 6px rgba(249,115,22,0.50));
}

.app-section-sub {
    font-size: 0.83rem;
    color: var(--text-3);
    margin: 0;
    padding-left: 30px;
}

/* ── Ekran görüntüleri ─────────────────────────────────── */
.app-screenshots {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-screenshot-frame {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    background: linear-gradient(160deg, #1c2128 0%, #0d1117 100%);
    border-radius: 28px;
    border: 2px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.08) inset,
        0 16px 40px rgba(0,0,0,0.55);
    transition: transform 0.30s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.30s ease,
                border-color 0.30s ease;
    cursor: pointer;
}

.app-screenshot-frame:nth-child(1) { transform: rotate(-2deg); }
.app-screenshot-frame:nth-child(2) { transform: rotate(1deg) translateY(-8px); }
.app-screenshot-frame:nth-child(3) { transform: rotate(-1deg) translateY(4px); }
.app-screenshot-frame:nth-child(4) { transform: rotate(2deg) translateY(-4px); }

.app-screenshot-frame:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.04) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.12) inset,
        0 32px 60px rgba(0,0,0,0.70),
        0 0 0 1px rgba(61,220,132,0.25);
    border-color: rgba(61,220,132,0.30);
    z-index: 10;
}

/* Sahte status bar */
.app-screenshot-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 9px 14px 5px;
    background: rgba(13,17,23,0.85);
    position: relative;
    z-index: 2;
}

.app-screenshot-bar span {
    display: inline-block;
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.22);
}

.app-screenshot-bar span:nth-child(1) { width: 18px; }
.app-screenshot-bar span:nth-child(2) { width: 10px; }
.app-screenshot-bar span:nth-child(3) { width: 6px; height: 6px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 6px rgba(61,220,132,0.8); }

.app-screenshot-frame img {
    width: 100%;
    display: block;
}

/* ── Özellik kartları ──────────────────────────────────── */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.app-feature-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 22px 18px;
    transition: border-color 0.25s ease,
                transform 0.25s cubic-bezier(0.22,1,0.36,1),
                background 0.25s ease,
                box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.app-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 0% 0%, color-mix(in srgb, var(--fcolor, var(--accent)) 8%, transparent), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-feature-card:hover {
    border-color: color-mix(in srgb, var(--fcolor, var(--accent)) 30%, transparent);
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35),
                0 0 0 1px color-mix(in srgb, var(--fcolor, var(--accent)) 15%, transparent);
}

.app-feature-card:hover::before { opacity: 1; }

.app-feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--fcolor, var(--accent)) 12%, transparent);
    color: var(--fcolor, var(--accent));
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--fcolor, var(--accent)) 20%, transparent);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.app-feature-card:hover .app-feature-icon {
    box-shadow: 0 6px 24px color-mix(in srgb, var(--fcolor, var(--accent)) 35%, transparent);
    transform: scale(1.08);
}

.app-feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 5px;
    font-family: "Space Grotesk", sans-serif;
}

.app-feature-desc {
    font-size: 0.78rem;
    color: var(--text-2);
    margin: 0;
    line-height: 1.6;
}

/* ── Geliştirici kartları ──────────────────────────────── */
.app-devs-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.app-dev-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 22px 24px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 240px;
    transition: border-color 0.25s ease,
                background 0.25s ease,
                transform 0.25s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.app-dev-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 0% 50%, rgba(61,220,132,0.07), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.app-dev-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61,220,132,0.40), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.app-dev-card:hover {
    border-color: rgba(61,220,132,0.28);
    background: linear-gradient(135deg, rgba(61,220,132,0.04) 0%, rgba(255,255,255,0.02) 100%);
    transform: translateY(-4px);
    color: inherit;
    box-shadow: 0 16px 48px rgba(0,0,0,0.40), 0 0 0 1px rgba(61,220,132,0.12);
}

.app-dev-card:hover::before,
.app-dev-card:hover::after { opacity: 1; }

.app-dev-avatar {
    position: relative;
    width: 58px; height: 58px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
    border: 2px solid rgba(255,255,255,0.10);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--text-2);
    font-size: 1.4rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.app-dev-card:hover .app-dev-avatar {
    border-color: rgba(61,220,132,0.40);
    box-shadow: 0 0 0 4px rgba(61,220,132,0.10);
}

.app-dev-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.app-dev-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.app-dev-name {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.app-dev-title {
    font-size: 0.75rem;
    color: var(--text-3);
    font-weight: 500;
}

.app-dev-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.app-dev-github-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.7rem;
    color: var(--text-3);
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.app-dev-card:hover .app-dev-github-tag {
    background: rgba(61,220,132,0.08);
    border-color: rgba(61,220,132,0.20);
    color: #3ddc84;
}

.app-dev-arrow {
    color: var(--text-3);
    font-size: 0.78rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.app-dev-card:hover .app-dev-arrow {
    color: #3ddc84;
    transform: translate(2px, -2px);
}

/* ── Mobil Sticky İndirme Butonu ────────────────────────── */
.app-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 14px 20px 18px;
    background: rgba(13,17,23,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 150;
    animation: app-sticky-slide 0.4s ease;
}

.app-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3ddc84 0%, #00a843 100%);
    color: #0d1117;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(61,220,132,0.35);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .app-hero {
        grid-template-columns: 1fr;
        padding: 44px 32px 40px;
    }
    .app-hero-right { display: none; }
    .app-features-grid { grid-template-columns: repeat(2, 1fr); }
    .app-hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .app-page-wrap    { gap: 36px; padding-bottom: 100px; }
    .app-hero         { padding: 36px 24px 32px; }
    .app-hero-stats   { flex-wrap: wrap; width: 100%; justify-content: flex-start; }
    .app-features-grid { grid-template-columns: 1fr; gap: 10px; }
    .app-screenshots  {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .app-screenshot-frame {
        width: 160px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    /* ilk yükleme rotasyonlarını mobilde sıfırla */
    .app-screenshot-frame:nth-child(1),
    .app-screenshot-frame:nth-child(2),
    .app-screenshot-frame:nth-child(3),
    .app-screenshot-frame:nth-child(4) { transform: none; }
    .app-sticky-cta { display: block; }
}

@media (max-width: 480px) {
    .app-hero         { padding: 28px 18px 24px; }
    .app-hero-title   { font-size: 2rem; }
    .app-devs-row     { flex-direction: column; }
    .app-screenshot-frame { width: 140px; border-radius: 22px; }
}


/* ══════════════════════════════════════════════════════════
   COMICEDİTÖR SAYFASI
   ══════════════════════════════════════════════════════════ */

/* ── Scroll reveal ─────────────────────────────────────── */
.ce-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ce-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Sayfa kapsayıcı ────────────────────────────────────── */
.ce-page-wrap {
    flex: 1 1 0;
    min-width: 0;
    padding: 28px 0 72px;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

/* ══ HERO ════════════════════════════════════════════════ */
.ce-hero {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 0 80px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Dekor arka plan */
.ce-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

@keyframes ce-orb-drift {
    0%, 100% { transform: scale(1) translate(0, 0); }
    33%       { transform: scale(1.10) translate(18px, -12px); }
    66%       { transform: scale(0.93) translate(-12px, 10px); }
}

.ce-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.ce-hero-orb--purple {
    width: 360px; height: 360px;
    top: -100px; left: -80px;
    background: radial-gradient(circle, rgba(167,139,250,0.18) 0%, rgba(167,139,250,0.04) 70%);
    animation: ce-orb-drift 10s ease-in-out infinite;
}

.ce-hero-orb--orange {
    width: 280px; height: 280px;
    bottom: -80px; right: 180px;
    background: radial-gradient(circle, rgba(249,115,22,0.13) 0%, rgba(249,115,22,0.03) 70%);
    animation: ce-orb-drift 13s ease-in-out infinite reverse;
}

.ce-hero-orb--blue {
    width: 220px; height: 220px;
    top: 20%; right: -40px;
    background: radial-gradient(circle, rgba(96,165,250,0.10) 0%, transparent 70%);
    animation: ce-orb-drift 16s ease-in-out infinite 2s;
}

.ce-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

/* Inner grid */
.ce-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 56px 48px 52px;
}

/* Sol */
.ce-hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@keyframes ce-badge-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(167,139,250,0.20); }
    50%       { box-shadow: 0 0 0 6px rgba(167,139,250,0.08); }
}

.ce-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(167,139,250,0.08);
    border: 1px solid rgba(167,139,250,0.22);
    color: #a78bfa;
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.76rem;
    font-weight: 600;
    width: fit-content;
    letter-spacing: 0.02em;
    animation: ce-badge-glow 3s ease-in-out infinite;
}

.ce-hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.05em;
    margin: 0;
    line-height: 1;
}

.ce-hero-title-accent {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 40%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ce-hero-tagline {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.ce-hero-desc {
    font-size: 0.96rem;
    color: var(--text-2);
    max-width: 440px;
    line-height: 1.75;
    margin: 0;
}

/* Platform çipleri */
.ce-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ce-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.75rem;
    color: var(--text-2);
    font-weight: 500;
}

.ce-platform i { color: var(--text-3); font-size: 0.85rem; }

.ce-platform-dot {
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #3ddc84;
    box-shadow: 0 0 5px rgba(61,220,132,0.80);
}

.ce-platform-status {
    color: #3ddc84;
    font-size: 0.7rem;
    font-weight: 600;
}

/* İndirme butonu */
@keyframes ce-pulse {
    0%   { box-shadow: 0 4px 20px rgba(167,139,250,0.40), 0 0 0 0 rgba(167,139,250,0.35); }
    70%  { box-shadow: 0 8px 32px rgba(167,139,250,0.55), 0 0 0 14px rgba(167,139,250,0); }
    100% { box-shadow: 0 4px 20px rgba(167,139,250,0.40), 0 0 0 0 rgba(167,139,250,0); }
}

.ce-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 60%, #c4b5fd 100%);
    color: #fff;
    border-radius: 16px;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    width: fit-content;
    position: relative;
    overflow: hidden;
    animation: ce-pulse 2.6s cubic-bezier(0.66,0,0,1) infinite;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.ce-download-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}

.ce-download-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.10);
    color: #fff;
    animation-play-state: paused;
}

.ce-download-btn > i:first-child { font-size: 1.25rem; }

.ce-download-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
    flex: 1;
}

.ce-download-btn small {
    font-size: 0.66rem;
    font-weight: 500;
    opacity: 0.76;
}

.ce-btn-arrow {
    font-size: 0.78rem;
    opacity: 0.70;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ce-download-btn:hover .ce-btn-arrow {
    transform: translate(3px, -3px);
    opacity: 1;
}

/* ── Sağ: ekran görüntüsü ──────────────────────────────── */
.ce-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes ce-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.ce-screenshot-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        0 0 0 1px rgba(167,139,250,0.10),
        0 32px 80px rgba(0,0,0,0.70),
        inset 0 1px 0 rgba(255,255,255,0.10);
    animation: ce-float 6s ease-in-out infinite;
    background: #0d0f14;
    width: 100%;
    max-width: 500px;
}

/* macOS sahte başlık çubuğu */
.ce-screenshot-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #1a1d25;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    user-select: none;
}

.ce-chrome-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.ce-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ce-dot--red    { background: #ff5f57; }
.ce-dot--yellow { background: #febc2e; }
.ce-dot--green  { background: #28c840; }

.ce-chrome-title {
    font-size: 0.78rem;
    color: var(--text-3);
    font-weight: 500;
    margin: 0 auto;
    padding-right: 60px; /* dengeleme */
    letter-spacing: 0.01em;
}

.ce-screenshot-body img {
    width: 100%;
    display: block;
}

/* Köşe glow'lar */
.ce-screenshot-glow {
    position: absolute;
    pointer-events: none;
}

.ce-screenshot-glow--tl {
    top: -1px; left: -1px;
    width: 150px; height: 150px;
    background: radial-gradient(circle at 0% 0%, rgba(167,139,250,0.20), transparent 70%);
}

.ce-screenshot-glow--br {
    bottom: -1px; right: -1px;
    width: 150px; height: 150px;
    background: radial-gradient(circle at 100% 100%, rgba(249,115,22,0.14), transparent 70%);
}

/* ══ ÖZELLİKLER ═════════════════════════════════════════ */
.ce-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ce-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.ce-section-header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 48px; height: 2px;
    background: linear-gradient(90deg, #a78bfa, transparent);
    border-radius: 1px;
}

.ce-section-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ce-section-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(167,139,250,0.15) 0%, rgba(167,139,250,0.05) 100%);
    border: 1px solid rgba(167,139,250,0.18);
    color: #a78bfa;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(167,139,250,0.20);
}

.ce-section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0 0 3px;
}

.ce-section-sub {
    font-size: 0.82rem;
    color: var(--text-3);
    margin: 0;
}

/* Özellik Grid */
.ce-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ce-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.008) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 22px 18px 20px;
    overflow: hidden;
    transition: border-color 0.25s ease,
                transform 0.25s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.25s ease;
}

.ce-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 0% 0%, color-mix(in srgb, var(--fcolor, #a78bfa) 8%, transparent), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ce-feature-card:hover {
    border-color: color-mix(in srgb, var(--fcolor, #a78bfa) 28%, transparent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35),
                0 0 0 1px color-mix(in srgb, var(--fcolor, #a78bfa) 14%, transparent);
}

.ce-feature-card:hover::before { opacity: 1; }

.ce-feature-num {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--fcolor, #a78bfa);
    opacity: 0.50;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.ce-feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--fcolor, #a78bfa) 12%, transparent);
    color: var(--fcolor, #a78bfa);
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--fcolor, #a78bfa) 20%, transparent);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ce-feature-card:hover .ce-feature-icon {
    transform: scale(1.10);
    box-shadow: 0 6px 24px color-mix(in srgb, var(--fcolor, #a78bfa) 35%, transparent);
}

.ce-feature-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.ce-feature-desc {
    font-size: 0.78rem;
    color: var(--text-2);
    margin: 0;
    line-height: 1.60;
}

/* ══ CTA BANNER ══════════════════════════════════════════ */
.ce-cta-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(167,139,250,0.18);
    background: linear-gradient(135deg,
        rgba(124,58,237,0.12) 0%,
        rgba(167,139,250,0.06) 40%,
        rgba(249,115,22,0.06) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.ce-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ce-cta-orb {
    position: absolute;
    width: 300px; height: 300px;
    top: -100px; left: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167,139,250,0.18), transparent 70%);
    filter: blur(60px);
}

.ce-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 40px;
    flex-wrap: wrap;
}

.ce-cta-icon {
    font-size: 2.8rem;
    color: #a78bfa;
    filter: drop-shadow(0 0 16px rgba(167,139,250,0.50));
    flex-shrink: 0;
}

.ce-cta-text {
    flex: 1;
    min-width: 200px;
}

.ce-cta-text h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.ce-cta-text p {
    font-size: 0.87rem;
    color: var(--text-2);
    margin: 0;
    line-height: 1.65;
}

.ce-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease, filter 0.2s ease;
    box-shadow: 0 4px 20px rgba(124,58,237,0.40);
}

.ce-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.10);
    color: #fff;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .ce-hero-inner {
        grid-template-columns: 1fr;
        padding: 44px 32px 40px;
    }
    .ce-hero-right { display: none; }
    .ce-hero-title { font-size: 2.6rem; }
    .ce-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ce-page-wrap  { gap: 36px; }
    .ce-hero-inner { padding: 36px 24px 32px; }
    .ce-hero-title { font-size: 2.1rem; }
    .ce-features-grid { grid-template-columns: 1fr; gap: 10px; }
    .ce-cta-inner  { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .ce-hero-title { font-size: 1.8rem; }
    .ce-hero-inner { padding: 28px 18px 24px; }
}


/* Arka plan dekor */
.app-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.app-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
}

.app-hero-orb--green {
    width: 320px; height: 320px;
    top: -80px; left: -60px;
    background: rgba(61,220,132,0.13);
}

.app-hero-orb--orange {
    width: 260px; height: 260px;
    bottom: -60px; right: 120px;
    background: rgba(249,115,22,0.10);
}

.app-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

/* Sol içerik */
.app-hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1;
}

.app-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(61,220,132,0.10);
    border: 1px solid rgba(61,220,132,0.25);
    color: #3ddc84;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    width: fit-content;
}

.app-hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1.05;
}

.app-hero-title-accent {
    color: var(--accent);
    display: block;
}

.app-hero-sub {
    font-size: 0.93rem;
    color: var(--text-2);
    max-width: 420px;
    line-height: 1.7;
    margin: 0;
}

/* İstatistikler */
.app-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 14px 20px;
    width: fit-content;
}

.app-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 2px;
}

.app-hero-stat:first-child { padding-left: 0; }
.app-hero-stat:last-child  { padding-right: 0; }

.app-hero-stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.app-hero-stat span {
    font-size: 0.68rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.app-hero-stat-sep {
    width: 1px;
    height: 32px;
    background: var(--border-2);
    flex-shrink: 0;
}

/* İndirme butonu */
.app-hero-actions { display: flex; gap: 12px; align-items: center; }

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #3ddc84 0%, #00c853 100%);
    color: #0d1117;
    border-radius: var(--r-lg);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(61,220,132,0.38), 0 0 0 0 rgba(61,220,132,0.3);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    width: fit-content;
}

.app-download-btn:hover {
    box-shadow: 0 8px 32px rgba(61,220,132,0.55);
    transform: translateY(-2px);
    color: #0d1117;
}

.app-download-btn i { font-size: 1.2rem; flex-shrink: 0; }

.app-download-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}

.app-download-btn small {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.68;
}

.app-download-btn strong { font-size: 0.92rem; }

.app-hero-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-3);
    margin: 0;
}

.app-hero-note i { color: #3ddc84; }

/* ── Telefon mockup ─────────────────────────────────────── */
.app-hero-right {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-mockup {
    position: relative;
}

.app-mockup-phone {
    position: relative;
    width: 180px;
    background: var(--surface-3);
    border-radius: 32px;
    border: 2px solid rgba(255,255,255,0.12);
    overflow: hidden;
    box-shadow:
        0 0 0 6px rgba(255,255,255,0.04),
        0 24px 64px rgba(0,0,0,0.60),
        inset 0 1px 0 rgba(255,255,255,0.10);
}

.app-mockup-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px; height: 8px;
    background: var(--surface);
    border-radius: 999px;
    z-index: 3;
}

.app-mockup-screen img {
    width: 100%;
    display: block;
}

.app-mockup-btn--side {
    position: absolute;
    right: -4px;
    top: 80px;
    width: 4px; height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 0 3px 3px 0;
}

.app-mockup-btn--vol {
    position: absolute;
    left: -4px;
    top: 80px;
    width: 4px; height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px 0 0 3px;
}

.app-mockup-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 20px;
    background: rgba(61,220,132,0.18);
    filter: blur(16px);
    border-radius: 50%;
}

/* ── Bölüm başlığı ─────────────────────────────────────── */
.app-section {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.app-section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.app-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0;
}

.app-section-title i { color: var(--accent); }

.app-section-sub {
    font-size: 0.82rem;
    color: var(--text-3);
    margin: 0;
    padding-left: 28px;
}

/* ── Ekran görüntüleri ─────────────────────────────────── */
.app-screenshots {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-screenshot-frame {
    position: relative;
    flex-shrink: 0;
    width: 190px;
    background: var(--surface-3);
    border-radius: 24px;
    border: 2px solid var(--border-2);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-screenshot-frame:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 24px 48px rgba(0,0,0,0.60);
}

.app-screenshot-frame:nth-child(even):hover {
    transform: translateY(-6px) rotate(1deg);
}

/* Sahte status bar */
.app-screenshot-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 8px 12px 4px;
    background: var(--surface-3);
    position: relative;
    z-index: 2;
}

.app-screenshot-bar span {
    display: inline-block;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.20);
}

.app-screenshot-bar span:nth-child(1) { width: 16px; }
.app-screenshot-bar span:nth-child(2) { width: 10px; }
.app-screenshot-bar span:nth-child(3) { width: 6px; height: 6px; border-radius: 50%; background: #3ddc84; }

.app-screenshot-frame img {
    width: 100%;
    display: block;
}

/* ── Özellik kartları ──────────────────────────────────── */
.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.app-feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 16px;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.app-feature-card:hover {
    border-color: rgba(255,255,255,0.12);
    background: var(--surface-2);
    transform: translateY(-2px);
}

.app-feature-icon {
    width: 40px; height: 40px;
    border-radius: var(--r-md);
    background: color-mix(in srgb, var(--fcolor, var(--accent)) 15%, transparent);
    color: var(--fcolor, var(--accent));
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.app-feature-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 5px;
}

.app-feature-desc {
    font-size: 0.78rem;
    color: var(--text-2);
    margin: 0;
    line-height: 1.55;
}

/* ── Geliştirici kartları ──────────────────────────────── */
.app-devs-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-dev-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 20px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 220px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.app-dev-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 0% 50%, rgba(61,220,132,0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-dev-card:hover {
    border-color: rgba(61,220,132,0.30);
    background: var(--surface-2);
    transform: translateY(-3px);
    color: inherit;
}

.app-dev-card:hover::before { opacity: 1; }

.app-dev-avatar {
    position: relative;
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--surface-3);
    border: 2px solid var(--border-2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--text-2);
    font-size: 1.3rem;
    transition: border-color 0.2s ease;
}

.app-dev-card:hover .app-dev-avatar {
    border-color: rgba(61,220,132,0.40);
}

.app-dev-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.app-dev-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.app-dev-name {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.app-dev-title {
    font-size: 0.75rem;
    color: var(--text-3);
}

.app-dev-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.app-dev-github-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.7rem;
    color: var(--text-3);
    font-weight: 500;
}

.app-dev-arrow {
    color: var(--text-3);
    font-size: 0.75rem;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .app-hero { grid-template-columns: 1fr; padding: 36px 28px 32px; }
    .app-hero-right { display: none; }
    .app-features-grid { grid-template-columns: repeat(2, 1fr); }
    .app-hero-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .app-page-wrap    { gap: 32px; }
    .app-hero-stats   { flex-wrap: wrap; width: 100%; justify-content: flex-start; }
    .app-features-grid { grid-template-columns: 1fr; gap: 10px; }
    .app-screenshots  { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; }
    .app-screenshot-frame { width: 150px; }
}

@media (max-width: 480px) {
    .app-hero         { padding: 28px 20px 24px; }
    .app-hero-title   { font-size: 1.8rem; }
    .app-devs-row     { flex-direction: column; }
    .app-screenshot-frame { width: 130px; border-radius: 18px; }
}

/* ══════════════════════════════════════════════════════════
   POLİCY SAYFALARI — Kullanım Koşulları & Gizlilik
   ══════════════════════════════════════════════════════════ */

.policy-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 32px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Hero başlık ─────────────────────────────────────── */
.policy-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg,
        rgba(249,115,22,0.10) 0%,
        rgba(249,115,22,0.03) 100%);
    border: 1px solid rgba(249,115,22,0.18);
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25),
                inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), rgba(249,115,22,0.20));
    border-radius: 0 4px 4px 0;
}

.policy-hero-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(249,115,22,0.45),
                inset 0 1px 0 rgba(255,255,255,0.20);
}

/* Mor varyant (gizlilik) */
.policy-hero-icon--purple {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    box-shadow: 0 4px 18px rgba(139,92,246,0.45),
                inset 0 1px 0 rgba(255,255,255,0.20);
}

.policy-hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.policy-hero-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-3);
    margin: 0;
}

.policy-hero-meta i { color: var(--accent); }

/* ── Intro banner ────────────────────────────────────── */
.policy-intro {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
}

.policy-intro-icon {
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-intro-icon--purple { color: #a78bfa; }

.policy-intro p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ── Bölümler ────────────────────────────────────────── */
.policy-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.025) 0%,
        rgba(255,255,255,0.008) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.22),
                inset 0 1px 0 rgba(255,255,255,0.05);
}

.policy-section {
    display: flex;
    gap: 0;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.18s ease;
}

.policy-section:last-child { border-bottom: none; }
.policy-section:hover { background: rgba(255,255,255,0.025); }

.policy-section-num {
    font-family: "Space Grotesk", monospace;
    font-size: 0.70rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.60;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    padding-top: 3px;
    width: 36px;
}

.policy-section-num--purple { color: #a78bfa; }

.policy-section-content { flex: 1; min-width: 0; }

.policy-section-content h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: -0.01em;
}

.policy-section-content h2 i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 26px; height: 26px;
    background: rgba(249,115,22,0.10);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.policy-section-content p {
    margin: 0 0 8px;
    font-size: 0.86rem;
    color: var(--text-2);
    line-height: 1.75;
}

.policy-section-content p:last-child { margin-bottom: 0; }

/* Liste */
.policy-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-2);
    line-height: 1.6;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.policy-list li::before {
    content: '';
    display: inline-block;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 8px;
    opacity: 0.70;
}

.policy-list li:hover {
    background: rgba(255,255,255,0.03);
}

/* Highlight listesi (kullanıcı hakları) */
.policy-list--highlights li {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 8px 12px;
}

.policy-list--highlights li::before { display: none; }

.policy-list--highlights li i {
    color: var(--accent);
    font-size: 0.80rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-list--highlights li strong { color: var(--text); }

/* ── Footer CTA ──────────────────────────────────────── */
.policy-footer-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg,
        rgba(249,115,22,0.10) 0%,
        rgba(249,115,22,0.04) 100%);
    border: 1px solid rgba(249,115,22,0.18);
    border-radius: 14px;
    font-size: 0.86rem;
    color: var(--text-2);
}

.policy-footer-cta > i {
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.policy-footer-cta a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.policy-footer-cta a:hover { opacity: 0.80; }

/* Mor varyant */
.policy-footer-cta--purple {
    background: linear-gradient(135deg,
        rgba(139,92,246,0.10) 0%,
        rgba(139,92,246,0.04) 100%);
    border-color: rgba(139,92,246,0.18);
}

.policy-footer-cta--purple > i,
.policy-footer-cta--purple a { color: #a78bfa; }

/* Responsive */
@media (max-width: 640px) {
    .policy-wrap        { padding: 20px 0 40px; gap: 16px; }
    .policy-hero        { padding: 20px 20px; gap: 14px; }
    .policy-hero-icon   { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 12px; }
    .policy-hero-title  { font-size: 1.3rem; }
    .policy-section     { padding: 16px 18px; }
    .policy-section-num { width: 28px; font-size: 0.64rem; }
}
