:root {
    --icon: rgba(15, 23, 42, 0.72);
    --nav-bg: rgba(255, 255, 255, 0.78);
    --nav-line: rgba(15, 23, 42, 0.10);
    --nav-shadow: 0 18px 52px rgba(15, 23, 42, 0.12);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.site-header.is-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 9999;
    pointer-events: none;
    margin-bottom: -76px; /* Offset dari tinggi header agar tidak menggeser hero ke bawah */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-hidden {
    transform: translateY(-150%);
}

.header-inner {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--nav-line);
    border-radius: 999px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

/* Floating state when scrolled (controlled by JS if needed, but sticky works well) */
.site-header.is-stuck .header-inner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

.nav-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.nav-search-mini {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.10);
    color: rgba(15, 23, 42, 0.72);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.10);
}

.nav-search-mini:focus {
    outline: none;
}

.nav-search-mini:focus-visible {
    box-shadow: 0 0 0 4px rgba(58, 168, 255, 0.22), 0 10px 26px rgba(15, 23, 42, 0.10);
}

.page-home .search {
    position: relative;
    z-index: 4;
}

.search-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    max-height: 340px;
    overflow: auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18);
    padding: 8px;
    z-index: 99999;
}

.search-suggest .ss-empty {
    padding: 14px 12px;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 700;
    font-size: 13px;
}

.search-suggest .ss-item {
    display: grid;
    gap: 2px;
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: rgba(15, 23, 42, 0.92);
    border: 1px solid transparent;
}

.search-suggest .ss-item:hover,
.search-suggest .ss-item.is-active {
    background: rgba(234, 246, 255, 0.85);
    border-color: rgba(58, 168, 255, 0.28);
}

.search-suggest .ss-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 800;
}

.search-suggest .ss-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: rgba(15, 23, 42, 0.72);
}

.search-suggest .ss-title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.1px;
}

.nav-menu {
    position: relative;
}

.btn-menu {
    padding-inline: 14px;
    min-width: 118px;
}

.brand {
    font-weight: 800;
    font-size: 18px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 24px;
}

.header-actions {
    justify-self: end;
    white-space: nowrap;
}

.menu-icon,
.menu-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-popover {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 240px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--nav-line);
    box-shadow: var(--nav-shadow);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    backdrop-filter: blur(10px);
}

.site-header.is-open .menu-popover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 12px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.86);
}

.menu-item:hover {
    background: rgba(234, 246, 255, 0.85);
}

.mi-ic {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(58, 168, 255, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.78);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 720px;
    padding: 9px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.nav-search input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: rgba(15, 23, 42, 0.88);
    min-width: 0;
}

.nav-search-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    color: rgba(15, 23, 42, 0.72);
    cursor: pointer;
    flex: none;
    padding: 0;
    line-height: 0;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.nav-search-btn:hover {
    background: rgba(58, 168, 255, 0.14);
}

.nav-search-btn svg {
    display: block;
    stroke: currentColor;
}

.nav-search-btn:focus {
    outline: none;
}

.nav-search-btn:focus-visible {
    box-shadow: 0 0 0 4px rgba(58, 168, 255, 0.22);
}

.nav-search input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

.nav-search input[type="search"]::-webkit-search-decoration,
.nav-search input[type="search"]::-webkit-search-cancel-button,
.nav-search input[type="search"]::-webkit-search-results-button,
.nav-search input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.hero-wrapper {
    position: relative;
    z-index: 1; /* Supaya hero tidak menutupi header */
}

.hero {
    position: relative;
    padding-top: 100px; /* Ruang untuk header floating */
    padding-bottom: 28px;
    z-index: 1; /* Pastikan hero berada di bawah header */
}

.hero-inner {
    z-index: 2;
    padding-bottom: 70px;
}

.page-home .hero-inner {
    padding-bottom: 34px;
}

.page-home .hero-visual {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.page-home {
    --hero-illust-offset: 22px;
}

.page-home .hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: translateY(var(--hero-illust-offset));
    animation: heroFloat 7.5s ease-in-out infinite;
}

