html {
    overflow-x: hidden !important;
}

body {
    background-color: var(--bg-color);
    color: #e0e0e0;
}

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: inline-block;
    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: rgba(18, 18, 24, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1020;
}



/* ===== MOBILE TOP NAVIGATION ===== */
.mobile-top-nav {
    background: rgba(18, 18, 24, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    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);
}

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

header .menu ul li {
    width: 100%;
    text-align: center;
    padding: 0 10px;
}

header .menu ul li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    padding: 0 15px;
    line-height: 38px;
    width: 100%;
    background-color: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

header .menu ul li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

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

.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: 0 12px;
    font-size: 14px;
    font-weight: 500;
}

.footer-menu a:hover {
    text-decoration: underline !important;
}

@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);
}

.mobile-icon-btn {
    width: 40px;
    height: 40px;
    display: 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 {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    min-height: 70px;
}

.site-logo {
    max-height: 55px;
    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;
}