/* --- RESET ET BASE --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0D0D0D;
    margin: 0;
    min-height: 100vh;
}

/* --- STRUCTURE GLOBALE (PC) --- */
.page-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #232326;
    /* Gris NIRD */
    color: white;
    border-top: 3px solid #7641BF;
    /* Ligne violette tout en haut */
}

/* --- HEADER --- */
.app-header {
    background-color: #232326;
    border-bottom: 1px solid #444;
    width: 100%;
}

/* Conteneur interne pour limiter la largeur du contenu du header */
.header-content {
    max-width: 1200px;
    /* Largeur max standard PC */
    margin: 0 auto;
    /* Centrer */
    padding: 15px 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand h1 {
    font-size: 24px;
    /* Plus grand pour PC */
    font-style: italic;
    font-weight: bold;
    color: #fff;
}

.logo {
    width: 500px;
}

.logo {
    width: 40px;
    height: 40px;
}

.user-btn {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.user-btn:hover {
    background-color: #e0e0e0;
}

/* --- ARBORESCENCE --- */
.breadcrumbs {
    font-size: 14px;
    color: #bbb;
}

.breadcrumb-link {
    color: #ccc;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.breadcrumb-link:hover {
    color: #fff;
}

.separator {
    margin: 0 8px;
    color: #777;
}

/* --- MAIN CONTENT (PC) --- */
.content-area {
    flex: 1;
    /* Pousse le footer vers le bas */
    width: 100%;
    max-width: 1000px;
    /* Limite la largeur du texte pour la lecture */
    margin: 0 auto;
    /* Centre le bloc au milieu de l'écran */
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.content-area h2 {
    font-weight: normal;
    font-size: 36px;
    /* Titre plus gros */
    margin-bottom: 30px;
    color: #fff;
}

.presentation-text {
    font-size: 18px;
    /* Texte plus lisible */
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 800px;
}

.image-container {
    width: 100%;
    max-width: 800px;
    /* L'image ne prendra pas tout l'écran, c'est plus joli */
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.game-btn {
    background-color: #9A202A;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.game-btn:hover {
    transform: scale(1.05);
    background-color: #b92b35;
}

/* --- FOOTER (Pleine largeur) --- */
.app-footer {
    background-color: #1a1a1d;
    border-top: 1px solid #7641BF;
    /* Ligne violette */
    width: 100%;
    padding: 15px 0;
    /* Padding vertical uniquement */
}

/* Conteneur interne du footer pour aligner avec le reste */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-text {
    color: #ccc;
    font-size: 14px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-info {
    height: 35px;
    width: auto;
}

.logo-jrcandev {
    height: 30px;
    width: auto;
}


/* --- Forum (FIXE) --- */
.Forum {
    position: fixed;
    /* Reste fixe par rapport à la fenêtre */
    bottom: 90px;
    /* Assez haut pour ne pas toucher le footer (qui fait env. 60-70px) */
    right: 30px;
    /* Collé à droite */
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 2px solid #7641BF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s;
}

.Forum:hover {
    transform: scale(1.1);
}