* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    height: 100vh;
}

#rate-container {
    background-color: white;
    padding: 24px;
    border-radius: 12px;
    width: 33%;
    bottom: 10px;
    position: absolute;
    display: flex;
    gap: 8px;
    flex-direction: column;
    margin: 16px;
    opacity: 0;
    z-index: 10;
    transition: opacity 1s;
}
#rate-container div {
    width: 100%;
    height: 15px;
    background-color: #cccccc;
    border-radius: 8px;
    position: relative;

}
#rate-container div span {
    height: 100%;
    background-color: #595959;
    display: block;
    border-radius: 8px;
    width: 0;
    transition: width .3s
}
#episode-title {
    background-color: #FFFFFF99;
    padding: 24px;
    border-radius: 12px;
    width: fit-content;
    top: 0;
    left: 0;
    position: absolute;
    margin: 16px;
    z-index: 10;
}
#next-title{
    background-color: #FFFFFF99;
    padding: 24px;
    border-radius: 12px;
    width: fit-content;
    bottom: 10px;
    right: 0;
    position: absolute;
    display: flex;
    gap: 8px;
    flex-direction: column;
    margin: 16px;
    z-index: 10;
}