/* #00426 — extracted inline <style> blocks from 404.html, thank-you.html, podmienky.html, en/terms.html so the deck can drop unsafe-inline from style-src. Each page declares a body class to scope its rules. */

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

/* 404.html — body.page-404 */
body.page-404 {
    --bg: #060609;
    --text: #e8e8ed;
    --text-dim: #6b6b7b;
    --red: #ff4d4d;
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
body.page-404 .code {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--red), #ff8c4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}
body.page-404 h1 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.8rem; }
body.page-404 p { color: var(--text-dim); font-size: 1rem; max-width: 400px; line-height: 1.6; margin-bottom: 2rem; }
body.page-404 a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
    transition: all 0.25s;
}
body.page-404 a:hover { background: transparent; color: var(--red); }

/* thank-you.html — body.page-thank-you */
body.page-thank-you {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    background: #0c0c14;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.page-thank-you .container { max-width: 520px; padding: 3rem 2rem; text-align: center; }
body.page-thank-you h1 { font-size: 1.6rem; color: #ff4d4d; margin-bottom: 1rem; }
body.page-thank-you p { font-size: 0.9rem; color: #a0a0a0; line-height: 1.6; margin-bottom: 1.5rem; }
body.page-thank-you .download-btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background: #ff4d4d;
    color: #0c0c14;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: background 0.2s;
    margin-bottom: 2rem;
}
body.page-thank-you .download-btn:hover { background: #ff6b6b; }
body.page-thank-you .back-link { display: block; margin-top: 1.5rem; color: #555; text-decoration: none; font-size: 0.8rem; }
body.page-thank-you .back-link:hover { color: #ff4d4d; }
body.page-thank-you .note { font-size: 0.75rem; color: #555; margin-top: 1rem; }

/* podmienky.html + en/terms.html — body.page-terms */
body.page-terms { font-family: 'Inter', -apple-system, sans-serif; background: #060609; color: #e8e8ed; line-height: 1.8; padding: 2rem; }
body.page-terms .container { max-width: 720px; margin: 0 auto; padding: 2rem 0; }
body.page-terms h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
body.page-terms h2 { font-size: 1.2rem; font-weight: 600; margin-top: 2.5rem; margin-bottom: 0.8rem; color: #ff4d4d; }
body.page-terms h3 { font-size: 1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; }
body.page-terms p, body.page-terms li { font-size: 0.88rem; color: #a0a0b0; line-height: 1.8; margin-bottom: 0.6rem; }
body.page-terms ul { padding-left: 1.5rem; margin-bottom: 1rem; }
body.page-terms a { color: #ff4d4d; text-decoration: none; }
body.page-terms a:hover { text-decoration: underline; }
body.page-terms .back { display: inline-block; margin-bottom: 2rem; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: #6b6b7b; }
body.page-terms .back:hover { color: #ff4d4d; }
body.page-terms .updated { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: #3a3a4a; margin-bottom: 2rem; }
