.episode-card, .watch-episode-card {
    background: linear-gradient(145deg, #fff, #fff5e0);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 6px 6px 18px rgba(0,0,0,.1), -3px -3px 12px hsla(0,0%,100%,.7);
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    border-top: 4px solid #f60;
}

.episode-card:before, .watch-episode-card:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 16px;
    background: hsla(0,0%,100%,.2);
    pointer-events: none;
    transform: skewY(-2deg);
}

.episode-card img, .watch-episode-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .3s, box-shadow .3s;
}

.watch-episode-card {
    display: flex;
}

.watch-episode-card img {
    width: 280px;
    height: auto;
    aspect-ratio: 16/9;
    border-right: 2px solid #f60;
}

.episode-card:hover img, .watch-episode-card:hover img {
    transform: scale(1.05);
}

.episode-card:hover, .watch-episode-card:hover {
    transform: translateY(-5px) rotateX(3deg);
    box-shadow: 10px 10px 25px rgba(0,0,0,.2), -5px -5px 15px hsla(0,0%,100%,.5);
}

.episode-info, .watch-episode-info {
    padding: 12px;
    text-align: center;
}

.episode-info h3, .watch-episode-info h4 {
    font-size: 16-18px;
    font-weight: 700;
    color: #f60;
    margin-bottom: 6px;
    text-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.episode-info p, .watch-episode-info p {
    font-size: 14px;
    color: #555;
}

.watch-episode-info {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
