/* Dizipal1050 Klonu - Bölüm İzleme Sayfası Stilleri */

/* Genel Stiller */
body {
    background-color: #161821;
    color: #fff;
}

.container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/* Video Player Bölümü */
.episode-player-section {
    background-color: #0a0b12;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.episode-player-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 11, 18, 0.8), rgba(10, 11, 18, 1));
    z-index: 1;
    backdrop-filter: blur(10px);
}

.episode-player-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.episode-player {
    position: relative;
    width: 100%;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 9, 20, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background-color: #000;
    border-radius: 12px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: blur(3px) brightness(0.7);
    transform: scale(1.05);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-placeholder:hover .video-bg {
    opacity: 0.8;
    transform: scale(1.1);
    filter: blur(2px) brightness(0.8);
}

.play-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.play-overlay i {
    font-size: 100px;
    color: rgba(229, 9, 20, 0.9);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
    opacity: 0.9;
    background: linear-gradient(135deg, #ff0a16, #e50914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.7));
}

.play-overlay:hover i {
    color: rgba(229, 9, 20, 1);
    transform: scale(1.15) translateY(-5px);
    text-shadow: 0 0 40px rgba(229, 9, 20, 0.8);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(229, 9, 20, 0.9));
}

.play-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    background: linear-gradient(to right, rgba(229, 9, 20, 0.8), rgba(255, 59, 48, 0.8));
    padding: 10px 24px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(229, 9, 20, 0.3);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-overlay:hover span {
    transform: translateY(5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 9, 20, 0.4);
}

/* Video Kontrolleri */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0));
    padding: 50px 30px 25px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    backdrop-filter: blur(5px);
}

.episode-player:hover .video-controls {
    opacity: 1;
}

.video-progress {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding: 5px 0;
}

.progress-bar {
    height: 6px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-progress:hover .progress-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

.progress-filled {
    height: 100%;
    width: 20%; /* Başlangıç değeri */
    background: linear-gradient(90deg, #e50914, #ff3b30);
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(229, 9, 20, 0.6); }
    50% { box-shadow: 0 0 25px rgba(229, 9, 20, 0.8); }
    100% { box-shadow: 0 0 15px rgba(229, 9, 20, 0.6); }
}

.progress-hover {
    position: absolute;
    height: 18px;
    width: 18px;
    background-color: #e50914;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    left: calc(20% + 2px); /* İlerleme çubuğunun sonuna göre ayarlanır */
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.8), 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 2;
    border: 2px solid #fff;
}

.video-progress:hover .progress-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.controls-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 0 5px;
}

.controls-left, .controls-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.control-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.control-btn:hover::before {
    transform: scale(1.2);
}

