.header-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-yellow);
  min-height: 146px;
  overflow: hidden;
}

.header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/header/Rectangle 35.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,1) 70%, rgba(0,0,0,1) 100%);
}

.header-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 180px;
}

.header-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #febd69 30%, rgba(254, 189, 105, 0) 70%);
}

.banner-left-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 435px;
    z-index: 0;
}

.banner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.header-logo {
    width: 80px;
    height: auto;
}

.header-titles {
    color: #fff;
}

.title-main {
    color: #1174B9;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.title-sub {
    color: #DD1923;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.title-description {
    color: #1174B9;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.main-navigation {
    background-color: var(--primary-red); /* màu đỏ nền */
    font-family: 'Inter', 'SF Pro', sans-serif !important;
    font-size: 15px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .nav-links li {
        position: relative;
    }

.nav-link {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 54px;
    color: #fff;
    text-decoration: none;
    /*border-bottom: 2px solid transparent;*/
    transition: background-color 0.2s ease, border-bottom-color 0.2s ease;
}


    .nav-link img {
        margin-left: 6px;
        width: 10px;
        height: auto;
        filter: brightness(0) invert(1); 
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.10);
        border-bottom-color: #FFF;
        height: 54px;
        color: #fff;
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.10);
        border-bottom-color: #FFF;
        font-weight: 600;
        height: 54px;
    }


    .nav-link,
    .nav-link:visited {
        color: #fff;
        text-decoration: none;
    }

.user-info {
    display: none;
    white-space: nowrap;
}

/* Xóa border cho mục cuối */
.nav-links li:last-child .nav-link {
    border-right: none;
}

/* Auth links (Đăng nhập / Đăng ký) */
.auth-links {
    display: flex;
    padding: 12px 0;
    justify-content: center;
    align-items: center;
    gap: 11px;
    border: none;
}

.auth-links img {
    width: 21px;
    height: 21px;
}

    .auth-links a {
        color: #FFF;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        white-space: nowrap;
    }

        .auth-links a:hover {
            text-decoration: none;
        }

    .auth-links span {
        color: #fff;
    }


