html {
    overflow-x: hidden !important;
}

body {
    background: radial-gradient(circle at -5% -5%, rgba(209, 0, 209, 0.45) 0%, rgba(0, 0, 0, 1) 40%) no-repeat center center fixed;
    background-color: #000;
    background-size: cover;
    color: #e0e0e0;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Mobil Global Arka Plan (Açık Siyah) */
@media (max-width: 991px) {
    body {
        background: #0f0f0f !important;
        background-color: #0f0f0f !important;
    }
}

/* ===== CACHE-FRIENDLY DEVICE VISIBILITY (SAFE) ===== */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

/* ===== NEW SIDEBAR LAYOUT (PREMIUM REFINE) ===== */
.site-layout-main-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    position: relative;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    top: 0;
    /* 1440px merkezli layout için sola hizalama */
    left: calc(50% - 720px);
    width: 260px;
    height: 100vh;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    z-index: 1060;
    overflow: hidden;
    padding: 24px 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

/* Ekran 1440px'den küçükse sidebar en sola dayansın */
@media (max-width: 1440px) {
    .sidebar {
        left: 0;
    }
}

.layout-content-col {
    flex-grow: 1;
    min-width: 0;
    margin-left: 260px;
    /* Sidebar fixed olduğu için yer açıyoruz */
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .layout-content-col {
        margin-left: 0;
    }
}

.top-nav {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 60px;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    z-index: 1050;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.top-nav .search-and-user-wrap {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
}

.searchbar {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-form-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-form-wrap:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    margin-right: 12px;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.search-top-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -2px;
}

.searchbar .searchInput {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    height: 24px !important;
    box-shadow: none !important;
}

.searchbar .searchInput::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

.search-clear-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-clear-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.search-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Suggestions Dropdown */
.suggestionsBox {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 9999 !important;
    display: none;
}

.suggestionsBox.active {
    display: block !important;
}

.suggestions-content {
    padding: 8px 0;
    /* Kaydırma olmaması için sınırlamaları kaldırıp akıllı padding veriyoruz */
    overflow: visible;
}

/* Scrollbar tasarımı (Chrome/Safari) */
.suggestions-content::-webkit-scrollbar {
    width: 6px;
}

.suggestions-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sugg-header {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px 4px;
}

.sugg-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    gap: 12px;
}

.sugg-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Model Item Style */
.sugg-model-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sugg-info {
    display: flex;
    flex-direction: column;
}

.sugg-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.sugg-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* Video Item Style */
.sugg-video-thumb {
    position: relative;
    width: 90px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #000;
}

.sugg-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sugg-duration {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
}

/* Category Item Style */
.sugg-cat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.sugg-cat-count {
    margin-left: auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.sidebar .sb-logo-wrap {
    margin-bottom: 5px;
    padding-left: 12px;
}

.sb-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 4px;
    width: 100%;
}

.sb-menu-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    opacity: 0.5;
}

.sb-menu-item:hover,
.sb-menu-item.active {
    background: rgba(209, 0, 209, 0.1);
    color: #fff;
}

.sb-menu-item:active {
    transform: scale(0.96);
}

.sb-menu-item:hover i,
.sb-menu-item.active i {
    color: var(--primary-color);
    opacity: 1;
}

.sb-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 5px;
    margin-left: auto;
    text-transform: uppercase;
}

.sb-badge-new {
    background: #FF0054;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 84, 0.3);
}

.sb-badge-free {
    background: #8A2BE2;
    color: #fff;
}

.sb-menu-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: auto;
    font-weight: 400;
}

.sb-section-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 28px 0 12px 16px;
}

.main-content-wrapper {
    margin-left: 0;
    margin-top: 80px;
    padding: 0px;
    min-height: calc(100vh - 100px);
    background: transparent !important;
}

.main-content-wrapper .container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .top-nav,
    .main-content-wrapper {
        left: 0;
        margin-left: 0;
    }

    .main-content-wrapper {
        margin-top: 10px;
    }

    .sidebar.active {
        transform: translateX(0);
    }
}

a {
    text-decoration: none !important;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style-type: none;
    color: #fff;
    padding-left: 0;
    margin-bottom: 0;
}

