/* Video Detay Özel Stiller */
.video-detail-page {
    background: #f9f9f9;
    min-height: 100vh;
    padding-top: 24px;
}

.video-detail-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .video-detail-container {
        flex-direction: row;
    }
}

.video-detail-main {
    flex: 1;
    min-width: 0;
}

.video-detail-sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .video-detail-sidebar {
        width: 400px;
        flex-shrink: 0;
    }
}

/* Video Player */
.video-player-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.video-player-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease;
    pointer-events: none;
    z-index: 0;
}

.video-player-wrapper.is-playing::before {
    background: rgba(0, 0, 0, 0.42);
}

.video-player-wrapper iframe,
.video-player-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 1;
    background: #000;
}

.video-player-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 2;
}

.video-player-placeholder--interactive {
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.video-player-placeholder i {
    font-size: 80px;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: transform 0.2s;
}

.video-player-placeholder i:hover {
    transform: scale(1.1);
}

/* Merkezi Play Overlay Butonu */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    transition: opacity 0.25s ease;
}

.video-play-overlay__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-overlay__icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 3px; /* optik ortalama — üçgen sola kayık görünür */
}

.video-play-overlay:hover .video-play-overlay__icon {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.75);
}

.video-play-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .video-play-overlay__icon {
        width: 80px;
        height: 80px;
    }
    .video-play-overlay__icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Video Başlık ve Meta – .single-page .entry-title ile aynı stil */
.video-title {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #ffffff;
}

body.light-mode .video-title {
    color: #333333;
}

@media (max-width: 768px) {
    .video-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 2.3em;
        line-height: 1;
    }
}

.video-meta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
    .video-meta-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.video-author-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.video-author-info {
    flex: 1;
}

.video-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f0f0f;
    text-decoration: none;
    display: block;
}

.video-author-name:hover {
    color: #065fd4;
}

.video-author-subs {
    font-size: 12px;
    color: #606060;
}

.video-subscribe-btn {
    padding: 10px 16px;
    background: #0f0f0f;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.video-subscribe-btn:hover {
    background: #272727;
}

.video-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.video-actions::-webkit-scrollbar {
    display: none;
}

.video-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f2f2f2;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.video-action-btn:hover {
    background: #e5e5e5;
}

.video-action-btn i {
    font-size: 18px;
}

/* Video Açıklama */
.video-description {
    background: #f2f2f2;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.6;
}

.video-description-meta {
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f0f0f;
}

.video-description-text {
    color: #0f0f0f;
}

/* Video Description Entry Content — single.php ile aynı stiller */
.video-description-text.entry-content {
    line-height: 1.8;
    color: #e0e0e0;
    font-size: 22px;
    margin-top: 15px;
}

.video-description-text.entry-content::after {
    content: "";
    display: table;
    clear: both;
}

.video-description-text.entry-content p {
    margin: 0 0 20px 0;
    line-height: 1.4em;
    text-align: justify;
    word-spacing: 0.1em;
}

.video-description-text.entry-content p:last-child {
    margin-bottom: 0;
}

.video-description-text.entry-content h1,
.video-description-text.entry-content h2,
.video-description-text.entry-content h3,
.video-description-text.entry-content h4,
.video-description-text.entry-content h5,
.video-description-text.entry-content h6 {
    margin: 32px 0 16px 0;
    line-height: 1.4;
    color: #ffffff;
}

.video-description-text.entry-content h1 { font-size: 28px; margin-top: 40px; }
.video-description-text.entry-content h2 { font-size: 24px; margin-top: 36px; }
.video-description-text.entry-content h3 { font-size: 20px; margin-top: 32px; }
.video-description-text.entry-content h4,
.video-description-text.entry-content h5,
.video-description-text.entry-content h6 { font-size: 22px; margin-top: 28px; }

.video-description-text.entry-content ul,
.video-description-text.entry-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.video-description-text.entry-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.video-description-text.entry-content li > p {
    margin: 0;
    line-height: inherit;
    text-align: left;
    word-spacing: normal;
}

