﻿body {
    color: var(--text);
    background: var(--bg);
}

/* ====== LAYOUT ============================================================= */
.neo2-wrap {
    max-width: 1160px;
    margin: 22px auto;
    padding: 0 12px
}

    .neo2-wrap.--tight .section {
        margin: 16px 14px
    }

.neo2-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px
}

.neo2-main {
    position: relative;
    border-radius: 26px;
    padding: 18px;
    background: radial-gradient(140% 120% at 15% 0%, rgba(255, 255, 255, .06), transparent 70%), linear-gradient(182deg, rgba(12, 18, 30, .96), rgba(6, 10, 18, .98));
    border: 1px solid rgba(255, 255, 255, .05);
    box-shadow: 0 28px 48px rgba(4, 9, 18, .55);
}

@media (max-width: 992px) {
    .neo2-grid {
        grid-template-columns: 1fr
    }

    .neo2-main {
        padding: 14px;
        border-radius: 22px;
    }
}

/* ====== POST / HEADER ====================================================== */
.post-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
    box-shadow: var(--shadow);
    overflow: hidden
}

.post-head {
    padding: 24px 24px 18px;
    background: radial-gradient(150% 120% at 0% 0%, rgba(255,255,255,.08), transparent 75%);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.title-line {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.vip-pill {
    background: linear-gradient(90deg,#ff7e96,#FF3B5C);
    color: #fff;
    border-radius: 999px;
    padding: .18rem .48rem;
    font-weight: 800;
    font-size: .85rem
}

.post-title {
    margin: 0;
    font-family: "Cinzel",ui-serif,Georgia,serif;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1.2rem,2vw,1.6rem);
    background: linear-gradient(90deg,#fff,#FFB6C2 40%,#FF3B5C 70%,#FF8AA0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0 12px;
}

.meta-row > * {
    flex: 0 0 auto;
}

.meta-row > button.meta {
    display: inline-flex;
}

.meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: .32rem .68rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(8, 12, 22, 0.82);
    color: #f2f6ff;
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.meta--interactive {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;

}

.meta--interactive:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 59, 92, 0.35);
}

.meta--interactive[disabled] {
    opacity: 0.65;
    cursor: wait;
}

.meta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #b9c7ff;
}

.meta__icon svg {
    display: block;

}

.meta__icon svg path {
    fill: currentColor;
}

.meta__label {
    display: block;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    opacity: .68;
}

.meta__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.1;
}

.meta__value {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .15px;
}

.meta--favorite {
    border-color: rgba(255, 59, 92, 0.4);
    background: linear-gradient(135deg, rgba(255, 59, 92, 0.18), rgba(255, 59, 92, 0.08));
    color: #ffe5ea;
    box-shadow: 0 12px 30px rgba(255, 59, 92, 0.18);
}

.meta--favorite .favorite-icon {
    background: rgba(255, 255, 255, 0.16);
    color: #ff7a96;
    transition: background 0.2s ease, color 0.2s ease;
}

.meta--favorite .favorite-count {
    min-width: 22px;
    text-align: center;

    font-variant-numeric: tabular-nums;
}

.meta--favorite.is-active {
    border-color: rgba(255, 59, 92, 0.68);
    background: linear-gradient(135deg, rgba(255, 59, 92, 0.26), rgba(255, 59, 92, 0.12));
    transform: translateY(-1px);
}

.meta--favorite.is-active .favorite-icon {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.meta--favorite:hover .favorite-icon {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;

}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: .2px;
}

.status-indicator__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.status-indicator__text {
    font-size: .84rem;
}

.status-indicator--online {
    color: #4ade80;
}

.status-indicator--offline,
.status-indicator--unknown,
.status-indicator--degraded,
.status-indicator--maintenance {
    color: rgba(255, 255, 255, 0.54);

}

