/* --- Video Embed Stilleri --- */
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.video-container iframe,
.video-container embed,
.video-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-container-16-9 { padding-bottom: 56.25%; }
.video-container-4-3 { padding-bottom: 75%; }
.video-container-21-9 { padding-bottom: 42.85%; }
.video-container-1-1 { padding-bottom: 100%; }
.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #0f172a;
}
.video-container video::-webkit-media-controls-panel {
    background: rgba(15, 23, 42, 0.9);
}
.video-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(251, 191, 36, 0.9);
    color: #0f172a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
}
.video-label i { margin-right: 5px; }
.video-caption {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 8px;
    padding: 0 5px;
    font-style: italic;
}
.video-container:hover {
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.15);
    transform: scale(1.005);
    transition: all 0.3s ease;
}
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    color: #fbbf24;
    font-size: 3rem;
    z-index: 1;
}
.video-placeholder i {
    animation: pulse 3.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@media (max-width: 767px) {
    .video-container { border-radius: 8px; margin: 15px 0; }
    .video-label { top: 10px; left: 10px; font-size: 0.65rem; padding: 4px 12px; }
    .video-caption { font-size: 0.75rem; }
}
body.bg-black .video-container { border: 1px solid #333; }
body.bg-white .video-container { border: 1px solid #e2e8f0; }

.video-label-live {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Makale İçi Resim Stilleri */
.article-image-container {
    margin: 25px 0;
    text-align: center;
    clear: both;
}
.article-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: inline-block;
}
.article-image-caption {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
    padding: 0 10px;
}
@media (max-width: 767px) {
    .article-image { border-radius: 8px; max-width: 100%; }
    .article-image-caption { font-size: 0.75rem; margin-top: 6px; }
    .article-image-container { margin: 15px 0; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .article-image { max-width: 90%; }
}
@media (min-width: 992px) {
    .article-image { max-width: 100%; }
}

