* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    touch-action: manipulation;
}

body {
    position: relative;
    background: url(/assets/images/now/now-bg.png) center / cover fixed no-repeat;
}

.now-window {
    position: fixed;
    z-index: 100;
    cursor: default;
    user-select: none;
}

.now-window img {
    display: block;
    max-width: 100%;
    pointer-events: none;
}

.info-box {
    position: fixed;
    top: 10vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: auto;
    user-select: text;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 16px 12px 24px;
    background: rgba(0, 0, 0, 0.2);
    width: 40vw;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}

.info-box ul{
    padding-left: 1rem;
    list-style-position: inside;
}

.info-box p:not(:last-child) {
    margin-bottom: 8px;
}

.info-box a {
    color: #ffffff;
    text-decoration: none;
    pointer-events: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s;
}

.info-box a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.7);
}
