/* css/izle.css */

/* Sayfa Genel Yapısı */
.watch-page {
    color: #fff;
    padding-bottom: 50px;
}

/* Üst Başlık ve Takip Et Butonu */
.movie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.movie-title-area h1 {
    font-size: 26px;
    margin: 0;
    font-weight: 700;
}

.movie-title-area h1 span {
    color: var(--text-muted);
    font-weight: 400;
}

.btn-follow {
    background: #1c1e26;
    color: #fff;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Dil ve Kaynak Sekmeleri */
.player-tabs {
    display: flex;
    gap: 25px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.tab-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-link i {
    color: var(--accent);
    font-size: 16px;
}

.tab-link.active {
    color: var(--accent);
    position: relative;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

/* Kaynak Butonları */
.source-list {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.source-btn {
    background: #1c1e26;
    color: var(--text-muted);
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}

.source-btn.active {
    background: var(--accent);
    color: #000;
}

/* Player Alanı */
.player-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.btn-start-video {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 800;
    cursor: pointer;
    font-size: 14px;
}

/* Beğeni Butonları */
.interaction-bar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 40px;
}

.btn-interaction {
    background: #1c1e26;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Detay Bölümü (Poster ve İçerik) */
.movie-info-wrap {
    display: grid;
    grid-template-columns: 240px 1fr; /* Poster genişliğini sabitledik */
    gap: 30px;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

/* Fotoğrafın tasarımı bozmaması için sabit genişlik */
.info-poster img {
    width: 100%;
    max-width: 240px;
    height: auto;
    border-radius: 6px;
    border: 1px solid var(--border);
    object-fit: cover;
}

.info-content h3 {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.info-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd1d8;
    margin-bottom: 25px;
}

/* 5'li Bilgi Kutusu Grid */
.meta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin: 30px 0;
    overflow: hidden;
}

.meta-box {
    background: var(--bg-content);
    padding: 15px 10px;
    text-align: center;
}

.meta-box label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.meta-box span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* Fragman Kartı */
.trailer-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1c1e26;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    width: fit-content;
    min-width: 300px;
    cursor: pointer;
}

.trailer-img {
    position: relative;
    width: 100px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.trailer-img img { width: 100%; height: 100%; object-fit: cover; }
.trailer-img i { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 20px; }

/* Yorum Uyarı Kutusu */
.comment-box {
    background: rgba(255, 68, 68, 0.03);
    border: 1px solid rgba(255, 68, 68, 0.2);
    padding: 15px;
    border-radius: 4px;
    color: #ff4444;
    font-size: 13px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.comment-box b { color: var(--accent); cursor: pointer; }