@import "../fontstyles/nanum-square-neo.css";

* {
    font-family: "NanumSquareNeo", sans-serif;
}

:root {
    --button-border-size: 2px;
}

background-container {
    position: absolute;

    width: 100%;
    height: 100%;

    top: 0;
    left: 0;

    z-index: -999999;

    background: linear-gradient(to left top, rgba(255, 110, 55, 0.6), rgba(255, 255, 255, 0.6));
    pointer-events: none;
}

body {
    position: relative;
    
    min-width: 100vw;
    min-height: 100dvh;
    width: fit-content;

    margin: 0;
}

#yunizun_copyright {
    position: absolute;

    left: 15px;
    bottom: 15px;
    margin: 0;

    font-size: 20px;
    opacity: 35%;

    color: black;

    z-index: 999999;
    pointer-events: none;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    white-space: nowrap;
    font-weight: 700;
}

/* 평소 상태: 화면 아래로 숨김 */
.bottom_hidden_content {
    position: fixed;
    bottom: 0;
    left: 50%;

    transform: translate(-50%, 100%);

    transition: transform 0.2s ease-out;
    z-index: 2147483647;

    /* (선택 사항) 버튼처럼 보이게 하기 위한 기본 스타일 */
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 30px;
    outline: none;          /* 포커스 시 기본 테두리 제거 (원하시면 유지해도 됨) */
}

/* 탭 키로 선택되었을 때 (Focus 상태): 화면 위로 올라옴 */
.bottom_hidden_content:focus-within {
    transform: translate(-50%, 0); /* 원래 위치로 이동 */
}