.watch-page-wrapper {
    padding-top: 85px;
    padding-bottom: 40px;
}
.video-player-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #000;
}
.video-player-container .video-js {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.video-js.ad-playing .vjs-control-bar {
    display: none !important;
}

.vjs-ad-controls-container {
    position: absolute;
    right: 20px;
    bottom: 70px;
    z-index: 22;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vjs-ad-mute-button, .vjs-ad-skip-button {
    padding: 10px 18px;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    backdrop-filter: blur(5px);
    transition: background-color 0.2s ease;
}
.vjs-ad-mute-button {
    width: 45px;
    padding: 10px;
}
.vjs-ad-mute-button:hover, .vjs-ad-skip-button:not(:disabled):hover {
    background-color: rgba(30, 30, 30, 0.9);
}

#devtools-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    color: #fff;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    text-align: center;
    padding: 20px;
}

.ad-slot {
    max-width: 1280px;
    margin: 25px auto;
    padding: 0 15px;
    text-align: center;
    overflow: hidden;
}
.ad-slot img { max-width: 100%; height: auto; border-radius: 8px; }

.watch-content-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    padding: 30px 0;
    max-width: 1400px;
}
.film-header-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}
.film-title-main {
    font-size: 2.2em;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}
.action-buttons-desktop { display: flex; gap: 10px; flex-shrink: 0; }
.action-btn {
    width: 42px;
    height: 42px;
    border: 1px solid;
    border-radius: 50%;
    background: none;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.action-btn.is-active { 
    background-color: var(--primary-color) !important; 
    color: #fff !important; 
    border-color: var(--primary-color) !important;
}

.social-share-container {
    position: relative;
}
.social-share-container:hover .social-share-icons {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.social-share-icons {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: var(--card-bg-dark);
    padding: 8px;
    border-radius: 25px;
    gap: 5px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    border: 1px solid var(--border-color-dark);
}
.social-icon { 
    width: 38px; height: 38px; font-size: 1.2em; border-radius: 50%; border: none; cursor: pointer; color: #fff; 
    display: inline-flex; align-items: center; justify-content: center;
}
.social-icon[data-social="copy"] { background-color: #7f8c8d; }
.social-icon[data-social="whatsapp"] { background-color: #25d366; }
.social-icon[data-social="telegram"] { background-color: #0088cc; }
.social-icon[data-social="twitter"] { background-color: #1da1f2; }

.film-meta-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    margin-bottom: 25px;
    opacity: 0.9;
}
.imdb-badge {
    background-color: #f5c518;
    color: #000;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}
.film-description { 
    line-height: 1.7; 
    margin-bottom: 25px; 
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.comments-section { 
    margin-top: 40px; 
    padding-top: 30px; 
    border-top: 1px solid; 
}
.comments-section h2 { 
    font-size: 1.8em; 
    margin-bottom: 25px; 
    display: flex;
    align-items: center;
    gap: 10px;
}
.comment-form { margin-bottom: 40px; }
.comment-form textarea { 
    width: 100%; height: 100px; padding: 15px; border-radius: 8px; border: 1px solid; 
    font-size: 1em; margin-bottom: 15px; resize: vertical; 
}
.comment-form button { 
    padding: 10px 25px; border-radius: 8px; font-size: 0.95em; font-weight: 600; border: none; cursor: pointer; 
    display: inline-flex; align-items: center; gap: 8px; transition: background-color 0.2s ease;
}
.comment-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.comment-login-prompt { margin-bottom: 40px; }
.comment-login-prompt, .no-comments { 
    padding: 20px; text-align: center; border-radius: 8px; font-size: 1em; 
}
.comment-login-prompt a { font-weight: 600; text-decoration: none; }
.comment-list-container { display: flex; flex-direction: column; gap: 15px; }
.comment-item { 
    display: flex; gap: 15px; padding: 20px; border-radius: 12px; 
}
.comment-avatar { 
    width: 45px; height: 45px; border-radius: 50%; object-fit: cover; flex-shrink: 0; 
}
.comment-header { 
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; 
}
.comment-author { font-weight: 600; font-size: 1.05em; }
.comment-date { font-size: 0.8em; opacity: 0.7; }
.comment-body { margin: 0; line-height: 1.6; word-break: break-word; }

.ad-slot-sidebar { 
    border-radius: 8px; overflow: hidden; position: sticky; top: 85px; 
}
.ad-slot-sidebar img { width: 100%; display: block; }

body.light-mode .watch-page-wrapper { background-color: #f0f2f5; }
body.light-mode .action-btn { border-color: #ced4da; color: #495057; background-color: #fff; }
body.light-mode .action-btn:hover { background-color: #f1f3f5; }
body.light-mode .comments-section { border-color: #e9ecef; }
body.light-mode .comment-form textarea { background-color: #fff; border-color: #ced4da; color: #333; }
body.light-mode .comment-form button { background-color: var(--primary-color); color: #fff; }
body.light-mode .comment-login-prompt, .no-comments { background-color: #e9ecef; color: #333; }
body.light-mode .comment-login-prompt a { color: var(--primary-color); }
body.light-mode .comment-item { background-color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
body.light-mode .comment-author { color: #000; }
body.light-mode .social-share-icons { background-color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); border-color: var(--border-color-light);}
body.light-mode .comment-body, body.light-mode .comment-date { color: #495057; }

body.dark-mode .watch-page-wrapper { background-color: var(--bg-color-dark); color: var(--text-color-dark); }
body.dark-mode .action-btn { border-color: #444; color: #f0f0f0; background-color: #252525; }
body.dark-mode .action-btn:hover { background-color: #333; }
body.dark-mode .comments-section { border-color: #333; }
body.dark-mode .comment-form textarea { background-color: #252525; border-color: #444; color: #f0f0f0; }
body.dark-mode .comment-form button { background-color: var(--primary-color); color: #fff; }
body.dark-mode .comment-login-prompt, .no-comments { background-color: #1c1c1c; }
body.dark-mode .comment-login-prompt a { color: var(--primary-color); }
body.dark-mode .comment-item { background-color: #1e1e1e; }
body.dark-mode .comment-author { color: #fff; }

.popup-ad-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.popup-ad-modal {
    position: relative;
    background-color: var(--card-bg-dark);
    padding: 10px;
    border-radius: var(--border-radius-default);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    max-width: 500px;
    width: 90%;
}
body.light-mode .popup-ad-modal {
    background-color: var(--card-bg-light);
}
.popup-ad-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid #fff;
    font-size: 1.5em;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-ad-content {
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    overflow: hidden;
}
.popup-ad-content img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .watch-content-container { 
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
    .film-sidebar-details, .ad-type-dikey { 
        display: none; 
    }
    .film-title-main {
        font-size: 1.6em;
    }
    .film-description {
        font-size: 0.95em;
    }
    .comments-section h2 {
        font-size: 1.5em;
    }
    .comment-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .comment-content {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .watch-page-wrapper {
        padding-top: 70px;
    }
    .film-header-area { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 15px; 
    }
    .film-title-main { 
        font-size: 1.4em; 
    }
    .action-buttons-desktop { 
        justify-content: flex-start; 
    }
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
    .comment-author {
        font-size: 1em;
    }
}
/* -- Benzer Filmler Slider Stilleri (Minimalist Versiyon) -- */
.similar-films-section {
    position: relative;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid;
}
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.slider-header h2 {
    font-size: 1.8em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.slider-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-size: 1em;
}
.slider-nav button:hover:not(:disabled) {
    background-color: #fff;
    color: #000;
}
.slider-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.slider-wrapper {
    overflow: hidden;
}
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}
.film-card {
    flex: 0 0 calc((100% / 6) - (100px / 6));
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.film-card a {
    display: block;
    position: relative;
    aspect-ratio: 2 / 3;
}
.film-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.film-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.film-card:hover img {
    transform: scale(1.1);
}
.film-card:hover .overlay {
    opacity: 1;
}
.overlay .meta {
    font-size: 0.9em;
    color: #eee;
    display: flex;
    gap: 15px;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}
.overlay .meta i {
    margin-right: 5px;
}
.overlay .play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2em;
    backdrop-filter: blur(5px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.overlay .play-button:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.3);
}

body.light-mode .similar-films-section { border-color: #e9ecef; }
body.light-mode .slider-nav button { border-color: #ced4da; color: #495057; background-color: #fff; }
body.light-mode .slider-nav button:hover:not(:disabled) { background-color: #000; color: #fff; }

@media (max-width: 1200px) { .film-card { flex: 0 0 calc((100% / 5) - (80px / 5)); } }
@media (max-width: 992px) { .film-card { flex: 0 0 calc((100% / 4) - (60px / 4)); } .slider-header h2 { font-size: 1.5em; } }
@media (max-width: 768px) { .film-card { flex: 0 0 calc((100% / 3) - (40px / 3)); } }
@media (max-width: 576px) { .film-card { flex: 0 0 calc((100% / 2) - (20px / 2)); } .slider-header { flex-direction: column; align-items: flex-start; gap: 15px; } }