li:not(.dropdown-item):not(.dropdown-item *) {
    display: block;
    width: 100%;
    list-style: none;
}

li a {
    display: inline;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    z-index: 1020;
    position: relative;
    /* İçerikle akışta kalsın ama şeffaf olsun */
}



/* ===== MOBILE TOP NAVIGATION ===== */
.mobile-top-nav {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    margin-bottom: 15px;
}

.mobile-top-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
}

.mobile-top-nav .nav-item i {
    font-size: 18px;
    margin-bottom: 3px;
    transition: all 0.2s ease;
}

.mobile-top-nav .nav-item:hover,
.mobile-top-nav .nav-item.active {
    color: var(--primary-color);
}

.mobile-top-nav .nav-item.center-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(209, 0, 209, 0.3);
    flex: none !important;
    margin: 0 5px;
}

.mobile-top-nav .nav-item.center-item i {
    font-size: 18px;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .mobile-top-nav {
        display: none !important;
    }
}

.btn {
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    letter-spacing: 0.5px;
}

/* btn-primary theme.css de tanimli */
.special-btn {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(209, 0, 209, 0.2), rgba(138, 43, 226, 0.2));
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    border-radius: var(--border-radius);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.special-btn svg,
.special-btn i {
    font-size: 18px;
    display: block;
}

.special-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 0, 209, 0.4);
    border-color: transparent;
}

@media (max-width: 575px) {
    .special-btn {
        padding: 8px 12px;
        gap: 4px;
    }
}

.form-control {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    font-size: 14px;
    border-radius: 20px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(209, 0, 209, 0.25), 0 0 15px rgba(209, 0, 209, 0.1);
    border-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    outline: none;
}

.form-control::placeholder {
    color: #888;
    font-size: 14px;
}

.hvr-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px #fff0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}

.hvr-underline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    height: 4px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-reveal:hover:before,
.hvr-underline-reveal:focus:before,
.hvr-underline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Sidebar Menu Styles */
.sb-logo-wrap {
    margin-bottom: 32px;
    padding-left: 12px;
}

.sb-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 16px;
    color: #f8f9fa;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.sb-menu-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    opacity: 0.7;
}

.sb-menu-item:hover,
.sb-menu-item.active {
    background: rgba(209, 0, 209, 0.1);
    color: #fff;
}

.sb-menu-item:hover i,
.sb-menu-item.active i {
    color: var(--primary-color);
    opacity: 1;
}

.sb-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: auto;
    text-transform: uppercase;
}

.sb-badge-new {
    background: #f00c56;
    color: #fff;
    box-shadow: 0 0 10px rgba(240, 12, 86, 0.4);
}

.sb-badge-free {
    background: #ab00ab;
    color: #fff;
}

.sb-menu-count {
    font-size: 11px;
    color: #666;
    margin-left: 8px;
    font-weight: 400;
}

.sb-section-title {
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0 12px 16px;
}


.p-site-muted {
    font-size: 12px;
    color: #aaa;
}

/* ===== YENI VIDEO KARTI TASARIMI ===== */
.v-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    height: calc(100% - 24px);
}

.v-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6), 0 0 15px rgba(209, 0, 209, 0.15);
    border-color: rgba(209, 0, 209, 0.3);
    background: rgba(40, 40, 45, 0.5);
}

.vc-thumbnail-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    min-height: 100px;
    /* Mobil için yer rezervasyonu */
}

.vc-thumbnail-wrap .thumb-main,
.vc-thumbnail-wrap .thumb-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.vc-thumbnail-wrap .thumb-preview {
    opacity: 0;
}

/* Sadece hover desteği olan cihazlarda animasyon çalışsın */
@media (hover: hover) {
    .v-card:hover .thumb-main {
        transform: scale(1.06);
        opacity: 0;
    }

    .v-card:hover .thumb-preview {
        opacity: 1;
    }
}

.vc-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    pointer-events: none;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vc-premium-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #000;
    font-weight: 800;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 30px;
    z-index: 6;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    letter-spacing: 0.5px;
}

.vc-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 4;
}

.vc-play-overlay i {
    font-size: 40px;
    color: #fff;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transform: scale(0.7);
}

