/* --- PREMIUM FILM KARTI --- */
.film-details {
    display: flex; gap: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px; padding: 40px; margin-bottom: 40px;
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 30px 60px -15px var(--shadow-color);
    position: relative; overflow: hidden;
}
.film-details::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at top left, var(--primary-glow) 0%, transparent 50%);
    opacity: 0.4; pointer-events: none; z-index: 0;
}

/* --- SOL TARAF --- */
.poster-area { width: 280px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; z-index: 1; }
.poster-wrap {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.poster-wrap img { width: 100%; display: block; border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); }
.poster-wrap:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 20px var(--primary-glow); }

/* --- PUANLAMA KUTUSU --- */
.rating-widget {
    background: var(--element-bg); border: 1px solid var(--border-color);
    border-radius: 16px; padding: 12px; text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
}
.rating-stars { display: flex; justify-content: center; flex-direction: row-reverse; gap: 3px; margin-bottom: 5px; }
.rating-stars input { display: none; }
.rating-stars label { font-size: 18px; color: var(--text-sub); cursor: pointer; transition: all 0.2s; opacity: 0.5; }
.rating-stars label:hover, .rating-stars label:hover ~ label, .rating-stars input:checked ~ label {
    color: #fbbf24; opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}
.rating-avg { font-size: 12px; font-weight: 700; color: var(--text-main); display: flex; align-items: center; justify-content: center; gap: 4px; }
.rating-avg span { color: var(--primary-color); font-weight: 900; font-size: 14px; }

/* --- PAYLAŞ BUTONLARI --- */
.share-row { display: flex; justify-content: center; gap: 12px; }
.share-item {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--element-bg); border: 1px solid var(--border-color);
    color: var(--text-sub); display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all 0.3s ease; font-size: 20px;
}
.share-item:hover { background: var(--text-main); color: var(--bg-body); transform: translateY(-3px); box-shadow: 0 5px 15px var(--shadow-color); }
.share-item.wa:hover { background: #25D366; color: #fff; border-color: #25D366; }

/* --- SAĞ TARAF --- */
.info-area { flex: 1; display: flex; flex-direction: column; z-index: 1; }
.film-head { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
.film-title { font-size: 42px; font-weight: 900; color: var(--text-main); margin: 0; line-height: 1.1; letter-spacing: -1px; }
.film-slogan { font-size: 18px; font-style: italic; color: var(--primary-color); margin-top: 10px; font-weight: 500; }

.meta-line { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 25px; }
.meta-badge {
    display: flex; align-items: center; gap: 8px; padding: 8px 16px;
    border-radius: 50px; font-size: 13px; font-weight: 800;
    background: var(--element-bg); border: 1px solid var(--border-color);
    color: var(--text-main); transition: 0.3s;
}
.meta-badge:hover { border-color: var(--primary-color); background: var(--primary-glow); }
.imdb-badge { background: #f5c518; color: #000; padding: 8px 14px; border-radius: 12px; font-weight: 900; font-size: 14px; box-shadow: 0 5px 15px rgba(245, 197, 24, 0.3); }
.site-badge { background: var(--primary-color); color: #fff; border: none; box-shadow: 0 5px 15px var(--primary-glow); }

.genres-line { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.genre-chip {
    font-size: 12px; font-weight: 800; text-transform: uppercase;
    color: var(--text-sub); background: transparent; padding: 10px 20px;
    border-radius: 50px; text-decoration: none; border: 2px solid var(--border-color);
    transition: all 0.3s ease; letter-spacing: 0.5px;
}
.genre-chip:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px var(--primary-glow); }

.desc-box { background: var(--element-bg); padding: 30px; border-radius: 20px; border-left: 4px solid var(--primary-color); margin-bottom: 30px; box-shadow: 0 10px 30px var(--shadow-color); }
.desc-text { font-size: 16px; line-height: 1.8; color: var(--text-main); opacity: 0.9; margin-bottom: 25px; }
.crew-line { display: flex; gap: 40px; font-size: 14px; border-top: 1px solid var(--border-color); padding-top: 20px; }
.crew-box span { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--primary-color); margin-bottom: 5px; letter-spacing: 1px; }
.crew-box strong { color: var(--text-main); font-size: 15px; }

/* AKSİYON BUTONLARI */
.action-grid { display: flex; gap: 15px; margin-top: auto; flex-wrap: wrap; }
.btn-hero {
    height: 55px; padding: 0 30px; border-radius: 14px;
    font-size: 14px; font-weight: 900; text-transform: uppercase;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-grow: 2; letter-spacing: 0.5px;
}
.btn-fav { background: var(--element-bg); border: 2px solid var(--border-color); color: var(--text-main); }
.btn-fav:hover { border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-2px); }
.btn-fav.active { background: var(--primary-color); border-color: var(--primary-color); color: #fff; box-shadow: 0 10px 25px var(--primary-glow); }
.btn-fav i { font-size: 18px; transition: 0.3s; }
.btn-fav:hover i { transform: scale(1.2); }

.vote-wrapper { display: flex; gap: 0; background: var(--element-bg); border-radius: 14px; border: 2px solid var(--border-color); overflow: hidden; flex-grow: 1; }
.btn-vote { flex: 1; height: 55px; background: transparent; border: none; color: var(--text-sub); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: 14px; transition: 0.3s; }
.btn-vote:hover i { transform: scale(1.2) rotate(-10deg); }
.btn-vote.like:hover, .btn-vote.like.active { color: #2ecc71; background: rgba(46, 204, 113, 0.1); }
.btn-vote.dislike:hover, .btn-vote.dislike.active { color: #e74c3c; background: rgba(231, 76, 60, 0.1); }
.vote-divider { width: 2px; background: var(--border-color); height: 100%; }

.btn-report { height: 55px; width: 55px; border-radius: 14px; background: var(--element-bg); border: 2px solid var(--border-color); color: var(--text-sub); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; transition: all 0.3s; flex-shrink: 0; }
.btn-report:hover { border-color: #ff3b30; color: #ff3b30; background: rgba(255, 59, 48, 0.1); transform: rotate(15deg); }

@media (max-width: 900px) {
    .film-details { flex-direction: column; padding: 25px; gap: 25px; }
    .poster-area { width: 100%; max-width: 300px; margin: 0 auto; }
    .film-title { font-size: 32px; text-align: center; }
    .film-slogan { text-align: center; }
    .meta-line { justify-content: center; }
    .genres-line { justify-content: center; }
    .crew-line { flex-direction: column; gap: 15px; text-align: center; }
    .action-grid { flex-direction: column; }
    .btn-hero, .vote-wrapper, .btn-report { width: 100%; flex: auto; }
}