body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white !important;
    color: #333;
}

.unidrama-page {
    max-width: 100%;
    overflow-x: hidden;
    
}

.bottom-nav a.active {
    color: white !important;
}

.new-unidrama-header {
    width: 100%;
    position: relative;
    z-index: 10;
}

.header-top-pink {
    background-color: #ff007f;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

.unidrama-logo-main {
    height: 40px;
    width: auto;
}

.header-bottom-yellow {
    background-color: #fdd835;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.bottom-nav li {
    margin: 0 10px;
}

.bottom-nav li:not(:first-child)::before {
    content: "|";
    color: #ff007f;
    margin-right: 20px;
    font-weight: bold;
}

.bottom-nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.unidrama-hero-section {
    width: 100%;
    line-height: 0;
    margin-top: -5%;
    position: relative;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

.unidrama-footer {
    background-color: black;
    padding: 30px 20px 90px;
    text-align: center;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 25px;
    width: auto;
}

@media (max-width: 768px) {
    .bottom-nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 5px 0;
    }

    .bottom-nav li:not(:first-child)::before {
        display: none;
    }

    .unidrama-logo-main {
        height: 20px;
        width: auto;
    }

}