body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: #b30000;
    color: #fff;
}

/* TOP BAR */
.top-bar {
    position: relative;
    background: #880000;
    padding: 7px 16px 7px 16px;
    font-size: 13px;
    border-bottom: 1.5px solid #d72626;
    letter-spacing: 0.5px;
    min-height: 45px;
}

.top-bar-menu {
    text-align: center;
    color: #ffd700;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.top-bar-menu span {
    color: #ffd700;
    margin: 0 4px;
    white-space: nowrap;
    font-size: 13px;
}

.top-bar-kanan {
    position: absolute;
    top: 7px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
}

.btn-wa {
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    padding: 7px 13px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: background 0.17s;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.10);
    white-space: nowrap;
}

.btn-wa:hover {
    background: #128c7e;
}

.tanggal {
    color: #ffd700;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-top: 2px;
    white-space: nowrap;
    display: block;
    text-align: right;
    line-height: 1.3;
}

/* NAVBAR */
.navbar {
    background: #c40000;
    border-bottom: 2.5px solid #d72626;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09);
    position: relative;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 12px;
    height: 56px;
    overflow: hidden;
    flex-wrap: nowrap;
    min-width: 0;
    box-sizing: border-box;
}

.logo {
    height: 34px;
    margin-right: 18px;
    display: block;
    flex-shrink: 0;
}

.menu {
    display: flex;
    gap: 6px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 8px 9px;
    border-radius: 8px;
    font-size: 15px;
    letter-spacing: 0.1px;
    transition: background 0.14s, color 0.14s;
    display: flex;
    align-items: center;
    line-height: 1.2;
    flex-shrink: 0;
    white-space: nowrap;
}

.menu a:hover,
.menu .active {
    background: #d72626;
    color: #ffd700;
}

/* MARQUEE */
.banner-marquee {
    background: #fdb800;
    color: #b30000;
    padding: 8px 0 8px 20px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
}

.banner-marquee i {
    margin-right: 10px;
    font-size: 18px;
    color: #b30000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .top-bar {
        padding: 7px 6px 32px 6px;
    }

    .top-bar-menu {
        font-size: 12px;
    }

    .btn-wa {
        font-size: 11px;
        padding: 5px 8px;
    }

    .top-bar-kanan {
        top: unset;
        bottom: 3px;
        right: 10px;
    }

    .tanggal {
        font-size: 10px;
    }

    .nav-content {
        height: auto;
        padding: 0 5px;
    }

    .logo {
        height: 26px;
        margin-right: 7px;
    }

    .menu a {
        font-size: 12px;
        padding: 6px 3px;
    }
}

@media (max-width: 550px) {
    .logo {
        height: 20px;
        margin-right: 3px;
    }

    .menu a {
        font-size: 10px;
        padding: 3px 2px;
    }

    .banner-marquee {
        font-size: 12px;
        padding-left: 7px;
    }

    .top-bar-kanan .tanggal {
        font-size: 9px;
    }
}