/* ============================================================
   app.css — Page d'appairage ecran (codeaccess)
   Style autonome, independant du player TV
   ============================================================ */

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

body {
    background: #090c10;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    height: 100vh;
    overflow: hidden;
}

#appplication {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#firstload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.2rem;
    padding: 2rem;
}

#firstload .logo {
    width: 220px;
    max-width: 60vw;
}

/* Code d'appairage */
#firstload .codeaccess {
    display: block;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    letter-spacing: 0.35em;
    color: #FFC107;
    background: rgba(255,193,7,0.08);
    border: 2px solid rgba(255,193,7,0.35);
    border-radius: 6px;
    padding: 0.4em 0.8em;
    text-shadow: 0 0 18px rgba(255,193,7,0.5);
}

/* Texte d'aide */
#firstload .help {
    color: #aab;
    line-height: 1.7;
    font-size: 0.95rem;
}



/* Bouton demo */
.btn-demo {
    background: #FFC107;
    border-color: #FFC107;
    color: #000;
    font-weight: bold;
    padding: 0.45em 1.4em;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-demo:hover {
    background: #e6ac00;
    border-color: #e6ac00;
}

/* Vu-metre / spinner inline */
.vumeter {
    width: 28px;
    vertical-align: middle;
}
