.header-top {
    background: #0e312c;
    padding: 15px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px;
}

.text-accent {
    color: #49d294;
}

.font-bold {
    font-weight: 700;
}

.banner-image {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    max-width: 100%;
    height: auto;
}

.desktop-banner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-banner {
    display: none;
    align-items: center;
    justify-content: center;
}

.clock-box {
    display: none;
}

.has-banner {
    padding-top: 60px;
}

@media (max-width: 768px) {
    .header-top {
        padding: 8px 10px;
        font-size: 14px;
    }

    .header-top .container {
        flex-direction: column;
        gap: 5px;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: flex;
    }

    .banner-image {
        margin-right: 5px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header-top .container {
        padding: 0 20px;
    }

    .header-top {
        font-size: 15px;
    }
}