/* =========================================================
   STYLE GLOBAL
   ========================================================= */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f1fafb;
    margin: 0;
    padding: 0; /* Important : on gère le padding par page-jouer */
    color: #333;
}

body.page-jouer {
    padding-top: 120px; /* espace sous header en desktop */
    padding-bottom: 60px; /* pour respirer avant footer */
}

/* =========================================================
   GAME WRAPPER
   ========================================================= */
.game-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    border: 3px solid #078a91;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

h1 {
    margin-bottom: 10px;
    font-size: 2.2rem;
    color: #078a91;
    font-weight: 700;
}

.subtitle {
    margin-bottom: 24px;
    color: #444;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
    font-size: 1.15rem;
    margin: 15px auto 25px;
    padding: 10px 20px;
    background: #f1fafb;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid #d6ecee;
}

/* =========================================================
   BOARD
   ========================================================= */
.board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    justify-items: center;
    margin-bottom: 25px;
}

.card {
    width: 100%;
    max-width: 150px;
    aspect-ratio: 805 / 1182;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.45s ease;
    transform-style: preserve-3d;
}

.card.flipped .card-inner,
.card.matched .card-inner {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    backface-visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
    border: 2px solid #bcd4d5;
    transform: rotateY(0deg);
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-back {
    transform: rotateY(180deg);
    background: white;
    border: 2px solid #078a91;
}

.card-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card.matched {
    cursor: default;
    opacity: 0.65;
    filter: grayscale(20%);
}

/* =========================================================
   BUTTON
   ========================================================= */
.btn-restart {
    padding: 12px 26px;
    border-radius: 28px;
    border: none;
    background: #078a91;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s ease;
    font-weight: 600;
}

.btn-restart:hover {
    background: #056a6f;
}

/* =========================================================
   MESSAGE
   ========================================================= */
.message {
    margin-top: 20px;
    min-height: 24px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #078a91;
}

/* =========================================================
   POPUP
   ========================================================= */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.popup.hidden {
    display: none !important;
}

.popup-content {
    background: #ffffff;
    padding: 20px 20px 30px;
    border-radius: 24px;
    text-align: center;
    max-width: 95%;
    animation: popup-zoom 0.25s ease-out;
    border: 3px solid #078a91;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.popup-content img {
    width: 46%;
    max-width: 280px;
    margin: 10px;
    border-radius: 14px;
    border: 3px solid #bcd4d5;
}

.popup-text {
    font-size: 1.15rem;
    margin: 10px auto 15px;
    font-weight: 600;
    color: #333;
    padding: 0 10px;
}

#popup-close {
    margin-top: 10px;
    padding: 10px 22px;
    background: #078a91;
    color: white;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    font-size: 1.1rem;
}

#popup-close:hover {
    background: #056a6f;
}

@keyframes popup-zoom {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =========================================================
   FULLSCREEN MOBILE (pas de scroll global)
   ========================================================= */
@media (max-width: 600px) {

    body.page-jouer {
        padding-top: 70px;   /* juste assez pour passer sous le header */
        padding-bottom: 0;
        overflow: hidden;    /* empêche le scroll du body */
    }

    .page-jouer .game-wrapper {
        height: calc(100vh - 70px); /* plein écran moins header */
        overflow-y: auto;           /* scroll interne si nécessaire */
        margin: 0;
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 10px 10px 30px;
    }

    .board {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
    }

    .card {
        max-width: none;
        width: 100%;
    }

    /* popup mobile */
    .popup {
        padding: 10px;
        align-items: flex-start;
    }

    .popup-content {
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
    }

    #popup-close {
        margin-bottom: 10px;
    }
}

/* --- Encadré CTA dans jouer.html --- */
.mystigrix-cta {
    background: #f1fafb;
    border: 2px solid #078a91;
    border-radius: 18px;
    padding: 26px 20px;
    margin: 35px auto;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.mystigrix-cta h3 {
    color: #078a91;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1.8rem;
}

.mystigrix-cta p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.5;
}

.mystigrix-cta a.theme-btn-s3 {
    font-size: 1.05rem;
    padding: 10px 22px;
}

/* --- Mobile optimisation --- */
@media (max-width: 600px) {
    .mystigrix-cta {
        padding: 22px 16px;
        margin: 24px 10px;
    }

    .mystigrix-cta h3 {
        font-size: 1.45rem;
    }

    .mystigrix-cta p {
        font-size: 1rem;
    }

    .mystigrix-cta a.theme-btn-s3 {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
}

/* --- Bouton REJOUER (nouvelle version) --- */
.rejouer-wrapper {
    text-align: center;
    margin: 40px 0 60px;
}

.btn-rejouer {
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
    background: #6a0dad; /* Violet Monstriplix */
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.btn-rejouer:hover {
    background: #570c9a;
}