.page-home .hero-illust {
    transform: translateY(var(--hero-illust-offset));
    animation: heroFloat 7.5s ease-in-out infinite;
}

.page-home .hero-wave {
    z-index: 1;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(calc(var(--hero-illust-offset) - 3px));
    }
    50% {
        transform: translateY(calc(var(--hero-illust-offset) + 3px));
    }
}

.hero-wave {
    z-index: 1;
    pointer-events: none;
}

.cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--icon);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 22px 22px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 22px 22px;
    opacity: 0.92;
}

.i-test::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a2 2 0 0 1 2 2v16l-3-2l-3 2l-3-2l-3 2V4a2 2 0 0 1 2-2Zm2 6h6v2H9V8Zm0 4h6v2H9v-2Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h10a2 2 0 0 1 2 2v16l-3-2l-3 2l-3-2l-3 2V4a2 2 0 0 1 2-2Zm2 6h6v2H9V8Zm0 4h6v2H9v-2Z'/%3E%3C/svg%3E");
}

.i-campus::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 2 8l10 5 10-5-10-5Zm-7 8v8h14v-8l-7 3.5L5 11Zm2 2h2v4H7v-4Zm4 0h2v4h-2v-4Zm4 0h2v4h-2v-4Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 2 8l10 5 10-5-10-5Zm-7 8v8h14v-8l-7 3.5L5 11Zm2 2h2v4H7v-4Zm4 0h2v4h-2v-4Zm4 0h2v4h-2v-4Z'/%3E%3C/svg%3E");
}

.i-major::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 1 9l11 6 9-4.9V17h2V9L12 3Zm0 9.8L5.1 9 12 5.2 18.9 9 12 12.8ZM4 13.5l8 4.4 8-4.4V16l-8 4.4L4 16v-2.5Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 1 9l11 6 9-4.9V17h2V9L12 3Zm0 9.8L5.1 9 12 5.2 18.9 9 12 12.8ZM4 13.5l8 4.4 8-4.4V16l-8 4.4L4 16v-2.5Z'/%3E%3C/svg%3E");
}

.i-career::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v3H2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2Zm4 4V4h-4v2h4Zm10 9v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-5h10v1h4v-1h10Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 2h4a2 2 0 0 1 2 2v2h4a2 2 0 0 1 2 2v3H2V8a2 2 0 0 1 2-2h4V4a2 2 0 0 1 2-2Zm4 4V4h-4v2h4Zm10 9v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-5h10v1h4v-1h10Z'/%3E%3C/svg%3E");
}

.i-scholar::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 1 7l11 5 9-4.09V17h2V7L12 2Zm0 12L4 10v8l8 4 8-4v-8l-8 4Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 1 7l11 5 9-4.09V17h2V7L12 2Zm0 12L4 10v8l8 4 8-4v-8l-8 4Z'/%3E%3C/svg%3E");
}

.i-tryout::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16l4-2 4 2 4-2 4 2V8l-6-6Zm0 2.5L18.5 9H14V4.5ZM7.5 12h9v2h-9v-2Zm0 4h7v2h-7v-2Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 2H6a2 2 0 0 0-2 2v16l4-2 4 2 4-2 4 2V8l-6-6Zm0 2.5L18.5 9H14V4.5ZM7.5 12h9v2h-9v-2Zm0 4h7v2h-7v-2Z'/%3E%3C/svg%3E");
}

@media (max-width: 1020px) {
    .cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nav-search {
        width: min(520px, 100%);
    }
}

@media (max-width: 520px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-top {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .nav-search {
        display: none;
    }

    .nav-search-mini {
        display: inline-flex;
    }

    .page-search .nav-search {
        display: flex;
    }

    .page-search .nav-search-mini {
        display: none;
    }

    .page-search .brand-text {
        display: none;
    }

    .btn-menu {
        min-width: 0;
        padding-inline: 12px;
    }

    .btn-menu span:nth-child(2) {
        display: none;
    }

    .menu-popover {
        width: 250px;
    }
}

@media (max-width: 420px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.cards-categories {
    gap: 18px;
}

.cards-categories .card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 10px;
    justify-items: center;
}

.cards-categories .card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: transparent;
    background: transparent;
}

