/* ===== ADMIN LOGIN ===== */
body.admin-login {
    background: #0a0a0a;
    color: white;
    font-family: "Helvetica Neue", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

body.admin-login input {
    background: none;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    font-size: 1rem;
    outline: none;
}

body.admin-login button {
    margin-top: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.6;
}

body.admin-login button:hover {
    opacity: 1;
}

/* ===== ADMIN MODERATION ===== */
body.admin-moderation {
    background: #111;
    color: white;
    font-family: "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 40px;
}

body.admin-moderation h1 {
    font-weight: 300;
}

body.admin-moderation .reponse {
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

body.admin-moderation .reponse-texte {
    margin: 10px 0;
}

body.admin-moderation .reponse-statut-display {
    opacity: 0.5;
}

body.admin-moderation .actions {
    margin-top: 10px;
}

body.admin-moderation .actions a {
    margin-right: 20px;
    color: white;
    text-decoration: none;
    opacity: 0.6;
}

body.admin-moderation .actions a:hover {
    opacity: 1;
}

body.admin-moderation .nom {
    font-size: 0.8rem;
    opacity: 0.4;
}

body.admin-moderation .top-actions {
    margin-bottom: 40px;
}

body.admin-moderation .top-actions a {
    color: #ff6666;
    text-decoration: none;
    opacity: 0.7;
}

body.admin-moderation .top-actions a:hover {
    opacity: 1;
}

/* ===== PARTICIPER ===== */
body.participer-page {
    margin: 0;
    background: #00ee00;
    color: white;
    font-family: "Helvetica Neue", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body.participer-page .container {
    background: #00ee00;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

body.participer-page .question {
    font-size: 4rem;
    margin-bottom: 60px;
    font-weight: 300;
    line-height: 1.1;
    opacity: 0.85;
}

body.participer-page textarea {
    width: 100%;
    min-height: 60px;
    background: none;
    border: none;
    border-bottom: 1px solid white;
    color: #006400;
    font-size: 0.8rem;
    outline: none;
    resize: none;
    text-align: left;
    padding: 10px 0;
}

body.participer-page textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

body.participer-page select {
    margin-top: 50px;
    background: none;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    font-size: 1rem;
    outline: none;
}

body.participer-page button {
    margin-top: 60px;
    background: none;
    border: none;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    cursor: pointer;
    letter-spacing: 1px;
}

body.participer-page button:hover {
    opacity: 1;
}

body.participer-page .back {
    position: fixed;
    bottom: 30px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
}

body.participer-page .back a {
    color: white;
    text-decoration: none;
}

body.participer-page input[type="text"] {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid white;
    color: #006400;
    font-size: 0.8rem;
    outline: none;
    padding: 10px 0;
    margin-top: 30px;
}

body.participer-page input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

body.participer-page .honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

@media (max-width: 600px) {
    body.participer-page .question {
        font-size: 1.1rem;
    }
    body.participer-page textarea {
        font-size: 1.2rem;
    }
}

/* ===== INDEX (home) ===== */
body.index-page {
    margin: 0;
    background: #00ee00;
    color: white;
    font-family: "Helvetica Neue", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

body.index-page .container {
    background: #00ee00;
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

body.index-page .reponse {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    opacity: 0;
    animation: apparition 3s forwards;
}

body.index-page .question {
    margin-top: 40px;
    font-size: 1rem;
    opacity: 0.8;
}

body.index-page .statut {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.4;
}

@keyframes apparition {
    to {
        opacity: 1;
    }
}

body.index-page .actions {
    position: fixed;
    bottom: 30px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    opacity: 1;
}

body.index-page .actions a {
    color: white;
    text-decoration: none;
    margin: 0 25px;
}

body.index-page .actions a:hover {
    opacity: 1;
}

@media (max-width: 600px) {
    body.index-page .reponse {
        font-size: 1.4rem;
    }
}

/* ===== ARCHIVE ===== */
body.archive-page {
    background: #0a0a0a;
    color: white;
    font-family: "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 80px 20px;
}

body.archive-page .container {
    max-width: 1000px;
    margin: auto;
}

body.archive-page h2 {
    font-weight: 300;
    margin-top: 120px;
    margin-bottom: 60px;
    opacity: 0.6;
}

body.archive-page .categorie {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
}

body.archive-page .compteur {
    font-size: 0.8rem;
    opacity: 0.3;
    margin-left: 10px;
}

body.archive-page .reponse {
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.7;
}

body.archive-page .nom {
    font-size: 0.8rem;
    opacity: 0.3;
    margin-top: 6px;
}

body.archive-page .top {
    position: fixed;
    top: 25px;
    left: 25px;
    font-size: 0.8rem;
}

body.archive-page a {
    color: white;
    text-decoration: none;
    opacity: 0.4;
}

body.archive-page a:hover {
    opacity: 1;
}

@media (max-width: 700px) {
    body.archive-page .reponse {
        font-size: 1rem;
    }
}

/* ===== FORUM (inline span) ===== */
.forum-slash {
    color: limegreen;
    font-size: 26px;
}

/* ===== INTRODUCTION (inline spans) ===== */
.intro-date {
    font-size: 16px;
}

.intro-contributors {
    font-size: 14px;
}

body div.container form select option {
color: black !important;
}