.v-card:hover .vc-play-overlay {
    opacity: 1;
    background: rgba(209, 0, 209, 0.15);
}

.v-card:hover .vc-play-overlay i {
    transform: scale(1);
    color: #d100d1;
    filter: drop-shadow(0 0 15px rgba(209, 0, 209, 0.8));
}

.vc-content {
    padding: 14px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vc-title {
    color: #f1f1f1 !important;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.v-card:hover .vc-title {
    color: #d100d1 !important;
}

.vc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    color: #8b8b93;
    font-size: 12px;
}

.vc-meta span {
    display: flex;
    align-items: center;
}

.vc-meta i {
    font-size: 12px;
    color: #666;
    transition: color 0.3s;
}

.v-card:hover .vc-meta i {
    color: #d100d1;
}

hr {
    margin: 0;
}

.navbar-toggler {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
    border-color: #fff;
    outline: none !important;
}

header .menu-mobile ul {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

header .menu-mobile ul li {
    width: 100%;
    text-align: center;
}

header .menu-mobile ul li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    line-height: 38px;
    width: 100%;
    border: 1px solid var(--glass-border);
    margin-bottom: 4px;
    border-radius: 8px;
    transition: all 0.3s;
}

header .menu-mobile ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

header .menu ul li.active a {
    background: linear-gradient(to bottom, rgba(209, 0, 209, 0.15), transparent);
    box-shadow: 0 -3px 0 0 var(--primary-color) inset;
    color: #fff;
}

.row {
    --bs-gutter-x: 0;
}

.site-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.02);
}

footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    color: #bbb;
    margin-top: 40px;
}

footer h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-menu a {
    color: #e0aaff;
    margin: 5px 8px;
    padding: 10px 12px;
    /* Dokunma alanını genişlet (Tap Target) */
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    /* Padding'in etkili olması için */
    transition: all 0.2s ease;
}

.footer-menu a:hover {
    text-decoration: underline !important;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.video-card {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s;
}

.video-card:hover {
    color: #fff;
    box-shadow: 0 0 15px #000;
}

.video-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgb(0 0 0 / 0.5);
}

.video-card:hover &::after {
    background: rgb(0 0 0 / 0.9);
}

.video-card .content {
    position: relative;
    z-index: 1;
}

.video-card .title {
    font-size: 1.5rem;
    font-weight: 700;
}

.video-card .subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* YORUMLAR (COMMENTS) YENİ MODERN TASARIM */
#commentsWrapper {
    width: 100%;
}

.comment-card {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comment-card:hover {
    background: rgba(209, 0, 209, 0.06);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(209, 0, 209, 0.15);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(209, 0, 209, 0.3);
}

.comment-content-wrapper {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    color: #f8f9fa;
    font-size: 15px;
    font-weight: 700;
}

.comment-date {
    font-size: 12px;
    color: #888;
}

.comment-body {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
}

/* Form Inputları için Neon Detaylar */
.comment-input {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
}

.comment-input:focus {
    background-color: rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 0 0 2px rgba(209, 0, 209, 0.3), 0 0 15px rgba(138, 43, 226, 0.2) !important;
    border-color: var(--primary-color) !important;
}

.comment-input::placeholder {
    color: #888 !important;
}

/* Yükle Butonu */
#showMoreBtn {
    background: rgba(255, 255, 255, 0.05);
    /* JS show events toggle check */
    display: none;
}

.comment-card {
    display: none;
}

/* ShowMore func starts initially hidden or visible via JS, currently we assume it handles it but lets correct script logic. Let's just block display via CSS momentarily. */
.comment-card:nth-child(-n+3) {
    display: flex;
}

/* Show initially 3 comments */

/* LIGHT MODE OVERRIDES FOR COMMENTS */
[data-theme="light"] .comment-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .comment-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(209, 0, 209, 0.1);
}

[data-theme="light"] .comment-author {
    color: #333;
}

[data-theme="light"] .comment-body {
    color: #555;
}

[data-theme="light"] #commentFormWrapper {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] #commentFormWrapper h6 {
    color: #333 !important;
}

[data-theme="light"] .comment-input {
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    color: #333 !important;
}