.control-btn:hover {
    color: #fff;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.control-btn.play-pause {
    background: linear-gradient(135deg, #ff0a16, #e50914);
    width: 50px;
    height: 50px;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
    font-size: 20px;
    z-index: 2;
}

.control-btn.play-pause:hover {
    background: linear-gradient(135deg, #ff1a26, #f50914);
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.8), 0 0 10px rgba(255, 255, 255, 0.3);
    transform: scale(1.2) translateY(-3px);
}

.volume-slider {
    width: 0;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-left: 8px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.control-btn:hover + .volume-slider,
.volume-slider:hover {
    width: 100px;
    opacity: 1;
}

.volume-filled {
    height: 100%;
    width: 70%; /* Başlangıç değeri */
    background: linear-gradient(90deg, #e50914, #ff3b30);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
    position: relative;
    transition: width 0.2s ease;
}

.volume-filled::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.volume-slider:hover .volume-filled::after {
    opacity: 1;
}

.episode-info-display {
    text-align: center;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.episode-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.episode-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quality-badge {
    background: linear-gradient(to right, rgba(229, 9, 20, 0.8), rgba(255, 59, 48, 0.8));
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.quality-badge i {
    font-size: 10px;
}

/* Bölüm Navigasyon Bölümü */
.episode-navigation {
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.navigation-wrapper {
    background: linear-gradient(135deg, rgba(40, 42, 54, 0.9), rgba(28, 30, 42, 0.9));
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.navigation-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.1), transparent 70%);
    opacity: 0.5;
    z-index: -1;
    animation: pulse-bg 10s infinite alternate;
}

@keyframes pulse-bg {
    0% { transform: translate(0, 0); opacity: 0.3; }
    100% { transform: translate(-10%, -10%); opacity: 0.6; }
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2c3a, #1a1c2a);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 5px rgba(229, 9, 20, 0.2);
    position: relative;
    overflow: hidden;
    flex: 1;
    text-align: center;
    justify-content: center;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #3a3c4a, #2a2c3a);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(229, 9, 20, 0.3);
}

.nav-btn span {
    position: relative;
    z-index: 2;
}

.prev-btn i {
    margin-right: 5px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.next-btn i {
    margin-left: 5px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.prev-btn:hover i {
    transform: translateX(-5px);
}

.next-btn:hover i {
    transform: translateX(5px);
}

.next-btn:hover i {
    transform: translateX(3px);
}

.series-btn {
    background: linear-gradient(to bottom, #e50914, #b00710);
}

.series-btn:hover {
    background: linear-gradient(to bottom, #f52030, #c01820);
}

.nav-btn.disabled {
    background-color: #2a2c3a;
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.nav-btn.disabled:hover {
    background-color: #2a2c3a;
    transform: none;
    box-shadow: none;
}

/* Bölüm Bilgileri Bölümü */
.episode-details {
    margin-bottom: 50px;
    position: relative;
}

.details-wrapper {
    background: linear-gradient(135deg, rgba(40, 42, 54, 0.9), rgba(28, 30, 42, 0.95));
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.details-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(229, 9, 20, 0.15);
    transform: translateY(-5px);
}

.details-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e50914, #ff3b30);
}

.episode-meta {
    flex: 1;
    min-width: 300px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.series-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.series-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e50914, transparent);
    border-radius: 3px;
}

.episode-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.episode-info i {
    color: #e50914;
    margin-right: 5px;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.episode-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid #e50914;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(40, 42, 54, 0.8), rgba(28, 30, 42, 0.8));
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.action-btn:hover::before {
    opacity: 1;
}

.action-btn:hover {
    background: linear-gradient(135deg, rgba(50, 52, 64, 0.9), rgba(38, 40, 52, 0.9));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(229, 9, 20, 0.2);
}

.action-btn i {
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgba(255, 255, 255, 0.9);
}

.action-btn:hover i {
    transform: scale(1.2);
    color: #e50914;
}

.like-btn:hover {
    color: #ff5a5f;
}

.like-btn.active {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(28, 30, 42, 0.8));
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.share-btn:hover {
    color: #4285f4;
}

.report-btn:hover {
    color: #ffc107;
}

.watched-btn:hover {
    color: #4caf50;
}

.watched-btn.active {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(28, 30, 42, 0.8));
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #fff;
}

.watched-btn.active i {
    transform: scale(1.2);
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.watched-btn:hover {
    color: #4caf50;
}

.watched-btn.active {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(28, 30, 42, 0.8));
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #fff;
}

.watched-btn.active i {
    transform: scale(1.2);
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.watched-btn.active i {
    transform: scale(1.2);
}

/* Kullanıcı Yorumları Bölümü */
.episode-comments {
    padding: 30px 0;
    margin-bottom: 50px;
    position: relative;
}

.episode-comments::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(10, 11, 18, 0.3));
    pointer-events: none;
    z-index: -1;
}

.comments-wrapper {
    background: linear-gradient(135deg, rgba(28, 30, 42, 0.95), rgba(20, 22, 34, 0.95));
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.comments-wrapper:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(229, 9, 20, 0.15);
    transform: translateY(-5px);
}

.comments-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e50914, #ff3b30);
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.comments-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    position: relative;
}

.comments-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e50914, transparent);
    border-radius: 3px;
}

.comments-title i {
    color: #e50914;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

.comment-count {
    color: #fff;
    font-size: 15px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.2), rgba(229, 9, 20, 0.1));
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-count i {
    color: #e50914;
    font-size: 14px;
}

.comment-count:hover {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.3), rgba(229, 9, 20, 0.2));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(229, 9, 20, 0.3);
}

.comment-form {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    background: linear-gradient(135deg, rgba(42, 44, 58, 0.8), rgba(28, 30, 42, 0.8));
    padding: 25px;
    border-radius: 12px;
}

.login-required-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 5;
    animation: fadeIn 0.3s ease;
}

.login-required-message i {
    font-size: 32px;
    color: #e50914;
    margin-bottom: 15px;
}

