body {
    background: #0b0b0b;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.binge-details-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.binge-details-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.binge-details-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 11, 11, 1) 0%,
        rgba(11, 11, 11, 0.6) 50%,
        rgba(11, 11, 11, 0.3) 100%
    );
}

.banner-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
}

.banner-content h1 {
    font-size: 56px;
    margin: 0 0 15px;
    color: #ffcc00;
}

.banner-content p {
    font-size: 20px;
    color: #dddddd;
    margin-bottom: 30px;
}

.banner-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-stat {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid #2b2b2b;
    border-radius: 16px;
    padding: 18px 24px;
    min-width: 180px;
    backdrop-filter: blur(6px);
}

.banner-stat span {
    display: block;
    color: #aaaaaa;
    font-size: 15px;
    margin-bottom: 10px;
}

.banner-stat strong {
    color: #ffcc00;
    font-size: 28px;
}

.container-binge-details {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

.episodes-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.episode-card {
    background: #161616;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    padding: 25px;
    transition: 0.2s ease;
}

.episode-card:hover {
    transform: translateY(-3px);
    border-color: #ffcc00;
}

.episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.episode-header h2 {
    margin: 0 0 8px;
    color: #ffcc00;
    font-size: 28px;
}

.episode-header p {
    margin: 0;
    color: #bbbbbb;
    font-size: 17px;
}

.episode-time {
    background: #202020;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
}

.episode-infos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.episode-infos span {
    background: #202020;
    padding: 10px 15px;
    border-radius: 10px;
    color: #dddddd;
    font-size: 15px;
}

.pause-info {
    margin-top: 20px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.25);
    color: #ffcc00;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
}

@media screen and (max-width: 900px) {

    .binge-details-banner {
        height: 400px;
    }

    .banner-content {
        left: 25px;
        right: 25px;
        bottom: 30px;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .banner-stat {
        min-width: 140px;
        flex: 1;
    }

    .banner-stat strong {
        font-size: 22px;
    }

    .episode-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .episode-time {
        width: 100%;
        text-align: center;
    }

}

@media screen and (max-width: 600px) {

    .binge-details-banner {
        height: 320px;
    }

    .banner-content h1 {
        font-size: 30px;
    }

    .banner-stats {
        flex-direction: column;
    }

    .episode-infos {
        flex-direction: column;
    }

}