[data-theme="light"] .comment-input:focus {
    background-color: #fff !important;
}

[data-theme="light"] .comment-input::placeholder {
    color: #999 !important;
}

.onecol {
    width: 100%;
    font-size: 15px;
    padding: 4px 8px;
    font-weight: 500;
}

.hoverVideoCard {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.p-list-item:hover .hoverVideoCard {
    opacity: 1;
}

.hoverVideoCard svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s;
    transform: scale(0.5);
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.p-list-item:hover .hoverVideoCard svg {
    transform: scale(1.2);
    color: var(--primary-color);
    filter: drop-shadow(0 0 20px rgba(209, 0, 209, 0.8));
}

.pagination {
    background-color: transparent;
    margin-top: 30px;
    gap: 5px;
    justify-content: center;
}

.pagination .page-item .page-link {
    background-color: rgba(255, 255, 255, 0.05);
    color: #eee;
    border: 1px solid var(--glass-border);
    margin: 0 4px;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 40px;
    text-align: center;
    font-weight: 500;
}

.pagination .page-item .page-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(209, 0, 209, 0.4);
}

.pagination .page-item.disabled .page-link {
    background-color: rgba(255, 255, 255, 0.02);
    color: #555;
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
}

/* Kategori Etiketleri (Chips) */
.category-chips-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.category-chips-wrapper::-webkit-scrollbar {
    height: 6px;
}

.category-chips-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.category-chips-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.category-chip {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #e0e0e0 !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

/* AYDINLIK MOD EZİCİ KURALLAR (LIGHT MODE OVERRIDES) */
[data-theme="light"] .text-white {
    color: var(--text-main) !important;
}

[data-theme="light"] .bg-dark {
    background-color: #e9ecef !important;
}

[data-theme="light"] .text-light {
    color: var(--text-main) !important;
}

[data-theme="light"] .modal-content.bg-dark {
    background-color: var(--card-bg) !important;
    color: var(--text-main) !important;
}

[data-theme="light"] .p-list-item {
    background: var(--card-bg);
}

[data-theme="light"] .hero-item,
[data-theme="light"] .hero-slider {
    background: transparent !important;
}

[data-theme="light"] .onecol {
    color: var(--text-main) !important;
}

[data-theme="light"] .text-muted {
    color: #6c757d !important;
}

[data-theme="light"] .l-video-time .p-time-s,
[data-theme="light"] .l-video-play {
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
    border-color: rgba(0, 0, 0, 0.9) !important;
}

[data-theme="light"] .l-video-play .p-info-s {
    color: #fff !important;
}

[data-theme="light"] .neon-divider {
    background: linear-gradient(90deg, transparent, rgba(209, 0, 209, 0.4), rgba(138, 43, 226, 0.4), transparent);
    box-shadow: 0 0 10px rgba(209, 0, 209, 0.2);
}

[data-theme="light"] .search-suggs li:hover {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .search-suggs li a {
    color: #444 !important;
}

[data-theme="light"] .search-suggs li:hover a {
    color: #000 !important;
}

[data-theme="light"] .category-title {
    color: #212529;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .category-card-modern:hover .category-title {
    color: #fff;
}

/* VIDEO CARD - LIGHT MODE */
[data-theme="light"] .v-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .v-card:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .vc-title {
    color: #222 !important;
}

[data-theme="light"] .vc-title:hover {
    color: var(--primary-color) !important;
}

[data-theme="light"] .vc-meta {
    color: #666;
}

/* BUTONLAR & KATEGORİ CHIP'LERİ - LIGHT MODE */
[data-theme="light"] .category-chip {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333 !important;
}

[data-theme="light"] .category-chip:hover {
    color: #fff !important;
}

[data-theme="light"] .special-btn:not(header *) {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333 !important;
}

[data-theme="light"] .special-btn:not(header *):hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff !important;
}

/* SAYFALAMA (PAGINATION) - LIGHT MODE */
[data-theme="light"] .pagination .page-item .page-link {
    background-color: rgba(0, 0, 0, 0.05);
    color: #444;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .pagination .page-item .page-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .pagination .page-item.active .page-link {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #fff !important;
    border-color: transparent;
}

[data-theme="light"] .pagination .page-item.disabled .page-link {
    background-color: rgba(0, 0, 0, 0.02);
    color: #999;
}

.category-chip:hover {
    color: #fff !important;
    background: linear-gradient(45deg, rgba(209, 0, 209, 0.3), rgba(138, 43, 226, 0.3));
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(209, 0, 209, 0.2);
    transform: translateY(-2px);
}

/* Neon Divider (Ayraç) */
.neon-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(209, 0, 209, 0.5), rgba(138, 43, 226, 0.5), transparent);
    box-shadow: 0 0 10px rgba(209, 0, 209, 0.4);
    opacity: 0.7;
}

