.movie-detail-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #000;
}

.movie-title-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Küçük ekranlarda sarmalanma için */
    margin-bottom: 20px;
}

.main-movie-heading h1 {
    font-size: 28px; /* Daha küçük bir font boyutu */
    font-weight: 700; /* Daha kalın font */
    color: #f1f1f1; /* Başlık rengi */
    margin-bottom: 5px;
}

.main-movie-heading span {
    font-size: 16px; /* Orijinal başlık için font boyutu */
    color: #aaa; /* Orijinal başlık rengi */
}

.player-status {
    display: flex;
    align-items: center;
}

.movie-status {
    display: flex;
    gap: 10px; /* Rozetler arasında boşluk */
    flex-wrap: wrap; /* Rozetlerin sarmalanmasını sağla */
}

.movie-detail-status-badge {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px; /* Font boyutunu bir tık daha büyüttüm */
    font-weight: bold;
    white-space: nowrap;
}

.movie-detail-status-badge.active {
    background-color: #e50914; /* Aktif rozetin rengi */
}

.movie-detail-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movie-detail-video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.movie-detail-video-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.movie-detail-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
}

.movie-detail-backdrop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.movie-detail-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.movie-detail-play-overlay i {
    color: white;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.movie-detail-play-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.movie-detail-play-overlay:hover i {
    transform: scale(1.1);
}

.movie-detail-player-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.movie-detail-player-message i {
    font-size: 64px;
    color: #e50914;
    margin-bottom: 20px;
    animation: movie-detail-pulse 2s infinite alternate;
}

.movie-detail-player-message h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.movie-detail-player-message p {
    font-size: 18px;
    line-height: 1.5;
}

.movie-info h1 {
    font-size: 24px; /* Açıklamadaki film başlığı için font boyutu */
    font-weight: 700; /* Kalın font */
    color: #f1f1f1; /* Başlık rengi */
    margin-bottom: 15px;
}

@keyframes movie-detail-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@media (max-width: 768px) {
    .movie-detail-play-overlay {
        width: 60px;
        height: 60px;
    }
    .movie-detail-play-overlay i {
        font-size: 24px;
    }
    .movie-detail-player-message i {
        font-size: 48px;
    }
    .movie-detail-player-message h3 {
        font-size: 22px;
    }
    .movie-detail-player-message p {
        font-size: 16px;
    }
} 