@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

/* Styles centralisés identiques à tous les fichiers */
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', Arial, sans-serif;
    background: linear-gradient(180deg, #0f2027 0%, #2c5364 100%);
    color: #fff;
}

html, body {
    height: 100%;
}

/* Links consistent look used in several files */
a {
    color: #7fffd4;
    text-decoration: underline;
}

/* Buttons/link-like elements common styles */
.back-btn, .btn, .select-btn, .cta-btn {
    background: linear-gradient(90deg, #7fffd4 0%, #1e90ff 100%);
    color: #222;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0 4px 16px #0006;
}

/* Fin des styles centralisés */

/* Centralized heading style used across pages */
h1 {
    font-size: 2.2rem;
    color: #7fffd4;
    margin-bottom: 24px;
    text-align: center;
}

/* TOS text: use a lighter, more readable font for body text while keeping titles bold */
.tos {
    /* prefer system UI fonts for readability; don't use the heavy Orbitron for paragraphs */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400; /* lighter weight for paragraph text */
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    color: #fff;
}
.tos strong {
    font-weight: 700; /* keep article titles bold */
}