.video-description-text.entry-content a {
    color: #4a90e2;
    text-decoration: underline;
    text-decoration-color: rgba(74, 144, 226, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.video-description-text.entry-content a:hover {
    color: #357abd;
    text-decoration-color: #357abd;
}

.video-description-text.entry-content blockquote {
    border-left: 4px solid #4a90e2;
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #cccccc;
}

.video-description-text.entry-content blockquote p {
    margin-bottom: 0;
}

.video-description-text.entry-content code {
    background: #2a2a2a;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: #ff6b6b;
    border: 1px solid #404040;
}

.video-description-text.entry-content pre {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid #333;
}

.video-description-text.entry-content pre code {
    background: none;
    padding: 0;
    border: none;
    color: #e0e0e0;
}

.video-description-text.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.video-description-text.entry-content,
.video-description-text.entry-content .gallery,
.video-description-text.entry-content .wp-block-gallery {
    display: flow-root;
}

.video-description-text.entry-content .gallery,
.video-description-text.entry-content .wp-block-gallery,
.video-description-text.entry-content .gallery:last-child,
.video-description-text.entry-content .wp-block-gallery:last-child {
    clear: both;
}

.video-description-text.entry-content figure {
    margin: 1.5em 0;
}

.video-description-text.entry-content figcaption {
    text-align: center;
    font-size: 0.9em;
    color: #606060;
    margin-top: 0.5em;
}

.video-description-text.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.video-description-text.entry-content th,
.video-description-text.entry-content td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.video-description-text.entry-content th {
    background: #2a2a2a;
    font-weight: 600;
    color: #ffffff;
}

.video-description-text.entry-content td {
    color: #e0e0e0;
}

.video-description-text.entry-content tr:hover {
    background: rgba(74, 144, 226, 0.05);
}

/* Light Mode — video description */
body.light-mode .video-description-text.entry-content {
    color: #333333;
}

body.light-mode .video-description-text.entry-content h1,
body.light-mode .video-description-text.entry-content h2,
body.light-mode .video-description-text.entry-content h3,
body.light-mode .video-description-text.entry-content h4,
body.light-mode .video-description-text.entry-content h5,
body.light-mode .video-description-text.entry-content h6 {
    color: #1a1a1a;
}

body.light-mode .video-description-text.entry-content blockquote {
    background: rgba(74, 144, 226, 0.08);
    color: #555555;
}

body.light-mode .video-description-text.entry-content code {
    background: #f5f5f5;
    color: #e74c3c;
    border-color: #e0e0e0;
}

body.light-mode .video-description-text.entry-content pre {
    background: #f8f9fa;
    border-color: #e9ecef;
}

body.light-mode .video-description-text.entry-content pre code {
    color: #333333;
}

body.light-mode .video-description-text.entry-content table {
    background: #ffffff;
}

body.light-mode .video-description-text.entry-content th {
    background: #f8f9fa;
    color: #333333;
}

body.light-mode .video-description-text.entry-content td {
    color: #555555;
    border-color: #e9ecef;
}

body.light-mode .video-description-text.entry-content tr:hover {
    background: rgba(74, 144, 226, 0.05);
}

/* Responsive — .single-page .entry-content ile aynı */
@media (max-width: 768px) {
    .video-description-text.entry-content {
        font-size: 1.30em;
        line-height: 1.5em;
    }

    .video-description-text.entry-content h1 {
        font-size: 24px;
    }

    .video-description-text.entry-content h2 {
        font-size: 20px;
    }

    .video-description-text.entry-content h3 {
        font-size: 18px;
    }

    .video-description-text.entry-content blockquote {
        padding: 12px 16px;
        margin: 16px 0;
    }

    .video-description-text.entry-content pre {
        padding: 16px;
        margin: 16px 0;
    }
}

@media (max-width: 480px) {
    .video-description-text.entry-content {
        font-size: 1.20em;
    }

    .video-description-text.entry-content p {
        margin-bottom: 16px;
        text-align: left;
    }

    .video-description-text.entry-content h1 {
        font-size: 20px;
    }

    .video-description-text.entry-content h2 {
        font-size: 18px;
    }

    .video-description-text.entry-content h3 {
        font-size: 16px;
    }

    .video-description-text.entry-content ul,
    .video-description-text.entry-content ol {
        padding-left: 20px;
    }

    .video-description-text.entry-content blockquote {
        padding: 12px;
        margin: 12px 0;
    }
}

/* Yorumlar */
.video-comments-section {
    margin-top: 24px;
}

.video-comments-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.video-comments-count {
    font-size: 20px;
    font-weight: 600;
}

.video-comment-form-wrapper {
    margin-bottom: 32px;
}

.video-comment-form-flex {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.video-comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.video-comment-form-inner {
    flex: 1;
}

.video-comment-field {
    margin-bottom: 8px;
}

.video-comment-field textarea {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
}

.video-comment-field textarea:focus {
    border-bottom-color: #0f0f0f;
}

.video-comment-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}

.video-comment-submit,
.video-comment-cancel {
    padding: 10px 16px;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

/* WordPress cancel linki <a id="cancel-comment-reply-link"> olarak üretir */
.video-comment-actions #cancel-comment-reply-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    color: #606060;
    transition: all 0.2s;
}

.video-comment-submit {
    background: #065fd4;
    color: #fff;
}

.video-comment-submit:hover {
    background: #0553c2;
}

.video-comment-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.video-comment-cancel {
    background: transparent;
    color: #606060;
}

.video-comment-cancel:hover {
    background: #f2f2f2;
}

.video-comment-actions #cancel-comment-reply-link:hover {
    background: #f2f2f2;
}

.video-comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-comment-item {
    display: flex;
    gap: 16px;
}

.video-comment-item .comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.video-comment-body {
    flex: 1;
}

.video-comment-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.video-comment-author-name {
    font-size: 13px;
    font-weight: 600;
    color: #0f0f0f;
}

.video-comment-time {
    font-size: 12px;
    color: #606060;
}

.video-comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: #0f0f0f;
    margin-bottom: 8px;
}

