* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
}

/* Image */
.image-container {
    margin: 20px 0;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Next Button */
.next-episode-btn {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.next-episode-btn:hover {
    background-color: #45a049;
}

/* Menu & Sidebar */
.my-menu, 
.my-menu *, 
.my-sidebar,
.my-sidebar * {
    all: unset;
    box-sizing: border-box;
}

.my-menu {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10001;
    background-color: #fff;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
}

.my-menu-icon {
    display: block;
    width: 28px;
    height: 28px;
}

.my-sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.3);
    z-index: 10000;
    padding-top: 60px;
    transition: left 0.3s ease;
}

.my-sidebar.open {
    left: 0;
}

.my-sidebar-btn {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.my-sidebar-btn:hover {
    background-color: #f0f0f0;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 22px;
    }
    .my-sidebar {
        width: 200px;
    }
    .my-menu-icon {
        width: 24px;
        height: 24px;
    }
}
