/* tv.css — Fire TV optimiert (großer Bildschirm, Fernbedienung, kein Touch) */

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

html, body {
    width: 100%; height: 100%;
    background: #1a1a2e;
    color: #ffffff;
    font-family: -apple-system, 'Segoe UI', sans-serif;
    overflow: hidden;
}

.tv-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #39FF14;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#qr-wrap {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
}

#qr img, #qr canvas {
    display: block;
}

.instruction {
    font-size: 22px;
    text-align: center;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.status {
    font-size: 20px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
}

.status.waiting {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

.status.ready {
    background: rgba(57,255,20,0.15);
    color: #39FF14;
}

.status.expired {
    background: rgba(231,76,60,0.15);
    color: #e74c3c;
}

.countdown {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
}

.footer-hint {
    font-size: 14px;
    color: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 1.6;
    position: absolute;
    bottom: 32px;
}
