body {
    margin: 0;
    padding: 0;
    font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
#map {
    position: absolute;
    top: 0; bottom: 0;
    width: 100%; height: 100%;
    transition: margin-left 0.3s ease-in-out;
    z-index: -1;
}
.mapboxgl-popup-content {
    font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
}
.maplibregl-popup-content {
    font-family: "Onest", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    background: #282a2f;
    color: #bfbfc1;
    border-radius: 10px;
    padding: 15px 20px;
}
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip,
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip,
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
    border-top-color: #282a2f !important;
}
.maplibregl-popup-anchor-top .maplibregl-popup-tip,
.maplibregl-popup-anchor-top-left .maplibregl-popup-tip,
.maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
    border-bottom-color: #282a2f !important;
}
.maplibregl-popup-anchor-left .maplibregl-popup-tip {
    border-right-color: #282a2f !important;
}
.maplibregl-popup-anchor-right .maplibregl-popup-tip {
    border-left-color: #282a2f !important;
}
.menu-toggle {
    position: fixed;
    top: 25px;
    left: 25px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    color: white;
    overflow: hidden;
}
.side-menu {
    position: fixed;
    top: 0;
    left: -500px;
    width: 450px;
    height: 100%;
    background-color: #3c3f47;
    color: white;
    transition: left 0.3s ease;
    border-radius: 0 15px 15px 0;
    z-index: 10000;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) #3c3f47;
}
.side-menu.open {
    left: 0;
}
.menu-header {
    display: flex;
    align-items: center;
    padding: 20px;
}
.menu-header .logo svg {
    width: 50px;
    height: auto;
}
.close-menu {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}
.menu-socials {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
.menu-socials img {
    height: 40px;
}
.menu-section {
    padding: 10px 20px;
}
.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 8px;
    color: #e6e6e6;
    text-decoration: none;
}
.menu-item:hover {
    background: #4a4d57;
}
.menu-title {
    padding: 15px 20px 8px;
    font-size: 13px;
    color: #a0a0a0;
    text-align: center;
}
.card {
    width: 100%;
    box-sizing: border-box;

    margin: 0 16px;
    padding: 12px;
    margin-top: 1px;
    margin-bottom: 1px;

    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.08);

    display: flex;
    justify-content: space-evenly;

    align-items: center;
    text-decoration: none;
}
#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 10000;
}
.notification {
    bottom: 20px;
    right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;

    display: flex;
    align-items: center;
    opacity: 0;
    flex-direction: column;
    gap: 10px;

    transform: translateX(120%) scale(0.95);
    transition:
        transform 0.45s cubic-bezier(.4,0,.2,1),
        opacity 0.3s ease;

    width: 320px;
    background: #3c3f47;
    border-radius: 15px;
}
.notification.AC { color: #48ad23; }
.notification.MD { color: #d1ab15; }
.notification.HD { color: #bf1717; }
.notification.default { color: #2e86d8; }

.notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.notification.hide {
    transform: translateX(120%) scale(0.95);
    opacity: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;

    margin-bottom: -12px;
}

.notification-subtitle {
    font-weight: 600;
    font-size: 14px;
    line-height: 0.7;
    color: #a0a0a0;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 0.8;
}

.notification-close {
    cursor: pointer;
    opacity: 0.6;
    font-size: 14px;
    padding: 4px;
    line-height: 1;
    color: #e6e6e6;
}

.notification-close:hover {
    opacity: 1;
}

.notification-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
    word-break: break-word;
    color: #e6e6e6;
}

.notification-progress {
    height: 4px;
    width: 90%;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.notification-progress-bar {
    height: 100%;
    width: 90%;
    transform-origin: left;
    background: currentColor;
    transform: scaleX(1);
}

@media screen and (max-width: 600px) {
    .menu-toggle {
        position: fixed;
        top: 25px;
        left: 25px;
        width: 48px;
        height: 48px;
        cursor: pointer;
        z-index: 9999;
        color: white;
        overflow: hidden;
    }
    .side-menu {
        position: fixed;
        top: 0;
        left: -600px;
        width: 100%;
        height: 100%;
        background-color: #3c3f47;
        color: white;
        transition: left 0.3s ease;
        border-radius: 0 0 0 0;
        z-index: 10000;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.08) #3c3f47;
        scrollbar-gutter: inherit;
    }
    .side-menu.open {
        left: 0;
    }
    .menu-header {
        display: flex;
        align-items: center;
        padding: 20px;
    }
    .menu-header .logo svg {
        width: 50px;
        height: auto;
    }
    .close-menu {
        margin-left: auto;
        background: none;
        border: none;
        cursor: pointer;
        color: #fff;
    }
    .menu-socials {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }
    .menu-socials img {
        height: 40px;
    }
    .menu-section {
        padding: 10px 20px;
    }
    .menu-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 10px;
        border-radius: 8px;
        color: #e6e6e6;
        text-decoration: none;
    }
    .menu-item:hover {
        background: #4a4d57;
    }
    .menu-title {
        padding: 15px 20px 8px;
        font-size: 13px;
        color: #a0a0a0;
        text-align: center;
    }
    .card {
        width: 100%;
        box-sizing: border-box;

        margin: 0 16px;
        padding: 12px;
        margin-top: 1px;
        margin-bottom: 1px;

        border-radius: 14px;
        border: 2px solid rgba(255,255,255,0.08);

        display: flex;
        justify-content: space-evenly;

        align-items: center;
        text-decoration: none;
    }

    #notification-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;

        display: flex;
        flex-direction: column;
        gap: 10px;

        z-index: 10000;
    }
    .notification {
        bottom: 20px;
        padding-top: 15px;
        padding-bottom: 15px;

        display: flex;
        align-items: center;
        opacity: 0;
        flex-direction: column;
        gap: 10px;

        transform: translateX(120%) scale(0.95);
        transition:
            transform 0.45s cubic-bezier(.4,0,.2,1),
            opacity 0.3s ease;

        width: 100%;
        background: #3c3f47;
        border-radius: 15px;
    }
    .notification.AC { color: #48ad23; }
    .notification.MD { color: #d1ab15; }
    .notification.HD { color: #bf1717; }
    .notification.default { color: #2e86d8; }

    .notification.show {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .notification.hide {
        transform: translateX(120%) scale(0.95);
        opacity: 0;
    }

    .notification-header {
        display: flex;
        align-items: center;
        justify-content: space-between;

        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;

        margin-bottom: -12px;
    }

    .notification-subtitle {
        font-weight: 600;
        font-size: 14px;
        line-height: 0.7;
        color: #a0a0a0;
    }

    .notification-title {
        font-weight: 600;
        font-size: 14px;
        line-height: 0.8;
    }

    .notification-close {
        cursor: pointer;
        opacity: 0.6;
        font-size: 14px;
        padding: 4px;
        line-height: 1;
        color: #e6e6e6;
    }

    .notification-close:hover {
        opacity: 1;
    }

    .notification-text {
        text-align: center;
        font-size: 18px;
        line-height: 1.4;
        word-break: break-word;
        color: #e6e6e6;
    }

    .notification-progress {
        height: 4px;
        width: 90%;
        background: rgba(255,255,255,0.2);
        border-radius: 2px;
        overflow: hidden;
    }

    .notification-progress-bar {
        height: 100%;
        width: 90%;
        transform-origin: left;
        background: currentColor;
        transform: scaleX(1);
    }
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 48;
}
.icon-sm  {font-size:20px;}
.icon-md  {font-size:28px;}
.icon-lg  {font-size:36px;}
.icon-xl  {font-size:48px;}