/* ====== HERO =============================================================== */
.post-hero {
    margin: 0 auto 10px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 12px;
    background: #0F1420;
    width: 100%;
    max-width: 677px;
    min-height: 230px;
    max-height: 230px;
    background-image: var(--hero);
    background-size: cover;
    background-position: center
}

    .post-hero.no-bg {
        display: grid;
        place-items: center
    }

.hero-placeholder {
    color: var(--muted);
    font-weight: 700;
    opacity: .75
}

/* ====== SECTION / TITLES =================================================== */
.section {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0F1420;
    box-shadow: 0 8px 30px rgba(0,0,0,.2)
}

.section-title {
    margin: 0;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    letter-spacing: .15px;
    font-size: 1rem;
    background: #101827
}

/* ====== GENERAL FEATURES – MINIMAL TABLE ================================== */
.feat-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0F1420;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.feat-table {
    display: block
}

.feat-row {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px dashed rgba(255,255,255,.08);
    background: linear-gradient(180deg,#101824,#0f1624);
    transition: background .2s ease, transform .12s ease;
}

    .feat-row:last-child {
        border-bottom: none
    }

    .feat-row:hover {
        background: linear-gradient(180deg,#121b2b,#101a2a);
    }

.cell-icon {
    display: flex;
    align-items: center;
    justify-content: center
}

.feat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(60% 60% at 50% 40%,rgba(255,255,255,.10),transparent 70%), linear-gradient(180deg,#1a2335,#121a28);
    border: 1px solid #2a3446;
    box-shadow: 0 4px 10px rgba(0,0,0,.25), 0 0 0 3px rgba(255,59,92,.10);
}

    .feat-icon img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: contain
    }

    .feat-icon svg {
        width: 20px;
        height: 20px;
        fill: #ffd3dc
    }

.cell-name {
    font-weight: 700;
    color: #EAF1FF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.cell-badge {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.pill-accent {
    padding: .28rem .6rem;
    border-radius: 999px;
    font-size: .78rem;
    line-height: 1;
    color: #fff;
    font-weight: 800;
    letter-spacing: .2px;
    border: 1px solid rgba(255,255,255,.16);
    /* Server Ekle butonu paleti */
    background: linear-gradient(90deg,#ff7e96,#FF3B5C);
    box-shadow: 0 4px 12px rgba(255,59,92,.18), inset 0 1px 0 rgba(255,255,255,.15);
}

/* ====== PROSE / CONTENT ==================================================== */

.prose {
    padding: 12px;
    margin: 0 auto;
    max-width: 677px;
    width: 100%;
    border-top: 1px dashed rgba(255,255,255,.08);
    line-height: 1.8;
    color: #E8ECF5;
    overflow-x: auto;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.prose table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.prose pre {
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
}

.prose iframe,
.prose embed,
.prose video {
    max-width: 100%;
    display: block;
}

    .prose img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        border: 1px solid var(--line);
        margin: .5rem 0
    }

/* ====== GALLERY (bxSlider) ================================================= */
.media-card {
    position: relative;
    border-top: 1px dashed rgba(255,255,255,.08)
}

.media-card .bx-wrapper {
    width: 100% !important;
    max-width: 100%;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.media-card .bx-viewport {
    width: 100% !important;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #040712;
}

.media-card .bxslider {
    margin: 0;
    padding: 0;
}

.media-card .bxslider > div {
    display: flex;
    justify-content: center;
}

.media-card .bxslider img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #040712;
    object-fit: contain;
}

.media-card__fullscreen-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 12px;
    background: rgba(9, 14, 24, .78);
    backdrop-filter: blur(6px);
    color: #F7FAFF;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.media-card__fullscreen-btn svg {
    pointer-events: none;
}

.media-card__fullscreen-btn:hover,
.media-card__fullscreen-btn:focus-visible {
    background: rgba(255,255,255,.18);
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(5, 10, 18, .4);
    transform: translateY(-1px);
}

.media-card__fullscreen-btn:active {
    transform: translateY(0);
    background: rgba(255,255,255,.24);
}

body.media-lightbox-open {
    overflow: hidden;
}

body.media-lightbox-open .media-card .bx-controls-direction {
    display: none !important;
}

.media-card .bx-controls-direction.is-hidden-by-lightbox {
    display: none !important;
}

.media-lightbox[hidden] {
    display: none !important;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(5, 9, 18, .86);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .22s ease;
}

.media-lightbox.is-active {
    opacity: 1;
}

.media-lightbox__backdrop {
    position: absolute;
    inset: 0;
    cursor: zoom-out;
}

.media-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: min(960px, 92vw);
}