.login-required-message p {
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.login-required-message .login-link {
    color: #e50914;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-required-message .login-link:hover {
    text-decoration: underline;
    color: #ff3d47;
}

/* Bildirim Sistemi */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.site-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-notification.show {
    transform: translateX(0);
    opacity: 1;
    animation: slideIn 0.3s ease forwards;
}

.site-notification.hide {
    animation: slideOut 0.3s ease forwards;
}

.site-notification.success {
    background: linear-gradient(135deg, #1a472a, #2a623d);
    border-left: 5px solid #2ecc71;
}

.site-notification.error {
    background: linear-gradient(135deg, #5c0a17, #7d0a1f);
    border-left: 5px solid #e74c3c;
}

.site-notification.info {
    background: linear-gradient(135deg, #1a3c5c, #2a5a8c);
    border-left: 5px solid #3498db;
}

.site-notification i {
    font-size: 24px;
    color: #fff;
}

.site-notification p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    flex-grow: 1;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: #fff;
}

.comment-form {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.comment-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.05), transparent 70%);
    opacity: 0.5;
    z-index: -1;
    animation: pulse-bg 10s infinite alternate;
}

.comment-form:focus-within {
    background: linear-gradient(135deg, rgba(45, 47, 59, 0.9), rgba(33, 35, 47, 0.9));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-5px);
}

.user-avatar img,
.comment-avatar img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.user-avatar:hover img,
.comment-avatar:hover img {
    border-color: rgba(229, 9, 20, 0.7);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(229, 9, 20, 0.4);
}

.comment-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#commentText {
    width: 100%;
    min-height: 100px;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(58, 60, 74, 0.7);
    background-color: rgba(20, 22, 34, 0.7);
    color: #fff;
    resize: vertical;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    line-height: 1.6;
}

#commentText:focus {
    outline: none;
    border-color: #e50914;
    background-color: rgba(20, 22, 34, 0.9);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3), inset 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.comment-submit {
    align-self: flex-end;
    padding: 12px 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e50914, #ff3b30);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.comment-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.comment-submit:hover::before {
    left: 100%;
}

