@import url("fonts.css");
:root {
    color-scheme: light dark;
}
body {
    width: 100vw;
    min-width: 300px;
    /* min-height: 100vh; */
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: center;
    /* font-family: -apple-system, BlinkMacSystemFont, 'SF-Pro', 'Noto Sans KR', 'Noto Sans JP', sans-serif !important; */
    background-color: light-dark(#f2f1f6, #000);
    user-select: none !important;
    overscroll-behavior-y: contain;
}
.l {
    text-align: left !important;
}

header {
    min-width: 100vw;
    min-height: 20px;
    height: max-content;
    padding: 0px;
    margin: 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: light-dark(#f2f1f660, #00000060);
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px);
    z-index: 10;
}
header > p {
    height: 20px;
    line-height: 20px;
    margin: 0px;
    display: block;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: light-dark(#000, #f5f5f7);
}

.subheader {
    width: 100%;
    height: 45px;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.subheader p {
    margin: 0px 0px 0px 4px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #1896A6;
}
.subheader p span.material-icons-round {
    margin: 0px 0px 0px 3px;
    font-size: 24px;
}

.container {
    width: calc(100% - 16px * 2);
    max-width: calc(480px - 16px * 2);
    /* min-height: calc(100vh - 84px); */
    margin: 0px;
    padding: 60px 16px 0px 16px;
    background-color: light-dark(#f2f1f6, #000);

    opacity: 0;
    pointer-events: none;
}
.container.active {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 300ms;
}

.container > img {
    width: 100%;
    /* height: 168px; */
    height: 200px;
    margin: 0px;
    padding: 0px;
    border-radius: 10px;
    object-fit: cover;
}
.container > p {
    max-width: calc(100% - 28px);
    margin: 3px 14px 20px 14px;
    padding: 0px 0px 0px 0px;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    line-height: 16.8px;
    color: #86868b;
}
.container h1 {
    margin: 0px;
    padding: 12px 0px 16px 0px;
    font-weight: 700;
    font-size: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: light-dark(#000, #f5f5f7);
}
.container h3 {
    max-width: calc(100% - 28px);
    margin: 20px 14px 8px 14px;
    padding: 0px 0px 0px 0px;
    font-weight: 600;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: light-dark(#000, #f5f5f7);
}

.container ul {
    width: calc(100% - 14px);
    margin: 0px 0px 36px 0px;
    padding: 0px 0px 0px 14px;
    border-radius: 10px;
    background-color: light-dark(#fff, #1D1B1D);
}
.container ul > * {
    width: 100%;
    height: 20px;
    line-height: 20px;
    margin: 0px;
    padding: 12px 0px 12px 0px;
    outline: 0;
    border-top: solid #d4d4d4 0.5px;
    display: flex;
    justify-content: space-between;
    /* vertical-align: middle; */
    /* border-style: solid;
    border-image: linear-gradient(90deg, #d4d4d4 15px, #d4d4d4 15px) 1 / 0.5px 0px 0px 0px; */
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    background: none;
    appearance: none;
    cursor: pointer;
}
.container ul > *:first-child {
    border: none
}
.container li::after {
    line-height: 14px;
    font-family: 'Material Icons Round';
    content: 'arrow_forward_ios';
    padding: 3px 15px 3px 0px;
    font-size: 14px;
    color: #c7c7c7;
    pointer-events: auto;
}


@media (prefers-color-scheme: light) {
    body {
        background-color: #f2f1f6;
    }
    header {
        background-color: #f2f1f660;
    }
    header > p {
        color: #000;
    }
    .container {
        background-color: #f2f1f6;
    }
    .container h1, h3 {
        color: #000;
    }
    .container ul {
        background-color: #fff;
    }
}
@media (prefers-color-scheme: dark) {
    body {
        background-color: #000;
    }
    header {
        background-color: #00000060;
    }
    header > p {
        color: #f5f5f7;
    }
    .container {
        background-color: #000;
    }
    .container h1, h3 {
        color: #f5f5f7;
    }
    .container ul {
        background-color: #1D1B1D;
    }
}