/* ==============================================
   PAGE PARTICIPER
   ============================================== */

.page-participer {
    font-family: var(--font-mono, monospace);
    padding-top: clamp(20px, 4vw, 40px) !important;
}

.participer-section {
    margin-bottom: 60px;
}

.participer-section h2 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.participer-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: var(--font-body, Georgia, serif);
}

.participer-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.participer-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 20px 20px 20px 80px;
    margin-bottom: 20px;
    border-left: 3px solid var(--noir, #1a1a1a);
    background: var(--gris-clair, #f5f5f5);
}

.participer-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--noir, #1a1a1a);
    color: var(--blanc, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
}

.participer-steps strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Nomenclature */
.nomenclature-section {
    background: var(--gris-clair, #f5f5f5);
    padding: 40px;
    border: 3px solid var(--noir, #1a1a1a);
}

.nomenclature-box {
    background: var(--blanc, #fff);
    border: 2px solid var(--noir, #1a1a1a);
    padding: 25px;
    margin-bottom: 25px;
}

.nomenclature-box h3 {
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.nomenclature-format {
    display: block;
    background: var(--noir, #1a1a1a);
    color: var(--blanc, #fff);
    padding: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    overflow-x: auto;
    white-space: nowrap;
}

.nomenclature-exemple {
    font-size: 0.95rem;
    margin: 0;
}

.nomenclature-exemple code {
    background: var(--gris-clair, #f5f5f5);
    padding: 5px 10px;
    border: 1px solid var(--noir, #1a1a1a);
    font-weight: 700;
}

.nomenclature-details {
    margin-top: 25px;
}

.nomenclature-details h4 {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.nomenclature-details ul {
    list-style: none;
    padding: 0;
}

.nomenclature-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gris-clair, #e8e8e4);
    line-height: 1.6;
}

.nomenclature-details li:last-child {
    border-bottom: none;
}

.nomenclature-note {
    margin-top: 25px;
    padding: 20px;
    background: var(--blanc, #fff);
    border-left: 5px solid var(--noir, #1a1a1a);
}

.nomenclature-note p {
    margin: 0;
    font-size: 1rem;
}

/* Types de traces */
.types-traces {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.types-traces li {
    padding: 15px;
    background: var(--gris-clair, #f5f5f5);
    border-left: 3px solid var(--noir, #1a1a1a);
}

/* Responsive */
@media (max-width: 768px) {
    .page-content h1 {
        font-size: 2rem;
    }

    .participer-section h2 {
        font-size: 1.5rem;
    }

    .nomenclature-section {
        padding: 20px;
    }

    .nomenclature-format {
        font-size: 0.75rem;
    }

    .types-traces {
        grid-template-columns: 1fr;
    }
}
