/* Navigation Area */

.button-area {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99;
    padding: 18px;
}

.link-area {
    width: 22%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.link-area img {
    width: 130%;
    display: flex;
    align-items: center;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.link span {
    color: rgb(62, 57, 53);
    font-family: 'VT323';
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile Button Area */

.mobile-button-area {
    position: fixed;
    bottom: 0;
    width: 100%;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.mobile-button-area button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.mobile-button-area button img {
    width: clamp(50px, 8vw, 220px);
    height: clamp(50px, 8vw, 220px);
    object-fit: contain;
}

.mobile-button-area img {
    -webkit-touch-callout: none;
    pointer-events: none;
}

.mobile-left {
    display: flex;
    align-items: center;
    margin-left: 2%;
    gap: -3vw;
}

.mobile-right {
    display: flex;
    align-items: center;
    margin-right: 2%;
    gap: -3vw;
}

.mobile-button-area {
    -webkit-touch-callout: none;
    user-select: none;
}