/* Hero Slider (Trend Videolar) Özellikleri */
.hero-item {
    background: linear-gradient(to top, rgba(20, 20, 22, 0.9), rgba(30, 30, 35, 0.6));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(209, 0, 209, 0.25);
}

.hero-item .l-video-preview img {
    height: 220px !important;
    max-height: 220px !important;
    aspect-ratio: unset !important;
}

/* Custom Yatay Scrollbar Sınıfı */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

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

/* Kategori Sayfası Özel Kart Tasarımı */
.category-card-modern {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(20, 20, 25, 0.8) 0%, rgba(20, 20, 25, 0.2) 50%, rgba(20, 20, 25, 0.4) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.category-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    text-align: center;
    z-index: 2;
}

.category-title {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    padding: 10px 20px;
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.category-card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.category-card-modern:hover .category-img {
    transform: scale(1.1);
}

.category-card-modern:hover .category-overlay {
    background: linear-gradient(to top, rgba(138, 43, 226, 0.6) 0%, rgba(209, 0, 209, 0.2) 100%);
}

.category-card-modern:hover .category-title {
    background: rgba(138, 43, 226, 0.8);
    border-color: rgba(209, 0, 209, 0.5);
    box-shadow: 0 0 20px rgba(209, 0, 209, 0.6);
    transform: scale(1.05);
}

/* ===== MOBILE SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.search-overlay .search-input-lg {
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
    border-radius: 0 !important;
    font-size: 24px !important;
    color: #fff !important;
    text-align: center;
    padding: 15px 0 !important;
    width: 100%;
    outline: none !important;
}

.search-overlay .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-overlay .close-search:hover {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.search-overlay.active {
    display: flex !important;
}

.mobile-icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.mobile-icon-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-search-trigger {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(209, 0, 209, 0.3);
}

@media (max-width: 991.98px) {
    .special-btn span {
        display: none !important;
    }

    .special-btn {
        width: 40px;
        height: 40px;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important;
    }
}

/* ===== POPUP & MODAL CUSTOM STYLES ===== */
#entrancePopupModal .modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#entrancePopupModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
}

#entrancePopupModal .modal-body {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

#entrancePopupModal .hearts-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    color: #ff4d6d;
    opacity: 0.6;
    filter: drop-shadow(0 0 5px rgba(255, 77, 109, 0.3));
    animation: floatUp var(--duration) ease-in infinite;
    bottom: -20px;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-400px) scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

/* AdBlock Detection */
#adBlockModal .modal-content {
    background: rgba(15, 15, 35, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 28px !important;
    color: #fff !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7) !important;
}

#adBlockModal .modal-body {
    padding: 50px 40px !important;
}

.ab-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 77, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ff4d6d;
    font-size: 32px;
    border: 1px solid rgba(255, 77, 109, 0.2);
}

.ab-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ab-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.ab-btn-refresh {
    background: #ff4d6d !important;
    border: none !important;
    padding: 12px 35px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px -5px rgba(255, 77, 109, 0.4) !important;
}

.ab-btn-refresh:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 25px -5px rgba(255, 77, 109, 0.5) !important;
}

.ad-banner-top,
.ad-banner-side,
.ad-banner-bottom,
.pub_300x250,
.pub_300x250m,
.pub_728x90,
.text-ad,
.ad-layer,
.ad-zone {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
}

