@font-face {
    font-family: Doto_Rounded-Black;
    src: url("../fonts/Doto_Rounded-Black.ttf");
    font-display: block;
    font-weight: 900;
    /* use swap to avoid invisible text while loading */
}

@font-face {
    font-family: NeueHaas-Bold;
    src: url("../fonts/InterTight-VariableFont_wght.ttf");
    font-display: block;
    font-weight: 800;
    /* text is invisible if font is not loaded */
}

@font-face {
    font-family: NeueHaas-Medium;
    src: url("../fonts/InterTight-VariableFont_wght.ttf");
    font-display: block;
    font-weight: 650;
    /* text is invisible if font is not loaded */
}

@font-face {
    font-family: NeueHaas-Roman;
    src: url("../fonts/InterTight-VariableFont_wght.ttf");
    font-display: block;
    font-weight: 200;
    /* text is invisible if font is not loaded */
}

::-moz-selection {
    /* Code for Firefox */
    color: rgb(255, 255, 255);
    background: #514743;
}

::selection {
    color: rgb(255, 255, 255);
    background: #514743;
}

html {
    -webkit-text-size-adjust: 100%;
    /* Prevent font scaling in landscape while allowing user zoom */
    -webkit-font-smoothing: antialiased;
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden;
}

.menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

.menu-left .logo img {
    width: 105px;
    height: auto;
    display: block;
}

.bottom-bar {
    margin-top: 150px;
    left: 0;
    right: 0;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    z-index: 9999;
}

.menu-list-bottom {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: row-reverse;
}

.menu-list-bottom li a {
    text-decoration: none;
    font-family: 'NeueHaasDisplayRoman', system-ui, Arial, sans-serif;
    font-size: 11px;
    cursor: pointer;
    color: #000;
}

.menu-list-bottom li a:hover {
    color: #6e6e6e;
}

@media (max-width: 600px) {
    #svg_logo {
        width: 15vw;
    }
}