.cards-categories .card-art {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
}

.cards-categories .card-svg {
    display: block;
    width: 100%;
    height: auto;
}

.cards-categories .card-label {
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.15px;
    color: rgba(15, 23, 42, 0.85);
    text-align: center;
}

@media (max-width: 1020px) {
    .cards-categories {
        gap: 14px;
    }
}

.page {
    padding: 130px 0 0;
}

.page-head {
    padding: 18px 0 12px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 700;
    font-size: 13px;
}

.crumb:hover {
    color: rgba(15, 23, 42, 0.86);
}

.crumb-sep {
    opacity: 0.55;
}

.crumb-current {
    color: rgba(15, 23, 42, 0.86);
}

.page-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.page-title {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.35px;
}

.btn-filter {
    padding-inline: 14px;
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 0 36px;
}

.major-grid .thumb-badge {
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.78);
}

.campus-card {
    display: grid;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.campus-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.campus-thumb {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
}

.campus-thumb-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.thumb-svg {
    display: block;
    width: 100%;
    height: auto;
}

.thumb-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.campus-body {
    padding: 14px 14px 16px;
    display: grid;
    gap: 10px;
}

.campus-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.campus-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 6px;
}

.campus-name {
    font-weight: 900;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.campus-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: rgba(15, 23, 42, 0.68);
    font-weight: 700;
    font-size: 12px;
}

.campus-meta-big {
    font-size: 13px;
}

.meta-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(234, 246, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.meta-dot {
    opacity: 0.55;
}

.campus-desc {
    color: rgba(15, 23, 42, 0.62);
    font-size: 13px;
    line-height: 1.4;
}

.campus-desc-big {
    margin: 10px 0 0;
    max-width: 70ch;
}

.campus-hero {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.10);
}

.campus-hero-svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.campus-hero-img {
    width: 100%;
    height: 260px;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}

.campus-hero-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.campus-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    display: block;
}

.campus-contact {
    padding-top: 20px;
}

.campus-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.campus-info-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 10px;
}

.campus-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.campus-info-title {
    font-weight: 900;
    letter-spacing: -0.2px;
}

.campus-info-link {
    color: rgba(15, 23, 42, 0.80);
    text-decoration: none;
    font-weight: 750;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.campus-info-link:hover {
    text-decoration: underline;
}

.campus-info-empty {
    color: rgba(15, 23, 42, 0.58);
    font-weight: 650;
    font-size: 13px;
}

.campus-map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.03);
    aspect-ratio: 16 / 9;
}

.campus-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.section-title {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -0.35px;
}

.section-subtitle {
    margin: 0;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 600;
}

.programs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    margin-top: 18px;
}

.programs-sidebar {
    display: grid;
    gap: 12px;
}

.level-btn {
    width: 100%;
    text-align: left;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 900;
    color: rgba(15, 23, 42, 0.84);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.level-btn.is-active {
    background: rgba(234, 246, 255, 0.95);
    border-color: rgba(58, 168, 255, 0.35);
    box-shadow: 0 18px 44px rgba(58, 168, 255, 0.16);
}

.programs-main {
    display: grid;
    gap: 12px;
}

.programs-search {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.10);
    padding: 12px 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.programs-search input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: rgba(15, 23, 42, 0.86);
    padding-right: 34px;
}

.ps-ic {
    position: absolute;
    right: 12px;
    color: rgba(15, 23, 42, 0.58);
}

.programs-panel {
    display: none;
}

.programs-panel.is-active {
    display: grid;
    gap: 12px;
}

.program-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.program-title {
    font-weight: 900;
    letter-spacing: -0.15px;
}

.program-desc {
    margin-top: 8px;
    color: rgba(15, 23, 42, 0.62);
    font-size: 13px;
    line-height: 1.4;
    max-width: 72ch;
}

