.top-header {
    width: 100%;
    height: 63px;
    background: linear-gradient(90deg, #17375e, #1f4b85);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-size: 14px;
    position: fixed;
    top: 0;
    z-index: 60;
    transition: all 0.3s ease;
}

/* LEFT & RIGHT */
.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LINK STYLE */
.top-header a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* ICON */
.top-header i {
    margin-right: 6px;
    font-size: 15px;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.top-header a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.top-header a:hover::after {
    width: 100%;
}

.top-header a:hover {
    color: #dbe9ff;
}

.top-header a:hover i {
    transform: scale(1.15);
}

/* SEPARATOR */
.top-header-left span {
    opacity: 0.6;
}

/* =========================
   📱 RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {
    .top-header {
        height: auto;
        padding: calc(env(safe-area-inset-top) + 8px) 12px 8px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-header-left,
    .top-header-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 12px;
        gap: 8px;
    }

    .top-header-left span {
        display: none;
    }
}


/* EXTRA SMALL DEVICE */
@media (max-width: 480px) {
    .top-header a span {
        display: none;
    }

    .top-header i {
        font-size: 16px;
    }
}
