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

html, body {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    color: #ddd;
    font-family: -apple-system, system-ui, 'Segoe UI', sans-serif;
    overflow: hidden;

    overscroll-behavior: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#screen {
    position: fixed;
    top: 0; left: 0;
    background: #000;
    z-index: 1;
    transform-origin: 0 0;
    will-change: transform;
    outline: none;
    object-fit: fill;
}
#screen::-webkit-media-controls { display: none !important; }
#screen::-webkit-media-controls-enclosure { display: none !important; }

#overlay {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 40px 48px;
    min-width: 360px;
    max-width: 90vw;
    background: rgba(15, 15, 18, 0.92);
    border: 1px solid #222;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.35s ease;
}
#overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}
.brand .play {
    color: #ffb000;
    font-size: 40px;
    line-height: 1;
}
.brand .name {
    font-size: 36px;
    font-weight: 700;
    color: #f0f0f0;
    letter-spacing: -0.5px;
}

.tag {
    color: #888;
    font-size: 14px;
    margin-bottom: 28px;
}

.rows {
    margin-bottom: 24px;
}
.row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #1d1d20;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 13px;
}
.row:last-child { border-bottom: none; }
.label { color: #888; }
.value { color: #ccc; }
.value.ok  { color: #4ade80; }
.value.err { color: #f87171; }

.hint {
    color: #6a6a6a;
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}
