@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --bg-color: #111115;
    --glass-bg: rgba(30, 30, 40, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-text: #F0F0F5;
    --secondary-text: #A0A0B0;
    --accent-color: #4A90E2;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    line-height: 1.7;
    padding: 40px 20px;
    overflow-x: hidden;
    position: relative;
}

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px; /* Ajoute un peu d'espace sur les côtés */
    position: relative; /* Assure que le contenu est au-dessus des particules */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

h1, h2 {
    color: var(--primary-text);
    margin-bottom: 0.75em;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 12px; /* Espace réduit sous le titre */
}

h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

h1 + p {
    text-align: center;
    margin-bottom: 32px; /* Conserve l'espace après la date */
    font-size: 0.9rem; /* Taille de police réduite */
    color: var(--secondary-text);
    opacity: 0.7; /* Rend le texte plus discret */
}

p {
    margin-bottom: 1em;
    color: var(--secondary-text);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

ul {
    list-style-position: inside;
    padding-left: 8px;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
    color: var(--secondary-text);
}

strong {
    color: var(--primary-text);
    font-weight: 600;
}

.back-to-site {
    text-align: center;
    margin-bottom: 32px;
}

.back-to-site a {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.back-to-site a:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.disclaimer, .discord {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 200, 75, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
}

.disclaimer h2, .discord h2 {
    border: none;
    margin-top: 0;
    font-size: 1.2rem;
    color: #FFC84B;
}

.disclaimer p, .discord p {
    color: var(--secondary-text);
}

.contact-highlight {
    background-color: #0056b3;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    border: 2px solid #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.contact-highlight p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

.contact-highlight a {
    color: #80caff; /* Bleu clair pour contraster */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-highlight a:hover {
    color: #ffffff;
}

.contact-highlight .fa-envelope {
    margin-right: 10px;
    vertical-align: middle;
}

.last-updated {
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 25px;
    opacity: 0.8;
} 