.comment-submit:hover {
    background: linear-gradient(135deg, #ff1a26, #ff4b40);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.comment-submit i {
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comment-submit:hover i {
    transform: translateX(5px);
}

.comment-submit:active {
    transform: translateY(-2px);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, rgba(42, 44, 58, 0.7), rgba(28, 30, 42, 0.7));
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.comment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(229, 9, 20, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.comment-item:hover::before {
    opacity: 1;
}

.comment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(229, 9, 20, 0.2);
    background: linear-gradient(135deg, rgba(45, 47, 59, 0.8), rgba(33, 35, 47, 0.8));
    border-left-color: #e50914;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.comment-item:hover .comment-author {
    color: #e50914;
}

.comment-date {
    font-size: 13px;
    color: #ccc;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-date i {
    color: rgba(229, 9, 20, 0.7);
    font-size: 12px;
}

.comment-date:hover {
    background-color: rgba(229, 9, 20, 0.2);
    color: #fff;
    transform: translateY(-3px);
}

.comment-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid rgba(229, 9, 20, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.comment-item:hover .comment-text {
    border-left-color: rgba(229, 9, 20, 0.7);
    background-color: rgba(0, 0, 0, 0.3);
}

.comment-actions {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-like,
.comment-reply,
.comment-spoiler {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 15px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.comment-like:hover,
.comment-reply:hover {
    color: #fff;
    background-color: rgba(229, 9, 20, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.comment-spoiler:hover {
    color: #fff;
    background-color: rgba(255, 174, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.comment-like i,
.comment-reply i,
.comment-spoiler i {
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comment-like:hover i,
.comment-reply:hover i {
    transform: scale(1.3);
    color: #e50914;
}

.comment-spoiler:hover i {
    transform: scale(1.3);
    color: #ffae00;
}

.comment-text.spoiler {
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    user-select: none;
    position: relative;
}

.comment-text.spoiler::before {
    content: "Spoiler içeriği görmek için tıklayın";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffae00;
    text-shadow: none;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    cursor: pointer;
}

.comment-replies {
    margin-top: 20px;
    margin-left: 30px;
    border-left: 3px solid rgba(229, 9, 20, 0.3);
    padding-left: 30px;
    position: relative;
}

.comment-replies::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #e50914, transparent);
    opacity: 0.7;
}

.comment-item:hover .comment-replies {
    border-left-color: rgba(229, 9, 20, 0.7);
}

.comment-item.reply {
    background: linear-gradient(135deg, rgba(28, 30, 42, 0.7), rgba(20, 22, 34, 0.7));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.comments-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.load-more-comments {
    padding: 14px 30px;
    background: linear-gradient(135deg, rgba(40, 42, 54, 0.8), rgba(28, 30, 42, 0.8));
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.load-more-comments::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.load-more-comments:hover::before {
    left: 100%;
}

.load-more-comments:hover {
    background: linear-gradient(135deg, rgba(50, 52, 64, 0.9), rgba(38, 40, 52, 0.9));
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.2);
}

.load-more-comments i {
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.load-more-comments:hover i {
    transform: translateY(5px) scale(1.2);
    color: #e50914;
}

/* Diğer Bölümler Bölümü */
.episodes-list-section {
    margin-bottom: 60px;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
}

.episodes-list-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(10, 11, 18, 0.3));
    pointer-events: none;
    z-index: -1;
}

.episodes-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.episodes-list-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    position: relative;
}

.episodes-list-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #e50914, transparent);
    border-radius: 3px;
}

/* Diğer Bölümler Bölümü - Modernize Edilmiş */
.other-episodes {
    margin-top: 60px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(28, 30, 42, 0.95), rgba(20, 22, 34, 0.95));
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(229, 9, 20, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.other-episodes:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(229, 9, 20, 0.15);
    transform: translateY(-5px);
}

.other-episodes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e50914, #ff3b30);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.other-episodes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.1), transparent 70%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.section-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2 i {
    color: #e50914;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e50914, transparent);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

.episodes-list-title i {
    color: #e50914;
    text-shadow: 0 0 15px rgba(229, 9, 20, 0.6);
}

.episodes-filter {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(40, 42, 54, 0.7), rgba(28, 30, 42, 0.7));
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.episodes-filter:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(229, 9, 20, 0.2);
    transform: translateY(-3px);
    border-color: rgba(229, 9, 20, 0.3);
}

.filter-label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.filter-select {
    padding: 10px 15px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(28, 30, 42, 0.8), rgba(20, 22, 34, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.filter-select:focus {
    outline: none;
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.episodes-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.episodes-grid::-webkit-scrollbar {
    height: 8px;
}

.episodes-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.episodes-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #e50914, #ff3b30);
    border-radius: 10px;
}

.episodes-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff0a16, #ff4b40);
}

/* Bölüm Kartı */
.episode-card {
    background: linear-gradient(135deg, rgba(40, 42, 54, 0.7), rgba(28, 30, 42, 0.7));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    text-decoration: none;
    color: #fff;
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    height: 280px;
    display: inline-block;
}

.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.episode-card:hover::before {
    opacity: 1;
}

.episode-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.3);
}

.episode-card.active {
    border: 2px solid #e50914;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
    background: linear-gradient(135deg, rgba(45, 47, 59, 0.9), rgba(33, 35, 47, 0.9));
}

.episode-card.active .episode-title {
    color: #e50914;
}

.episode-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    overflow: hidden;
}

.episode-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.episode-card:hover .episode-thumbnail::after {
    opacity: 0.4;
}

.episode-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.episode-card:hover .episode-thumbnail img {
    transform: scale(1.15) rotate(-2deg);
}

.episode-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e50914, #ff3b30);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3), 0 0 10px rgba(229, 9, 20, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay i {
    font-size: 40px;
    color: #fff;
    background-color: rgba(229, 9, 20, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.episode-card:hover .play-overlay {
    opacity: 1;
}

.episode-card:hover .play-overlay i {
    transform: scale(1);
}

.now-playing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(229, 9, 20, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.now-playing i {
    font-size: 30px;
    margin-bottom: 10px;
    background-color: rgba(229, 9, 20, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.now-playing span {
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 4px;
}

.episode-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 120px;
    overflow: hidden;
}

.episode-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.episode-description {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.episode-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: #aaa;
    margin-top: auto;
}

.episode-number {
    color: #e50914;
    font-weight: 500;
}

.episode-duration,
.episode-date {
    position: relative;
}

.episode-duration:before,
.episode-date:before {
    content: '•';
    margin-right: 8px;
    color: #666;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    .details-wrapper {
        flex-direction: column;
    }
    
    .episode-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .episodes-slider {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .controls-main {
        flex-direction: column;
        gap: 10px;
    }
    
    .controls-left, .controls-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .episode-info {
        order: -1;
        margin-bottom: 10px;
        max-width: 100%;
    }
    
    .episodes-slider {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .episode-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}