.voltar{
    color: #f5f2f2;
    text-decoration: none;
    font-size: 14px;
}

.episode-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(140px, ifr));
   gap: 15px;
}

.episode-card{
    padding: 15px;
    background-color: #222e66;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: background o.2s, transform 0.2s;
}

.episode-card:hover {
    background: #1e293b;
    transform: scale(1.05);
}

.episode-link{
    text-decoration: none;
    color: inherit;
}

body {
    background: #000000;
    color: #f8f3f3;
    
}