.btn-small {
    padding: 10px 12px;
    font-size: 13px;
}

.program-empty {
    padding: 16px 14px;
    border-radius: 16px;
    border: 1px dashed rgba(15, 23, 42, 0.18);
    color: rgba(15, 23, 42, 0.62);
    background: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

@media (max-width: 1020px) {
    .campus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .campus-hero {
        grid-template-columns: 1fr;
    }

    .campus-contact-grid {
        grid-template-columns: 1fr;
    }

    .programs-layout {
        grid-template-columns: 1fr;
    }

    .programs-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .campus-grid {
        grid-template-columns: 1fr;
    }

    .programs-sidebar {
        grid-template-columns: 1fr;
    }
}

.section-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.fav-section .section-head p {
    margin-bottom: 0;
}

.fav-carousel {
    position: relative;
    margin-top: 16px;
    padding: 0 12px;
}

.fav-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.fav-track::-webkit-scrollbar {
    height: 10px;
}

.fav-track::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.14);
    border-radius: 999px;
}

.fav-card {
    flex: 0 0 auto;
    width: 310px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    scroll-snap-align: start;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.fav-card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.fav-thumb {
    position: relative;
}

.fav-svg {
    display: block;
    width: 100%;
    height: auto;
}

.fav-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.fav-body {
    padding: 14px 14px 16px;
    display: grid;
    gap: 10px;
}

.fav-name {
    font-weight: 900;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.fav-desc {
    color: rgba(15, 23, 42, 0.62);
    font-size: 13px;
    line-height: 1.4;
}

.fav-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-52%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    display: grid;
    place-items: center;
    color: rgba(15, 23, 42, 0.72);
    cursor: pointer;
    z-index: 2;
}

.fav-nav:hover {
    background: rgba(255, 255, 255, 1);
}

.fav-nav.prev {
    left: -8px;
}

.fav-nav.next {
    right: -8px;
}

.major-page .page-head {
    padding-top: 18px;
}

.major-hero {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.major-cover {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.75);
}

.major-cover-svg {
    width: 100%;
    height: auto;
    display: block;
}

.major-hero-body {
    display: grid;
    gap: 8px;
    padding: 0 4px;
}

.major-group {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.78);
    background: rgba(234, 246, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.major-content {
    padding: 18px 0 10px;
    display: grid;
    gap: 16px;
}

.major-block {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.major-block-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.major-block-title {
    font-weight: 900;
    letter-spacing: -0.2px;
    font-size: 16px;
}

.major-block-subtitle {
    margin-top: 6px;
    color: rgba(15, 23, 42, 0.60);
    font-weight: 650;
    font-size: 13px;
}

.major-text {
    margin-top: 12px;
    color: rgba(15, 23, 42, 0.70);
    font-size: 14px;
    line-height: 1.6;
}

.career-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.career-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.76);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 23, 42, 0.10);
}

.major-reco {
    padding-top: 26px;
}

@media (max-width: 1020px) {
    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .fav-nav {
        display: none;
    }

    .major-block-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.major-home-card {
    flex: 0 0 auto;
    width: 280px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.major-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
    border-color: rgba(58, 168, 255, 0.25);
}

.major-home-thumb {
    position: relative;
    height: 150px;
    background: #f1f5f9;
}

.major-home-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.major-home-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #ff7f2a;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.major-home-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.major-home-content h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    color: rgba(15, 23, 42, 0.9);
    line-height: 1.3;
}

.major-home-content p {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.62);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 0 36px;
}

.scholarship-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    transition: transform 160ms ease, box-shadow 160ms ease;
    text-decoration: none;
    color: inherit;
}

.scholarship-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
    border-color: rgba(58, 168, 255, 0.25);
}

.scholarship-thumb {
    position: relative;
    height: 180px;
    background: #f1f5f9;
}

.scholarship-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scholarship-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scholarship-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
    color: rgba(15, 23, 42, 0.9);
}

.scholarship-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 600;
    margin-top: auto;
}

