/* --- Structure globale et espacements (Corrige la nav et le footer) --- */
.page-header {
    height: 40vh; /* Moins haut que l'index */
    min-height: 350px;
    background-image: linear-gradient(rgba(15, 17, 21, 0.85), rgba(15, 17, 21, 1)), url('../images_site/image_3.png');
    background-size: cover;
    background-position: center;
    padding-top: 80px; /* Compense la navbar fixe */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-content {
    background-color: transparent; /* Laisse apparaitre l'image de fond si elle est sur le body */
    padding-bottom: 100px; /* Crée de l'espace avec le footer */
}

/* --- Design des Cartes (Ambiance Vert Sombre / Post-Apo) --- */
.launcher-card {
    background-color: #121612 !important; /* Vert-gris très foncé pour coller à la maquette */
    border: 1px solid #1e291e !important; /* Bordure discrète verte/grise */
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff !important;
}

.card-title-sm {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 1px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #9ca3af !important;
}

/* --- Badge de Version Orange (Fond + Bordure) --- */
.version-badge {
    border: 1px solid #ea580c;
    color: #ea580c !important;
    background-color: rgba(234, 88, 12, 0.08); /* Fond léger orange */
    padding: 5px 12px;
    border-radius: 6px;
    font-family: monospace;
    font-weight: 700;
    font-size: 0.85rem;
}

/* --- Grille d'Infos (Minecraft, Statut, Serveur) --- */
.info-grid {
    background-color: #0c100c; /* Plus sombre que la carte */
    border: 1px solid #1e291e;
    border-radius: 8px;
    padding: 15px 0;
}

.border-custom {
    border-color: #1e291e !important; /* Couleur des bordures internes */
}

.info-label {
    display: block;
    font-size: 0.65rem;
    color: #6b7280 !important;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-value {
    font-family: 'Kanit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff !important;
}

/* --- Liste des Étapes (#1, #2, #3) --- */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    display: flex;
    align-items: center;
}

.step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #0c100c; /* Carré sombre */
    border: 1px solid #1e291e;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-family: monospace;
    font-weight: bold;
    font-size: 0.85rem;
    margin-right: 15px;
}

.step-text {
    font-size: 0.9rem;
    color: #9ca3af !important; /* Gris lisible */
    margin: 0;
}

/* --- Configuration Requise --- */
.req-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #9ca3af !important;
    margin-bottom: 12px;
}

.req-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80; /* Point vert */
    font-size: 1.2rem;
    line-height: 1;
    top: -2px;
}

/* --- Changelog --- */
.changelog-list {
    display: flex;
    flex-direction: column;
}

.changelog-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.border-bottom-custom {
    border-bottom: 1px solid #1e291e;
}

.changelog-version {
    color: #4ade80 !important; /* Vert pétant */
    font-family: monospace;
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.changelog-text {
    font-size: 0.9rem;
    color: #9ca3af !important;
    margin: 0;
}

.user-status {
    font-size: 0.85rem;
    color: #6b7280;
}