﻿/* =========================================================
   PAGE DE JEU
========================================================= */

.game-page {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   STRUCTURE GENERALE
========================================================= */

.game-layout {
    display: grid;
    align-items: start;

    box-sizing: border-box;

    margin: 20px auto 0;
}


/* =========================================================
   PREMIUM
   ---------------------------------------------------------
   Vignettes | Jeu 800 | Vignettes
========================================================= */

.premium-layout {
    grid-template-columns: 150px minmax(0, 800px) 150px;

    column-gap: 20px;

    width: 1180px;
    max-width: calc(100% - 20px);
}


/* =========================================================
   GRATUIT
   ---------------------------------------------------------
   Publicité 406 | Jeu 640 | Vignettes
========================================================= */

.free-layout {
    grid-template-columns: 406px 640px 150px;

    column-gap: 20px;

    width: 1256px;
    max-width: calc(100% - 20px);
}


/* =========================================================
   CONTENU CENTRAL
========================================================= */

.game-main {
    width: 100%;
    min-width: 0;

    box-sizing: border-box;

    text-align: center;
}


/* =========================================================
   TITRE
========================================================= */

.game-title {
    margin: 0 0 15px;
    padding: 0;

    font-size: 27px;
    line-height: 1.25;

    color: #1e293b;

    font-weight: 700;
}


/* =========================================================
   JEU PREMIUM
   800 x 600
========================================================= */

.premium-layout #openfl-content {
    display: block;

    width: 100%;
    max-width: 800px;

    height: auto;
    aspect-ratio: 4 / 3;

    margin: 0 auto;

    background: #fff;

    overflow: hidden;
}


/* =========================================================
   JEU GRATUIT
   640 x 480
========================================================= */

.free-layout #openfl-content {
    display: block;

    width: 640px;
    height: 480px;

    margin: 0 auto;

    background: #fff;

    overflow: hidden;
}


/* =========================================================
   COLONNES DE JEUX
========================================================= */

.games-side {
    width: 150px;
    min-width: 0;

    box-sizing: border-box;

    text-align: center;
}


.games-side h3 {
    margin: 0 0 12px;

    font-size: 16px;

    line-height: 1.3;

    color: #334155;
}


/* =========================================================
   VIGNETTES
========================================================= */

.game-thumb {
    display: block;

    width: 100%;

    margin: 0 0 14px;
    padding: 6px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #e2e8f0;
    border-radius: 12px;

    color: #334155;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.game-thumb:hover {
    transform: translateY(-2px);

    border-color: #93c5fd;

    box-shadow: 0 5px 15px rgba(30, 64, 175, .10);
}


.game-thumb img {
    display: block;

    width: 100%;
    height: auto;

    border-radius: 8px;
}


.game-thumb span {
    display: block;

    padding: 7px 3px 4px;

    font-size: 13px;
    line-height: 1.25;

    font-weight: 700;
}


/* =========================================================
   PUBLICITE
   IMPORTANT : TOUJOURS 406px
========================================================= */

.pepsia
{
	display:inline-block;
	width:406px;
}

.game-ad {
    width: 406px;
    min-width: 406px;

    box-sizing: border-box;

    text-align: center;
}


.ad-placeholder {
    width: 406px;
    height: 305px;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8fafc;

    color: #94a3b8;

	margin-bottom: 8px;
    font-size: 12px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.game-description {
    width: 100%;

    box-sizing: border-box;

    margin-top: 20px;
    padding: 20px;

    background: #fff;

    border: 1px solid #e2e8f0;
    border-radius: 14px;

    text-align: left;
}


.game-description h2 {
    margin: 0 0 10px;

    font-size: 19px;

    color: #1e293b;
}


.description-text {
    color: #475569;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   =========================================================
   PREMIUM : ECRAN MOYEN
   =========================================================
   
   A partir de 1000px, on retire les vignettes.
   Le jeu prend toute la place disponible.

========================================================= */

@media (min-width: 801px) and (max-width: 1100px) {

    .premium-layout {
        display: block;

        width: 100%;
        max-width: 800px;

        margin-left: auto;
        margin-right: auto;
    }

    .premium-layout .games-side {
        display: none;
    }

    .premium-layout .game-main {
        width: 100%;
    }

    .premium-layout #openfl-content {
        width: 100%;
        max-width: 800px;
    }
}


/* =========================================================
   =========================================================
   GRATUIT : ECRAN MOYEN
   =========================================================

   1066px minimum sont nécessaires pour :
   
   406 pub + 20 espace + 640 jeu

   Tant que l'écran est assez large :
   
   PUB | JEU

   Les vignettes de droite sont supprimées.

========================================================= */

@media (min-width: 1066px) and (max-width: 1150px) {

    .free-layout {
        display: grid;

        grid-template-columns: 406px 640px;

        column-gap: 20px;

        width: 1066px;
        max-width: none;

        margin-left: auto;
        margin-right: auto;
    }

    .free-layout .games-right {
        display: none;
    }

    .free-layout .game-ad {
        display: block;

        width: 406px;
        min-width: 406px;
    }

    .free-layout .game-main {
        width: 640px;
    }

    .free-layout #openfl-content {
        width: 640px;
        height: 480px;
    }
}


/* =========================================================
   GRATUIT : ENTRE 801 ET 1065px
   =========================================================

   Impossible de faire rentrer :

   406 + 20 + 640

   On garde donc la publicité à 406px mais
   on ne l'affiche plus à côté du jeu.

========================================================= */

@media (min-width: 801px) and (max-width: 1065px) {

    .free-layout {
        display: block;

        width: 100%;
        max-width: 640px;

        margin-left: auto;
        margin-right: auto;
    }

    .free-layout .games-right {
        display: none;
    }

    .free-layout .game-ad {
        display: none;
    }

    .free-layout .game-main {
        width: 100%;
    }

    .free-layout #openfl-content {
        width: 100%;
        max-width: 640px;

        height: auto;

        aspect-ratio: 4 / 3;
    }
}


/* =========================================================
   =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .game-layout {
        display: flex;

        flex-direction: column;

        align-items: center;

        width: 100%;
        max-width: 100%;

        margin: 10px auto 0;

        padding: 0 8px;

        box-sizing: border-box;
    }


    /* -------------------------
       CONTENU PRINCIPAL
    ------------------------- */

    .game-main {
        order: 1;

        width: 100%;
        max-width: 640px;
    }


    /* -------------------------
       TITRE
    ------------------------- */

    .game-title {
        margin-bottom: 12px;

        font-size: 22px;
    }


    /* -------------------------
       JEU
    ------------------------- */

    .premium-layout #openfl-content,
    .free-layout #openfl-content {

        width: 100%;
        max-width: 640px;

        height: auto;

        aspect-ratio: 4 / 3;
    }


    /* -------------------------
       PUBLICITE
    ------------------------- */

    .game-ad {
        display: none;
    }


    /* -------------------------
       VIGNETTES
    ------------------------- */

    .games-side {

        order: 2;

        width: 100%;
        max-width: 500px;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 10px;
    }


    .games-side h3 {

        grid-column: 1 / -1;

        margin: 0 0 2px;
    }


    .game-thumb {
        margin: 0;
    }


    /* -------------------------
       DESCRIPTION
    ------------------------- */

    .game-description {
        margin-top: 15px;

        padding: 15px;
    }


    
}


/* =========================================================
   PETIT MOBILE
========================================================= */

@media (max-width: 500px) {

    .games-side {
        grid-template-columns: repeat(2, 1fr);
    }


    .game-title {
        font-size: 20px;
    }


    .description-text {
        font-size: 14px;
    }


}