/* BlueList — estilo común de las páginas cortas (portada, enlaces compartidos y 404). */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #121212;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    text-align: center;
}

.card {
    background: #1E1E1E;
    border-radius: 20px;
    padding: 40px 28px;
    max-width: 380px;
    width: 100%;
}

.card-wide { padding: 48px 28px; }

.emoji { font-size: 56px; margin-bottom: 16px; line-height: 1.1; }
.card-wide .emoji { font-size: 64px; margin-bottom: 20px; }

h1 { font-size: 22px; margin-bottom: 8px; overflow-wrap: break-word; }
.card-wide h1 { font-size: 26px; margin-bottom: 12px; }

p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.code-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.code-label {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.code-value {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
    /* El código nunca lleva dirección RTL: es alfanumérico. */
    direction: ltr;
    unicode-bidi: isolate;
    display: block;
}

.btn {
    display: block;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    width: 100%;
    margin-bottom: 12px;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn:active { opacity: 0.8; }

.sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 0;
}

.features { text-align: start; margin: 20px 0 24px; }

.features div {
    padding: 8px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.features span { margin-inline-end: 8px; }

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
    margin-top: 4px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1px;
}

.legal-links a:hover { color: rgba(255, 255, 255, 0.85); }

/* ── Selector de idioma ── */
.lang-switch {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
}

.lang-switch .lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    font: inherit;
    font-size: 13px;
    /* 44px de alto: objetivo táctil cómodo en móvil. */
    min-height: 44px;
    padding: 0 14px;
    max-width: 100%;
    cursor: pointer;
}

.lang-switch .lang-select:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}
