.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(72px + env(safe-area-inset-bottom));
    background-color: #0b0f1d;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid #1c2233;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 22px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item:hover {
    transform: scale(1.1);
    color: #8aa8ff;
}

.nav-item svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
    stroke: white;
    fill: none;
}