.media-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(13, 18, 30, .82);
    color: #F7FAFF;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.media-lightbox__close:hover,
.media-lightbox__close:focus-visible {
    background: rgba(255,255,255,.24);
    color: #fff;
    box-shadow: 0 8px 26px rgba(5,10,18,.42);
    transform: translateY(-1px);
}

.media-lightbox__close:active {
    transform: translateY(0);
}

.media-lightbox__nav {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(13, 18, 30, .78);
    color: #F7FAFF;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}

.media-lightbox__nav:hover,
.media-lightbox__nav:focus-visible {
    background: rgba(255,255,255,.22);
    color: #fff;
    transform: translateY(-1px);
}

.media-lightbox__nav:active {
    transform: translateY(0);
}

.media-lightbox__nav[disabled] {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

.media-lightbox__figure {
    margin: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.media-lightbox__image {
    max-width: min(900px, 90vw);
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.22);
    background: #040712;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
    object-fit: contain;
}

.media-lightbox__caption {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .95rem;
    color: #e6ecf9;
    text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

.media-lightbox__caption.is-empty {
    display: none;
}

.media-lightbox__counter {
    font-size: .85rem;
    opacity: .75;
}

@media (max-width: 900px) {
    .media-card__fullscreen-btn {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .media-lightbox {
        padding: 18px;
    }

    .media-lightbox__dialog {
        max-width: 100%;
    }

    .media-lightbox__nav {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}

@media (max-width: 720px) {
    .media-lightbox__dialog {
        justify-content: center;
        padding: 36px 0;
    }

    .media-lightbox__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(12, 18, 30, .74);
    }

    .media-lightbox__nav--prev {
        left: 6px;
    }

    .media-lightbox__nav--next {
        right: 6px;
    }

    .media-lightbox__figure {
        width: 100%;
    }

    .media-lightbox__image {
        width: 100%;
        max-height: 70vh;
    }

    .media-lightbox__close {
        top: 8px;
        right: 8px;
        width: 38px;
        height: 38px;
    }
}

.bx-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important
}

    .bx-wrapper .bx-viewport {
        border-radius: 12px !important;
        margin: 0 auto;
        max-width: 677px;
        width: 100%;
        max-height: 406px
    }

    .bx-wrapper .bx-pager.bx-default-pager a {
        background: #2a3140 !important;
        border: 1px solid #3b4454 !important
    }

        .bx-wrapper .bx-pager.bx-default-pager a.active,
        .bx-wrapper .bx-pager.bx-default-pager a:hover {
            background: var(--pri) !important;
            border-color: var(--pri) !important
        }

/* ====== VIDEO ============================================================== */

.neo-video {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0F1420;
    box-shadow: 0 12px 36px rgba(0,0,0,.22);
}

    .neo-video,
    .neo-video .video-cover,
    .neo-video .video-thumb,
    .neo-video iframe,
    .neo-video video {
        display: block;
        width: 100%;
        aspect-ratio: 16/9;
    }

        /* KAPAK: tam genişlik + 16:9, referans konteyner */
        .neo-video .video-cover {
            display: block;
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border: 0;
            padding: 0;
            background: transparent;
            line-height: 0; /* buton baseline kaydırmasını önler */
            border-radius: 12px;
            overflow: hidden;
        }

        /* Kapak görseli (thumbnail/blur) alanı doldursun */
        .neo-video .video-thumb {
            position: absolute;
            inset: 0;
            background-position: center;
            background-size: cover;
        }

        /* PLAY BUTONUNU gerçek merkeze sabitle */
        .neo-video .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 76px;
            height: 76px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            z-index: 2;
            background: radial-gradient(60% 60% at 50% 40%, rgba(255,255,255,.08), transparent 70%), linear-gradient(180deg,#1a2335,#121a28);
            border: 1px solid #2a3446;
            box-shadow: 0 6px 18px rgba(0,0,0,.35), 0 0 0 3px rgba(255,59,92,.10);
        }

            /* Üçgen ikon — tam ortada */
            .neo-video .play-btn i {
                display: block;
                width: 0;
                height: 0;
                border-top: 12px solid transparent;
                border-bottom: 12px solid transparent;
                border-left: 18px solid #fff;
                margin-left: 3px; /* optik merkez */
            }

            /* Ripple/Dalga efektini butonun içine al: hep ortada */
            .neo-video .play-btn::after {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 50%;
                box-shadow: 0 0 0 0 rgba(255,59,92,.35);
                animation: neoPulse 1.8s ease-out infinite;
            }

@keyframes neoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,59,92,.35);
    }

    100% {
        box-shadow: 0 0 0 22px rgba(255,59,92,0);
    }
}