/* ===== HEADER & SEARCH CUSTOM STYLES ===== */
:root {
    --bg-color: #0d0d12;
    --primary-color: #d100d1;
    --text-main: #f8f9fa;
    --glass-bg: rgba(18, 18, 24, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
}

header {
    min-height: 70px;
}

.site-logo {
    max-height: 100px;
    height: 100px;
    width: auto;
    object-fit: contain;
}

.desktopmenu {
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .d-lg-block {
        display: none !important;
    }
}

.searchbar {
    position: relative;
}

.search-suggs {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    z-index: 999;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    color: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.search-suggs::-webkit-scrollbar {
    width: 6px;
}

.search-suggs::-webkit-scrollbar-track {
    background: transparent;
}

.search-suggs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.search-suggs h5 {
    margin: 10px;
    font-size: 14px;
    color: #aaa;
}

.search-suggs ul {
    list-style: none;
    padding: 5px 0;
    margin: 0;
}

.search-suggs li {
    display: block;
    width: 100%;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    border-left: 2px solid transparent;
}

.search-suggs li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd !important;
    transition: color 0.2s ease;
}

.search-suggs li.active,
.search-suggs li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left: 2px solid var(--primary-color);
}

.search-suggs li.active a,
.search-suggs li:hover a {
    color: #fff !important;
}

.sugg-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.l-video-preview {
    display: inline-block;
    min-height: 48px;
    min-width: 48px;
}

.onecol {
    padding: 8px 0;
    display: block;
}

/* Accessibility & Contrast Fixes */
.exo-native-widget-item-text,
.exo-native-widget-item-title {
    color: #ffffff !important;
}

.text-muted {
    color: #ccc !important;
}

/* === NEW PREMIUM FOOTER DESIGN === */
.site-footer {
    background: transparent;
    padding: 60px 0 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* 1. Stats Section */
.footer-stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 600;
}