.video-comment-actions-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-comment-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    color: #606060;
    cursor: pointer;
    transition: background 0.2s;
}

/* comment_reply_link() varsayılanı <a class="comment-reply-link"> üretir */
.video-comment-actions-toolbar .comment-reply-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    color: #606060;
    text-decoration: none;
    transition: background 0.2s;
}

.video-comment-action-btn:hover {
    background: #f2f2f2;
}

.video-comment-actions-toolbar .comment-reply-link:hover {
    background: #f2f2f2;
}

.video-comment-action-btn i {
    font-size: 14px;
}

.comment-reply {
    margin-left: 56px;
    margin-top: 16px;
}

.comments-navigation {
    margin-top: 24px;
    text-align: center;
}

.comments-navigation a {
    display: inline-block;
    padding: 10px 20px;
    background: #f2f2f2;
    border-radius: 18px;
    color: #065fd4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.comments-navigation a:hover {
    background: #e5e5e5;
}

/* Dark Mode - Yorumlar */
:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-field textarea {
    color: #fff;
    border-bottom-color: #717171;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-field textarea:focus {
    border-bottom-color: #fff;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-cancel {
    color: #aaa;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-cancel:hover {
    background: #272727;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-author-name,
:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-text {
    color: #fff;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-time {
    color: #aaa;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-action-btn {
    color: #aaa;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comment-action-btn:hover {
    background: #272727;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .comments-navigation a {
    background: #272727;
    color: #3ea6ff;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .comments-navigation a:hover {
    background: #3d3d3d;
}

/* İlgili Videolar */
.related-videos-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.related-videos-filters::-webkit-scrollbar {
    display: none;
}

.related-filter-chip {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.related-filter-chip.active {
    background: #0f0f0f;
    color: #fff;
}

.related-filter-chip:not(.active) {
    background: #f2f2f2;
    color: #0f0f0f;
}

.related-filter-chip:not(.active):hover {
    background: #e5e5e5;
}

.related-videos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-video-item {
    display: flex;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 150ms ease;
    will-change: transform;
}

.related-video-item:hover {
    transform: translateY(-2px);
}

.related-video-item:hover .related-video-title {
    color: #065fd4;
}

.related-video-thumbnail {
    position: relative;
    width: 168px;
    height: 94px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e5e5;
}

.related-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.related-video-play i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 14px;
}

.related-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 150ms ease;
}