.scholarship-detail-hero {
    margin-top: 18px;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    background: #f1f5f9;
}

.scholarship-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scholarship-detail-header {
    margin-top: 24px;
}

.scholarship-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.meta-label {
    color: rgba(15, 23, 42, 0.6);
    font-weight: 600;
}

.meta-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.9);
}

.btn-orange {
    background: #ff7f2a;
    color: #fff;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-orange:hover {
    background: #e66a1b;
}

.scholarship-content {
    margin-top: 36px;
    display: grid;
    gap: 36px;
}

.block-title {
    font-size: 20px;
    margin: 0 0 8px;
}

.block-desc {
    color: rgba(15, 23, 42, 0.6);
    margin: 0 0 24px;
}

.block-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.8);
}

.block-text p {
    margin-bottom: 16px;
}

.block-list {
    padding-left: 20px;
    margin-bottom: 16px;
}

.block-list li {
    margin-bottom: 8px;
}

.text-small {
    font-size: 13px;
    font-style: italic;
    color: rgba(15, 23, 42, 0.5);
}

.tryout-banner {
    background: linear-gradient(135deg, #ff9f43 0%, #ff7f2a 100%);
    border-radius: 24px;
    padding: 36px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.tryout-content {
    flex: 1;
    z-index: 2;
}

.tryout-content h3 {
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 800;
}

.tryout-content p {
    margin: 0 0 24px;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 50ch;
}

.tryout-img {
    width: 200px;
    height: 140px;
    flex: none;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-3deg);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.tryout-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-white {
    background: #fff;
    color: #ff7f2a;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    background: #f8fafc;
}

@media (max-width: 1020px) {
    .scholarship-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .tryout-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    
    .tryout-img {
        display: none;
    }
}

@media (max-width: 520px) {
    .scholarship-grid {
        grid-template-columns: 1fr;
    }
    
    .scholarship-detail-hero {
        height: 200px;
    }
}

.tryout-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 0 36px;
}

.tryout-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    transition: transform 160ms ease, box-shadow 160ms ease;
    text-decoration: none;
    color: inherit;
}

.tryout-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
    border-color: rgba(58, 168, 255, 0.25);
}

.tryout-thumb {
    position: relative;
    height: 160px;
    background: #f1f5f9;
}

.tryout-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tryout-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.badge-free {
    background: #2ecc71;
    color: #fff;
}

.badge-paid {
    background: #fff;
    color: #333;
}

.tryout-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tryout-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    line-height: 1.4;
    color: rgba(15, 23, 42, 0.9);
}

.tryout-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 600;
}

.tryout-btn {
    margin-top: auto;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    background: rgba(58, 168, 255, 0.1);
    color: #3aa8ff;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s;
}

.tryout-card:hover .tryout-btn {
    background: #3aa8ff;
    color: #fff;
}

/* Tryout Detail */
.tryout-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    margin-top: 24px;
}

.tryout-hero {
    border-radius: 24px;
    overflow: hidden;
    height: 360px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.10);
}

.tryout-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tryout-section {
    margin-top: 36px;
}

.tryout-h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 16px;
    color: rgba(15, 23, 42, 0.9);
}

.tryout-section p {
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.75);
    margin-bottom: 16px;
}

.tryout-materials {
    display: grid;
    gap: 16px;
}

.material-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.material-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(58, 168, 255, 0.15);
    color: #3aa8ff;
    display: grid;
    place-items: center;
    flex: none;
}

.tryout-rules {
    padding-left: 20px;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
}

.tryout-rules li {
    margin-bottom: 8px;
}

.tryout-sticky-card {
    position: sticky;
    top: 100px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.tryout-price-tag {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.6);
    font-weight: 600;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 28px;
    font-weight: 900;
    color: #ff7f2a;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 14px;
    font-size: 16px;
}

.tryout-info-list {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(15, 23, 42, 0.75);
    font-size: 14px;
}

.divider {
    border: 0;
    height: 1px;
    background: rgba(15, 23, 42, 0.1);
    margin: 24px 0;
}