/* 2. Main Footer Content */
.footer-main-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .site-logo {
    max-height: 50px;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 11.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

/* CTA Box (Telegram/QR) */
.footer-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-qr-wrap {
    background: #fff;
    padding: 6px;
    border-radius: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-qr-wrap img {
    width: 100%;
}

.cta-text-wrap {
    flex: 1;
}

.cta-title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.cta-subtitle {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.cta-btn-join {
    background: #0088cc;
    /* Telegram Blue */
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.cta-btn-join:hover {
    background: #0099e5;
    transform: scale(1.03);
}

/* Link Columns */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    transition: 0.2s;
}

.footer-link-list a:hover {
    color: #fff;
    padding-left: 5px;
}

/* 3. Bottom Bar */
.footer-bottom {
    background: transparent;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-warning {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.warning-icon {
    color: #ff3b3b;
    font-size: 18px;
    margin-top: 3px;
}

.warning-content .w-title {
    display: block;
    font-weight: 700;
    font-size: 12.5px;
    margin-bottom: 5px;
}

.warning-content .w-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.social-circle-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s;
}

.social-circle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-btn-join {
        justify-content: center;
        width: 100%;
    }

    .footer-bottom .row>div {
        text-align: center !important;
        margin-bottom: 20px;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* === MODERN PREMIUM VIDEO CARDS === */
.v-card,
.v-card:hover,
.v-card *,
.v-card:hover *,
.v-card *::before,
.v-card *::after,
.v-card:hover *::before,
.v-card:hover *::after,
.v-card img,
.v-card a,
.v-card div {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-image: none !important;
}

.v-card {
    background: transparent;
    border-radius: 0 !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 15px;
}

.vc-thumbnail-wrap {
    display: block;
    position: relative;
    border-radius: 0 !important;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #1a1a1a;
}

.v-card:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.v-card:hover .thumb-main {
    transform: none;
    filter: brightness(0.9);
}

.v-card:hover .vc-title {
    color: #ff85a2 !important;
}

.vc-badge {
    position: absolute;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    pointer-events: none;
    letter-spacing: 0.3px;
}

.vc-hd-badge {
    left: 8px;
    border: none !important;
}

.vc-duration-badge {
    right: 8px;
}

.vc-content {
    padding: 10px 0;
}

.vc-title {
    display: block;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2px;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.vc-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    color: #888 !important;
    font-size: 11.5px !important;
    font-weight: 500 !important;
    margin-top: 5px !important;
}

.vc-author {
    color: #bbb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.vc-sep {
    font-size: 10px;
}

/* === MODELLER VE SAYFALAMA TASARIM GÜNCELLEMESİ === */

.popular-models-section {
    position: relative;
    padding: 10px 0;
}

.models-grid-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(209, 0, 209, 0.3) transparent;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-all i {
    width: 0;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 11px;
    margin-left: 0;
}

.btn-view-all:hover {
    background: #d100d1;
    border-color: #d100d1;
    color: #fff;
    padding-right: 15px;
}

.btn-view-all:hover i {
    width: 14px;
    opacity: 1;
    transform: translateX(0);
    margin-left: 8px;
}

.btn-view-all:active {
    transform: scale(0.95);
}

.model-item-card {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

.model-item-card:hover {
    transform: translateY(-5px);
}

.model-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.model-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-item-card:hover .model-card-thumb img {
    transform: scale(1.1);
}

.model-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.model-card-info {
    padding: 10px 2px;
}

.model-name {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.model-stats {
    color: #888;
    font-size: 11px;
}

/* === MODERN PAGINATION === */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-wrapper a,
.pagination-wrapper b,
.pagination-wrapper strong,
.pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 0 4px;
    padding: 0 15px;
    border-radius: 8px;
    background: #1a1a1a;
    color: #aaa;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.pagination-wrapper a:hover {
    background: #222;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Aktif Sayfa */
.pagination-wrapper b,
.pagination-wrapper strong {
    background: rgba(209, 0, 209, 0.1);
    color: #fff;
    border: 2px solid #d100d1;
}

/* Sonraki / Önceki Özel Stilleri */
.pagination-wrapper a[rel="next"],
.pagination-wrapper .next-link,
.pagination-wrapper a:contains("Sonraki"),
.pagination-wrapper a:last-child {
    background: #d100d1 !important;
    color: #fff !important;
    border: none !important;
    min-width: 110px !important;
}

.pagination-wrapper a[rel="next"]:hover {
    background: #ec00ec;
    transform: scale(1.03);
}

/* Mobilde sığması için */
@media (max-width: 768px) {
    .model-item-card {
        flex: 0 0 130px;
    }

    .pagination-wrapper a,
    .pagination-wrapper b,
    .pagination-wrapper strong {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
        margin: 0 2px;
    }
}

/* Fix for broken image frames */
.v-card img {
    color: transparent !important;
    font-size: 0 !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: #1a1a1a !important;
    /* Default fallback color */
}

.v-card a.vc-thumbnail-wrap {
    color: transparent !important;
    text-decoration: none !important;
    border: none !important;
}

@media (max-width: 768px) {
    .vc-title {
        font-size: 13px;
    }

    .vc-meta {
        font-size: 11.5px;
    }
}


/* === SIDEBAR CATEGORY SCROLL === */
.sidebar-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-category-list::-webkit-scrollbar {
    width: 4px;
}

.sidebar-category-list::-webkit-scrollbar-thumb {
    background: rgba(209, 0, 209, 0.3);
    border-radius: 10px;
}



/* === THINNER SIDEBAR CATEGORY ITEMS (FIXED) === */
.sidebar-category-list .sb-menu-item {
    padding: 2px 14px !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
}

.sidebar-category-list .sb-menu-count {
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 1px 8px !important;
    border-radius: 6px !important;
    min-width: 35px !important;
    text-align: center !important;
    font-weight: 700 !important;
    margin-left: auto !important;
    font-size: 10px !important;
}

/* === HOME SHORTS SECTION === */
.home-shorts-section {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.shorts-horizontal-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.short-story-card {
    flex: 0 0 150px;
    text-decoration: none !important;
}

.short-story-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.short-story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.short-story-card:hover .short-story-thumb img {
    transform: scale(1.1);
}

.short-story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}

.short-story-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 40px;
    height: 40px;
    background: #ff4757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.short-story-card:hover .short-story-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.short-story-title {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.custom-scrollbar::-webkit-scrollbar {
    height: 3px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 71, 87, 0.3);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 71, 87, 0.5);
}