/* Temel Stiller */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

#video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Oynatıcı container içinde tam boyut alsın */
#video-container > div,
#video-container > video,
.video-js,
.jwplayer {
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}




/* Filigran Konumlandırma */
.watermark {
    position: absolute;
    z-index: 10;
    pointer-events: none;
}

.watermark.clickable {
    pointer-events: auto;
    cursor: pointer;
}

.watermark.top-left { top: 20px; left: 20px; }
.watermark.top-center { top: 20px; left: 50%; transform: translateX(-50%); }
.watermark.top-right { top: 20px; right: 20px; }
.watermark.middle-left { top: 50%; left: 20px; transform: translateY(-50%); }
.watermark.middle-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.watermark.middle-right { top: 50%; right: 20px; transform: translateY(-50%); }
.watermark.bottom-left { bottom: 20px; left: 20px; }
.watermark.bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }
.watermark.bottom-right { bottom: 20px; right: 20px; }

/* Hata Mesajları */
.error-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    max-width: 80%;
}

/* Sağ Tık Menü Stilleri */
.context-message {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 1000;
    text-align: center;
    max-width: 80%;
}

.context-message a {
    color: #1ce783;
    text-decoration: none;
}

.context-message a:hover {
    text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .watermark img {
        max-width: 100px;
        max-height: 40px;
    }
} 