/* (Varsa) eski .ripple elemanını etkisizleştir ki iki farklı merkez oluşmasın */
.neo-video .ripple {
    display: none !important;
}

/* Eski tarayıcılar için 16:9 yedeği */
@supports not (aspect-ratio: 16/9) {
    .neo-video .video-cover {
        height: 0;
        padding-top: 56.25%;
    }

    .neo-video .video-thumb,
    .neo-video iframe {
        position: absolute;
        inset: 0;
    }
}


        .neo-video .video-cover:hover .play-btn::before {
            background: color-mix(in oklab, var(--red,#FF3B5C) 28%, rgba(0,0,0,.45));
            border-color: rgba(255,255,255,.35);
        }

        /* Yüklendikten sonra gelen gerçek oynatıcı */
        .neo-video iframe,
        .neo-video video {
            border: 0;
            border-radius: 12px;
            background: #000;
        }



/* ====== SIDEBAR / ABOUT ==================================================== */
.about-card {
    position: sticky;
    top: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0F1420;
    box-shadow: var(--shadow);
    padding: 14px
}

.about-title {
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: .2px
}

.owner {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 6px 8px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background-color .15s ease, transform .15s ease;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1f2a3a;
    transition: border-color .2s ease, box-shadow .2s ease
}

.owner-avatar {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.owner-avatar__status {
    position: absolute;
    inset: auto -2px -2px auto;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid rgba(13, 17, 26, 0.85);
    background: #4b5563;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.35);
    z-index: 1;
    pointer-events: none;
    transition: background .2s ease, box-shadow .2s ease;
}

.owner-avatar__status--offline {
    background: #4b5563;
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.35);
}

.owner-avatar__status--online {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.avatar--online {
    border-color: rgba(34, 197, 94, .75);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

a.owner:hover,
a.owner:focus-visible {
    background-color: rgba(255, 255, 255, .06);
    text-decoration: none;
}

a.owner:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .18);
    outline-offset: 2px;
}

.owner-name {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.owner-name__label {
    display: inline-block;
}

.owner-badge {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.08);
    object-fit: contain;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
    cursor: help;
}

.owner-badge[hidden] {
    display: none;
}

.owner-sub {
    color: #9AA6B6;
    font-size: .9rem
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, .08);
}

.share-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #9AA6B6;
    text-transform: uppercase;
    font-size: .75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .38rem .7rem;
    border-radius: 999px;
    border: 1px solid #273248;
    background: linear-gradient(180deg, rgba(17, 24, 39, .95), rgba(10, 15, 24, .95));
    color: #E6ECF8;
    font-weight: 700;
    font-size: .85rem;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

    .share-btn i {
        font-size: 1rem;
    }

    .share-btn span {
        display: inline-flex;
        align-items: center;
    }

    .share-btn:hover,
    .share-btn:focus-visible {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
        border-color: rgba(255, 112, 141, .55);
    }

    .share-btn:focus-visible {
        outline: 2px solid rgba(255, 112, 141, .65);
        outline-offset: 2px;
    }

.share-btn--native {
    background: linear-gradient(180deg, rgba(255, 112, 141, .16), rgba(255, 59, 92, .14));
    border-color: rgba(255, 112, 141, .45);
    color: #FFDADF;
}

.share-btn--facebook {
    background: rgba(59, 89, 152, .16);
    border-color: rgba(59, 89, 152, .45);
    color: #C8D7FF;
}

.share-btn--x {
    background: rgba(100, 116, 139, .18);
    border-color: rgba(100, 116, 139, .4);
    color: #E2E8F0;
}

.share-btn--whatsapp {
    background: rgba(34, 197, 94, .18);
    border-color: rgba(34, 197, 94, .45);
    color: #D1FADF;
}

.share-btn--copy {
    background: rgba(148, 163, 184, .14);
    border-color: rgba(148, 163, 184, .45);
    color: #F1F5F9;
}

@media (max-width: 576px) {
    .share-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .share-label {
        justify-content: center;
        width: 100%;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-ghost, .btn-danger-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .45rem .65rem;
    border-radius: 10px;
    border: 1px solid #2c3546;
    background: #121a28;
    color: #e9f1fd;
    text-decoration: none;
    font-weight: 700
}

.btn-danger-light {
    background: #1a1115;
    border-color: #3a1c27;
    color: #ffd7dd
}

.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

    .about-list li {
        display: grid;
        grid-template-columns: 26px 1fr auto;
        gap: 8px;
        align-items: center;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 10px;
        background: #101725;
        padding: 8px 10px
    }

    .about-list .badge {
        font-weight: 800;
        color: #fff;
        background: #0f1624;
        border: 1px solid #2b3548;
        border-radius: 999px;
        padding: .2rem .48rem;
        font-size: .78rem
    }

/* ====== UTILITIES ========================================================== */
.empty-box {
    padding: 14px;
    border: 1px dashed rgba(255,255,255,.24);
    border-radius: 12px;
    color: #b8c3d7;
    background: #0F1420;
    text-align: center
}

.neo2-modal .modal-content {
    background: #0f1420;
    color: var(--text);
    border: 1px solid var(--line)
}

/* === Genel Özellikler: 2 sütunlu şerit görünümü (rozet yok) ============== */
.feat-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0F1420;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.feat-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    /* Şeritler birbirine yapışık dursun diye gap=0; ayırmak istersen 6–10px ver */
    gap: 0;
}

/* Hücre: eski “satır” hissi — ikon + isim */
.feat-cell {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: linear-gradient(180deg,#101824,#0f1624);
    transition: background .18s ease, transform .12s ease, border-color .18s ease;
    /* sütun ve satır ayırıcıları */
    border-right: 1px dashed rgba(255,255,255,.08);
    border-bottom: 1px dashed rgba(255,255,255,.08);
}

    /* Sağ sütunda dikey ayırıcıyı kaldır */
    .feat-cell:nth-child(2n) {
        border-right: none;
    }

    /* Son satırdaki öğelerde alt çizgiyi kaldır (2 sütun olduğu için -n+2) */
    .feat-cell:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    /* Hover */
    .feat-cell:hover {
        background: linear-gradient(180deg,#121b2b,#101a2a);
    }

    /* İkon (önceki stile uyumlu) */
    .feat-cell .feat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: radial-gradient(60% 60% at 50% 40%,rgba(255,255,255,.10),transparent 70%), linear-gradient(180deg,#1a2335,#121a28);
        border: 1px solid #2a3446;
        box-shadow: 0 4px 10px rgba(0,0,0,.25), 0 0 0 3px rgba(255,59,92,.10);
        overflow: hidden;
    }

        .feat-cell .feat-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            border-radius: 50%;
        }

        .feat-cell .feat-icon svg {
            width: 20px;
            height: 20px;
            fill: #ffd3dc;
        }

/* İsim */
.feat-name {
    font-weight: 800;
    color: #EAF1FF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Boş hücre için dekoratif ayraç (çizgi + yıldız çipi) */
.feat-cell--empty {
    grid-template-columns: 1fr; /* ikon/isim yok, tek kolon */
    border-right: none; /* sağ sütunda dikey çizgi yok */
    pointer-events: none; /* tıklanabilir olmasın */
}

    .feat-cell--empty:hover {
        /* hover efekti vermeyelim, sabit kalsın */
        background: linear-gradient(180deg,#101824,#0f1624);
    }

.empty-line {
    position: relative;
    height: 24px;
}

    .empty-line::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        transform: translateY(-50%);
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
    }

.empty-chip {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: radial-gradient(60% 60% at 50% 40%,rgba(255,255,255,.08),transparent 70%), linear-gradient(180deg,#1a2335,#121a28);
    border: 1px solid #2a3446;
    box-shadow: 0 0 0 3px rgba(255,59,92,.10);
    color: #ffd4de;
}

    .empty-chip svg {
        width: 14px;
        height: 14px;
    }

/* ===== VIP OL Button (dark theme uyumlu) ===== */
/*.btn-vip::after {
    content: none !important;
}

.btn-vip {
    --vip1: #ff7e96;
    --vip2: #FF3B5C;
    position: relative;
    z-index: 0;
    isolation: isolate;*/ /* pseudo'yu butonun katmanına hapseder */
    /*display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(90deg,var(--vip1),var(--vip2));
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(255,59,92,.28), inset 0 1px 0 rgba(255,255,255,.22);
    transition: transform .12s ease, box-shadow .15s ease, filter .15s ease, background .15s ease;
}*/

    /* Merkezde yumuşak nefes alma/yanıp sönme efekti */
    /*.btn-vip::before {
        content: "";
        position: absolute;
        inset: -8px;*/ /* butonun çevresinde küçük bir halo */
        /*border-radius: 9999px;
        z-index: -1;
        background: radial-gradient(60% 60% at 50% 50%, rgba(255,59,92,.42), transparent 70%);
        filter: blur(10px);
        opacity: 0;
        transform: scale(.95);
        animation: vipPulse 2.4s ease-in-out infinite;
        pointer-events: none;
    }

@keyframes vipPulse {
    0% {
        opacity: .00;
        transform: scale(.95);
    }

    35% {
        opacity: .55;
        transform: scale(1.04);
    }

    70% {
        opacity: .18;
        transform: scale(1.08);
    }

    100% {
        opacity: .00;
        transform: scale(.95);
    }
}

.btn-vip:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(255,59,92,.34), inset 0 1px 0 rgba(255,255,255,.24);
    filter: saturate(1.05);
}

.btn-vip:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(255,59,92,.26), inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-vip:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,.32), 0 10px 28px rgba(255,59,92,.28);
}*/

/* Taç ikon */
/*.btn-vip .vip-ico {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 6px rgba(255,255,255,.18));
}*/

/* ===== About actions – responsive hizalama ===== */
/*.about-actions {
    display: flex;*/ /* sizde zaten var; burada tekrar garanti ediyoruz */
    /*flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 520px) {
    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .about-actions > * {
            width: 100%;
            justify-content: center;*/ /* link ve buton metnini ortala */
        /*}
}*/

/* Mobil: 1 sütun, son öğenin alt çizgisini kaldır */
@media (max-width: 768px) {
    .feat-grid-2 {
        grid-template-columns: 1fr;
    }

    .feat-cell {
        border-right: none;
    }
        /* tek sütunda dikey ayırıcı yok */
        .feat-cell:last-child {
            border-bottom: none;
        }

    .feat-cell--empty {
        display: none;
    }
    /* en altta çizgi olmasın */
}