
    html, body {
        background-color: #151a26;
        -webkit-font-smoothing: antialiased;
        max-width: 100%;
        overflow-x: clip;
    }

    /* Scrollbar Özelleştirmesi */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #151a26;
    }

    ::-webkit-scrollbar-thumb {
        background: #242c3d;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #374151;
    }

    /* Kategori listesi gibi özel alanların iç scrollbarı */
    .custom-scrollbar {
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.08) transparent;
    }
    .custom-scrollbar::-webkit-scrollbar {
        width: 5px;
    }

    .custom-scrollbar::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.01);
    }

    .custom-scrollbar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Mobil Bottom Sheet Açılış Efekti */
    .bottom-sheet-active {
        transform: translateY(0);
    }

    /* Premium Custom Checkbox */
    .custom-checkbox {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        user-select: none;
        position: relative;
    }

    .custom-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        pointer-events: none;
    }

    .custom-checkbox .checkmark-box {
        width: 18px;
        height: 18px;
        border-radius: 5px;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        background-color: rgba(255, 255, 255, 0.03);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
    }

    .custom-checkbox:hover .checkmark-box {
        border-color: rgba(255, 122, 26, 0.5);
        background-color: rgba(255, 255, 255, 0.07);
        box-shadow: 0 0 8px rgba(255, 122, 26, 0.2);
    }

    .custom-checkbox input[type="checkbox"]:checked + .checkmark-box {
        background-color: #FF7A1A;
        border-color: #FF7A1A;
        box-shadow: 0 0 10px rgba(255, 122, 26, 0.35);
    }

    .custom-checkbox .checkmark-icon {
        width: 10px;
        height: 10px;
        color: #fff;
        fill: none;
        stroke: currentColor;
        stroke-width: 3.5px;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0;
        transform: scale(0.6);
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .custom-checkbox input[type="checkbox"]:checked + .checkmark-box .checkmark-icon {
        opacity: 1;
        transform: scale(1);
    }

    .custom-checkbox .checkbox-label {
        font-size: 14px;
        color: #9ca3af; /* text-gray-400 */
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .custom-checkbox:hover .checkbox-label {
        color: #fff;
    }

    .custom-checkbox input[type="checkbox"]:checked ~ .checkbox-label {
        color: #f3f4f6; /* text-gray-100 */
    }

    /* Premium Filter Chip (Sticky Top Bar) */
    .filter-chip-input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .filter-chip-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background-color: rgba(255, 255, 255, 0.03);
        color: #d1d5db; /* text-gray-300 */
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        user-select: none;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .filter-chip-label:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 122, 26, 0.35);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .filter-chip-label:active {
        transform: translateY(0) scale(0.96);
    }

    /* Check Indicator Inside Chip */
    .filter-chip-label .chip-indicator {
        width: 14px;
        height: 14px;
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .filter-chip-label:hover .chip-indicator {
        border-color: rgba(255, 122, 26, 0.6);
    }

    .filter-chip-input:checked + .filter-chip-label {
        background-color: rgba(255, 122, 26, 0.12);
        border-color: rgba(255, 122, 26, 0.4);
        color: #FF7A1A;
        box-shadow: 0 2px 8px rgba(255, 122, 26, 0.08);
    }

    .filter-chip-input:checked + .filter-chip-label .chip-indicator {
        background-color: #FF7A1A;
        border-color: #FF7A1A;
    }

    .filter-chip-label .chip-indicator-icon {
        width: 8px;
        height: 8px;
        color: #fff;
        fill: none;
        stroke: currentColor;
        stroke-width: 4px;
        stroke-linecap: round;
        stroke-linejoin: round;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .filter-chip-input:checked + .filter-chip-label .chip-indicator-icon {
        opacity: 1;
        transform: scale(1);
    }

    .op2-sticky-toolbar {
        top: var(--op2-sticky-offset, 12px);
        transition: top 0.25s ease;
    }

    @media (min-width: 768px) {
        .op2-sticky-toolbar {
            top: var(--op2-sticky-offset, 60px);
        }
    }

    /* 1440px ve üzeri ekranlarda sayfanın ve bannerın tam 1440px genişlikte olmasını sağlama */
    @media (min-width: 1440px) {
        .max-w-site {
            max-width: 1440px !important;
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
    }

    .BoostedPost {
        position: absolute;
        width: 80%;
        left: 10%;
        bottom: 10px;
        line-height: 21px;
        text-align: center;
        backdrop-filter: blur(3px);
        color: rgb(255 255 255);
        text-shadow: 1px 1px 0px black;
        background: linear-gradient(45deg, rgb(153 156 255 / 55%), rgb(94 28 98 / 54%));
        font-size: 13px;
        border-top: none;
        letter-spacing: 1px;
        z-index: 2;
        border-radius: 10px;
    }

    .BoostedBox:hover {
        border: 1px solid rgb(95 91 148 / 69%);
    }

    @media (max-width: 767.98px) {
        .postList {
            padding-left: 10px;
            padding-right: 10px;
        }
    }

    .op2-skeleton-wrap {
        min-width: 0;
    }

    .op2-skeleton-wrap .PostBox {
        pointer-events: none;
    }

    /* Infinite Scroll: Skeleton Shimmer Animasyonu */
    @keyframes shimmer {
        0%   { background-position: -600px 0; }
        100% { background-position:  600px 0; }
    }
    .skeleton-box {
        background: linear-gradient(
            90deg,
            rgba(255,255,255,0.04) 0%,
            rgba(255,255,255,0.10) 50%,
            rgba(255,255,255,0.04) 100%
        );
        background-size: 600px 100%;
        animation: shimmer 1.4s ease-in-out infinite;
        border-radius: 6px;
    }
    .skeleton-img {
        width: 100%;
        height: 115px;
        border-radius: 5px 5px 0 0;
    }
    @media (min-width: 576px)  { .skeleton-img { height: 125px; } }
    @media (min-width: 768px)  { .skeleton-img { height: 135px; } }
    @media (min-width: 992px)  { .skeleton-img { height: 140px; } }
    @media (min-width: 1200px) { .skeleton-img { height: 165px; } }

    /* Filtre Sidebar: Varsayılan (sayfa başında) ------- */
    #filter-sidebar {
        /* Doğal yükseklik, kısıtlama yok */
    }
    /* Kategori listesi: varsayılan açık */
    .sidebar-cat-list {
        max-height: 420px;
    }

    /* Ekran yüksekliği küçük olan cihazlar/pencereler için kompakt scroll ayarları */
    @media (max-height: 1024px) {
        .sidebar-cat-list {
            transition: max-height 0.3s ease-in-out;
        }

        #filter-sidebar.sidebar-compact {
            height: calc(100vh - 48px);
            overflow: hidden;
        }
        #filter-sidebar.sidebar-compact .sidebar-cat-box {
            flex: 1;
            min-height: 120px;
            max-height: 480px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        #filter-sidebar.sidebar-compact .sidebar-cat-list {
            flex: 1;
            min-height: 42px;
            max-height: 380px;
        }
    }

    /* Scroll Çubuğu */
    .filter-sidebar-scroll {
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.08) transparent;
        padding-right: 2px;
    }
    .filter-sidebar-scroll::-webkit-scrollbar {
        width: 4px;
    }
    .filter-sidebar-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    .filter-sidebar-scroll::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.08);
        border-radius: 99px;
    }
    .filter-sidebar-scroll::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.18);
    }

    /* Scrollbar Gizleme */
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Infinite Scroll: Kart Giriş Animasyonu */
    .card-enter {
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .card-enter-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Infinite Scroll: Sentinel */
    #infinite-scroll-sentinel {
        height: 4px;
        width: 100%;
        pointer-events: none;
    }

    /* Infinite Scroll: Son mesaj */
    #scroll-end {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 32px 0 20px;
        width: 100%;
    }
    #scroll-end.visible {
        display: flex;
    }

    /* FAQ Custom Accordion */
    details summary::-webkit-details-marker {
        display: none;
    }
    details[open] summary svg {
        transform: rotate(180deg);
        color: #FF7A1A;
    }
    details[open] {
        border-color: rgba(255, 122, 26, 0.2);
        box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
    }

    /* Mobile Floating Filter Button Stabilites */
    #mobile-filter-wrapper {
        position: fixed !important;
        top: auto !important;
        bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: max-content !important;
        z-index: 40 !important;
    }
