:root {
    --theme_color: #D7362F;
    --nav_ratio: calc(375px/375);
    --vw_ratio: calc(100vw/375);
}
@font-face {
    font-family: Aleo;
    src: url('/landing-page/css/Aleo-Regular.otf');
    font-display:swap;
}
@font-face {
    font-family: Aleo-Bold;
    src: url('/landing-page/css/Aleo-Bold.otf');
    font-display:swap;
}
* {
    touch-action: pan-x pan-y;
    -webkit-user-drag: none;
    scrollbar-width: none;
    overscroll-behavior-y: none;
}
::-webkit-scrollbar {
    display: none;
}
body {
    background-color: #FFFFFF;
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    height: -webkit-fill-available;
    padding: 0;
    overflow-x: hidden;
}
body .landing_page_content {
    background-color: #FFF7F0;
    width: 100%;
    height: auto;
    padding-top: calc(86 * var(--nav_ratio));
    padding-bottom: calc(122 * var(--nav_ratio));
    display: flex;
    flex-direction: column;
    align-items: center;
}
body .landing_page_content .name {
    margin-top: calc(17 * var(--vw_ratio));
    width: calc(281 * var(--vw_ratio));
    color: #000000;
    font-family: Aleo-Bold;
    font-size: calc(30 * var(--vw_ratio));
    line-height: calc(42 * var(--vw_ratio));
    text-align: center;
    word-break: break-word;
    white-space: pre-line;
}
body .landing_page_content .describe {
    margin-top: calc(14 * var(--vw_ratio));
    width: calc(341 * var(--vw_ratio));
    color: var(--theme_color);
    font-family: Aleo;
    font-size: calc(19 * var(--vw_ratio));
    line-height: calc(29 * var(--vw_ratio));
    word-break: break-word;
    white-space: pre-line;
}
body .landing_page_content .cover {
    margin-top: calc(24 * var(--vw_ratio));
    width: 100%;
    aspect-ratio: 3 / 4;
    box-shadow: 0 calc(4 * var(--vw_ratio)) calc(6 * var(--vw_ratio)) 0 rgba(67, 3, 0, 0.2);
}
body .landing_page_content .content {
    margin-top: calc(26 * var(--vw_ratio));
    width: calc(341 * var(--vw_ratio));
    color: #444444;
    font-family: Aleo;
    font-size: calc(19 * var(--vw_ratio));
    line-height: calc(29 * var(--vw_ratio));
    word-break: break-word;
    white-space: pre-line;
}
body .header {
    background-color: var(--theme_color);
    position: fixed;
    top: 0;
    width: 100%;
    height: calc(86 * var(--nav_ratio));
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body .header .logo {
    margin-left: calc(12 * var(--nav_ratio));
    width: calc(59 * var(--nav_ratio));
    height: calc(59 * var(--nav_ratio));
}
body .header .continue_bg {
    margin-right: calc(14 * var(--nav_ratio));
    width: calc(283 * var(--nav_ratio));
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
body .header .continue_bg .continue_text {
    margin-top: calc(13 * var(--nav_ratio));
    height: calc(16 * var(--nav_ratio));
    color: #FFFFFF;
    font-family: Aleo-Bold;
    font-size: calc(13 * var(--nav_ratio));
    line-height: calc(16 * var(--nav_ratio));
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
body .header .continue_bg .continue_btn {
    background-color: #FFFFFF;
    margin-top: calc(13 * var(--nav_ratio));
    width: 100%;
    height: calc(30 * var(--nav_ratio));
    border-radius: calc(15 * var(--nav_ratio));
    color: var(--theme_color);
    font-family: Aleo;
    font-size: calc(12 * var(--nav_ratio));
    line-height: calc(16 * var(--nav_ratio));
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 1.2s linear infinite;
}
body .footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 9.15%, rgba(255, 255, 255, 1) 19.96%);
    position: fixed;
    bottom: 0;
    width: 100%;
    height: calc(122 * var(--nav_ratio));
    display: flex;
    justify-content: center;
}
body .footer .continue_read {
    background-color: #D53930;
    margin-top: calc(41 * var(--nav_ratio));
    width: calc(318 * var(--nav_ratio));
    height: calc(54 * var(--nav_ratio));
    border-radius: calc(27 * var(--nav_ratio));
    box-shadow: 0 calc(1 * var(--nav_ratio)) calc(4 * var(--nav_ratio)) 0 rgba(213, 57, 48, 0.3);
    color: #FFFFFF;
    font-family: Aleo-Bold;
    font-size: calc(20 * var(--nav_ratio));
    line-height: calc(24 * var(--nav_ratio));
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 1.2s linear infinite;
}
body .footer .hand {
    position: absolute;
    left: calc(187.5 * var(--vw_ratio) + 84.5 * var(--nav_ratio));
    bottom: calc(14 * var(--nav_ratio));;
    width: calc(49 * var(--nav_ratio));
    height: calc(49 * var(--nav_ratio));
    animation: pulse 1.2s linear infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
}