.tryout-benefits strong {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

.tryout-benefits ul {
    padding-left: 20px;
    color: rgba(15, 23, 42, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.tryout-related {
    margin-top: 60px;
    padding-top: 36px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
}

@media (max-width: 1020px) {
    .tryout-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .tryout-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .tryout-hero {
        height: 280px;
    }
}

@media (max-width: 520px) {
    .tryout-grid {
        grid-template-columns: 1fr;
    }
    
    .tryout-hero {
        height: 200px;
    }
}

.home-mobile-topbar {
    display: none;
}

.page-home .hero-bg {
    background:
        radial-gradient(1200px 520px at 22% 26%, rgba(255, 255, 255, 0.16), transparent 60%),
        radial-gradient(900px 520px at 85% 22%, rgba(255, 255, 255, 0.10), transparent 60%),
        linear-gradient(
            180deg,
            var(--home-hero-grad-start, #7bc7ff) 0%,
            var(--home-hero-grad-mid, #a7d8ff) 70%,
            var(--home-hero-grad-end, #f3fbff) 100%
        );
    filter: saturate(1.06);
}

@media (max-width: 520px) {
    .page-home .site-header {
        display: none;
    }

    .page-home .hero {
        padding-top: 26px;
        padding-bottom: 18px;
    }

    .page-home .hero-inner {
        padding-bottom: 24px;
    }

    .page-home .home-mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 18px;
    }

    .page-home .home-mobile-brand {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .page-home .home-mobile-logo {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.45);
        position: relative;
        overflow: hidden;
    }

    .page-home .home-mobile-logo::after {
        content: "";
        position: absolute;
        inset: -20px;
        background: radial-gradient(circle at 30% 25%, rgba(58, 168, 255, 0.65), transparent 55%);
        transform: rotate(18deg);
        opacity: 0.85;
    }

    .page-home .pill {
        display: none;
    }

    .page-home .hero-copy {
        text-align: center;
    }

    .page-home .hero-copy h1 {
        color: rgba(255, 255, 255, 0.96);
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.3px;
        margin: 10px 0 8px;
    }

    .page-home .lead {
        color: rgba(255, 255, 255, 0.88);
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 52ch;
        margin-inline: auto;
    }

    .page-home .hero-visual {
        display: none;
    }

    .page-home .search {
        position: relative;
        flex-direction: row;
        align-items: center;
        border-radius: 16px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.96);
        gap: 0;
    }

    .page-home .search input {
        padding: 12px 52px 12px 12px;
        font-size: 15px;
    }

    .page-home .btn-search {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        min-width: 0;
        padding: 0;
        border-radius: 999px;
        background: transparent;
        box-shadow: none;
        border: 0;
        color: rgba(15, 23, 42, 0.68);
    }

    .page-home .btn-search-text {
        display: none;
    }

    .page-home .quick-links {
        display: none;
    }

    .page-home .section {
        padding: 28px 0;
    }

    .page-home .section-categories .section-head {
        display: none;
    }

    .page-home .cards.cards-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .page-home .cards-categories .card-art {
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
    }

    .page-home .cards-categories .card-label {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .page-home .cards.cards-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 520px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
        padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.92);
        border-top: 1px solid rgba(15, 23, 42, 0.10);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .mobile-bottom-nav .mbn-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 6px 4px;
        border-radius: 14px;
        text-decoration: none;
        color: rgba(15, 23, 42, 0.55);
        font-weight: 800;
        font-size: 11px;
        letter-spacing: -0.1px;
        transition: background 160ms ease, color 160ms ease, transform 160ms ease;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-bottom-nav .mbn-item svg {
        display: block;
    }

    .mobile-bottom-nav .mbn-item.is-active {
        color: var(--blue-500);
    }

    .mobile-bottom-nav .mbn-item:active {
        transform: translateY(1px);
    }

    .mobile-bottom-nav .mbn-item:hover {
        background: rgba(15, 23, 42, 0.05);
    }
}