.related-video-item:hover .related-video-thumbnail img {
    filter: brightness(1.03);
}

.related-video-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}

.related-video-info {
    flex: 1;
    min-width: 0;
}

.related-video-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f0f0f;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-video-author {
    font-size: 12px;
    color: #606060;
}

.related-video-meta {
    font-size: 12px;
    color: #606060;
}

/* Son Eklenen Videolar */
.video-latest-section {
    margin-top: 24px;
    padding-bottom: 24px;
    display: none;
}

.video-latest-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1024px) {
    /* Masaüstünde: ana içerik (video-detail-main) genişliğiyle aynı hizada/ölçüde olsun */
    .video-latest-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: 24px;
        align-items: start;
    }

    .video-latest-title,
    .video-latest-grid {
        grid-column: 1;
    }
}

.video-latest-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #0f0f0f;
}

.video-latest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .video-latest-section {
        display: block;
    }

    .video-latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet: sadece ilk 4 video */
    .video-latest-grid .video-latest-item:nth-child(n+5) {
        display: none;
    }
}

@media (min-width: 1024px) {
    .video-latest-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Desktop: 8 videonun tamamını göster */
    .video-latest-grid .video-latest-item:nth-child(n+5) {
        display: block;
    }
}

.video-latest-item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 150ms ease;
    will-change: transform;
}

.video-latest-item:hover {
    transform: translateY(-2px);
}

.video-latest-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e5e5;
}

.video-latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 150ms ease;
}

.video-latest-item:hover .video-latest-thumb img {
    filter: brightness(1.03);
}

@media (prefers-reduced-motion: reduce) {
    .related-video-item,
    .video-latest-item,
    .related-video-thumbnail img,
    .video-latest-thumb img {
        transition: none;
    }

    .related-video-item:hover,
    .video-latest-item:hover {
        transform: none;
    }

    .related-video-item:hover .related-video-thumbnail img,
    .video-latest-item:hover .video-latest-thumb img {
        filter: none;
    }
}

.video-latest-info {
    padding-top: 8px;
}

/* Son Eklenen Videolar: yazar + meta yan yana */
.video-latest-info .related-video-author,
.video-latest-info .related-video-meta {
    display: inline;
}

.video-latest-info .related-video-meta {
    margin-left: 8px;
}

/* Dark Mode Desteği */
:is([data-theme="dark"], body.dark-mode, html.dark) .video-detail-page {
    background: #0f0f0f;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-title {
    color: #ffffff;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-meta-row {
    border-bottom-color: #272727;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-author-name {
    color: #f1f1f1;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-author-name:hover {
    color: #3ea6ff;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-author-subs {
    color: #aaa;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-subscribe-btn {
    background: #f1f1f1;
    color: #0f0f0f;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-subscribe-btn:hover {
    background: #fff;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-action-btn {
    background: #272727;
    color: #f1f1f1;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-action-btn:hover {
    background: #3a3a3a;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-description {
    background: #1a1a1a;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-description-meta,
:is([data-theme="dark"], body.dark-mode, html.dark) .video-description-text {
    color: #f1f1f1;
}

/* .video-description-text.entry-content — base zaten .single-page .entry-content ile aynı */

:is([data-theme="dark"], body.dark-mode, html.dark) .video-comments-count {
    color: #f1f1f1;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .related-filter-chip.active {
    background: #f1f1f1;
    color: #0f0f0f;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .related-filter-chip:not(.active) {
    background: #272727;
    color: #f1f1f1;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .related-filter-chip:not(.active):hover {
    background: #3a3a3a;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .related-video-title {
    color: #f1f1f1;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .related-video-item:hover .related-video-title {
    color: #3ea6ff;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .related-video-author,
:is([data-theme="dark"], body.dark-mode, html.dark) .related-video-meta {
    color: #aaa;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .video-latest-title {
    color: #f1f1f1;
}

:is([data-theme="dark"], body.dark-mode, html.dark) .related-video-thumbnail {
    background: #272727;
}
