*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    background-image: url("images/fond.png");
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
	color: #F8F8F8;
}


/* HEADER */

.site-header{
    width:100%;
    background:#000;
    text-align:center;
}

.header-img{
    width:100%;
    height:auto;
    display:block;
}

/* MENU */

.menu{
    background:#080808;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:42px;
    padding:20px 15px;
    border-top:1px solid rgba(212,175,55,.55);
    border-bottom:1px solid rgba(212,175,55,.55);
}

.menu a{
    color:#d4af37;
    text-decoration:none;
    font-size:1.15rem;
    font-weight:bold;
    transition:.3s;
}

.menu a:hover{
    color:#fff;
    text-shadow:0 0 12px rgba(212,175,55,.8);
}

/* BANNIÈRES */

.ad-banner{
    max-width:728px;
    height:90px;
    margin:25px auto 10px;
    border:2px dashed rgba(212,175,55,.55);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    background:linear-gradient(145deg,#151515,#080808);
    font-weight:bold;
    box-shadow:0 10px 28px rgba(0,0,0,.45);
}

.banner-row{
    max-width:1200px;
    margin:20px auto;
    padding:0 20px;
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.banner-row .banner-box{
    flex:1 1 30%;
}

.banner-box{
    min-height:100px;
    background:linear-gradient(145deg,#151515,#080808);
    border:1px dashed rgba(212,175,55,.45);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    font-weight:bold;
    box-shadow:0 10px 28px rgba(0,0,0,.45);
}

.wide-banner{
    max-width:1200px;
    margin:25px auto;
    padding:0 20px;
}

.wide-banner .banner-box{
    min-height:120px;
}

/* HERO */

.hero{
    text-align:center;
    padding:30px 20px 25px;
}

.hero h1{
    font-size:37px;
    line-height:1.1;
    margin-bottom:18px;
    color:#fff;
    text-shadow:
        0 0 10px rgba(255,255,255,.35),
        0 0 20px rgba(212,175,55,.30);
}

.hero p{
    max-width:950px;
    margin:auto;
    font-size:1.1rem;
    color:#f5f5f5;
}

/* BOUTONS */

.btns{
    margin-top:25px;
}

.btn{
    display:inline-block;
    padding:12px 28px;
    margin:8px;
    border-radius:8px;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    border:2px solid #d4af37;
    transition:.3s;
}

.btn:hover{
    background:#f0c84a;
    transform:translateY(-2px);
}

.btn-outline{
    background:transparent;
    color:#d4af37;
}

.btn-outline:hover{
    background:#d4af37;
    color:#000;
}

/* BLOCS */

.bloc{
    max-width:1150px;
    margin:25px auto;
    padding:28px 36px;
    background:linear-gradient(145deg,#151515,#0b0b0b);
    border:1px solid rgba(212,175,55,.20);
    border-radius:16px;
    box-shadow:
        0 12px 28px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.04);
    text-align:center;
}

.bloc h2{
    color:#d4af37;
    font-size:1.75rem;
    margin-bottom:16px;
}

.bloc p{
    color:#f5f5f5;
    font-size:.98rem;
    line-height:1.75;
    margin-bottom:14px;
}

.bloc-responsable{
    padding:26px 30px;
}

/* CARTES */

.cards{
    max-width:1200px;
    margin:25px auto;
    padding:0 20px;
    display:flex;
    flex-wrap:wrap;
    gap:22px;
}

.card{
    flex:1 1 23%;
}


.card{
    flex:1 1 23%;
}

.card:hover{
    transform:translateY(-5px) scale(1.01);
    border-color:rgba(212,175,55,.50);
    box-shadow:0 18px 35px rgba(212,175,55,.14);
}

.card h3{
    color:#d4af37;
    font-size:1.35rem;
    margin-bottom:12px;
}

.card p{
    font-size:.92rem;
    line-height:1.65;
    margin-bottom:15px;
}

.card a{
    color:#d4af37;
    text-decoration:none;
    font-weight:bold;
    font-size:.92rem;
}

.card a:hover{
    color:#fff;
}

/* FOOTER */

.footer{
    margin-top:35px;
    padding:28px 20px 32px;
    text-align:center;
    background:linear-gradient(180deg,#050505,#0b0b0b);
    border-top:2px solid rgba(212,175,55,.3);
    box-shadow:0 -10px 30px rgba(212,175,55,.08);
}

.footer-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    margin-bottom:14px;
}

.footer-logos img{
    width:auto;
    display:block;
    transition:.3s;
}

/* Logo 18+ */
.logo18{
    height:34px;
}

/* Logo ANJ */
.logoanj{
    height:34px;
    background:#fff;
    padding:3px 6px;
    border-radius:5px;
}

/* Logo EvaluJeu */
.logoeval{
    height:30px;
}

.footer-logos img:hover{
    transform:scale(1.08);
}

.footer p{
    color:#cfcfcf;
    font-size:.88rem;
    margin:10px auto;
    line-height:1.6;
    text-align:center;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin:20px 0;
}

.footer-links a{
    color:#d4af37;
    text-decoration:none;
    font-size:.92rem;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    text-shadow:0 0 10px rgba(212,175,55,.8);
}

.copyright{
    color:#888!important;
}

/* RESPONSIVE */

@media(max-width:950px){

    .cards .card,
.banner-row .banner-box{
    flex:1 1 45%;
}

    .hero h1{
        font-size:42px;
    }
}

@media(max-width:600px){

    .menu{
        gap:16px;
    }

    .menu a{
        font-size:.95rem;
    }

    .hero{
        padding:28px 15px 22px;
    }

    .hero h1{
        font-size:60px;
    }

    .cards .card,
.banner-row .banner-box{
    flex:1 1 100%;
}

    .bloc{
        margin:22px 15px;
        padding:24px 20px;
    }

    .bloc h2{
        font-size:1.35rem;
    }

    .ad-banner{
        margin-left:15px;
        margin-right:15px;
    }

    .logo18{
        height:20px;
    }

    .logoanj{
        height:20px;
    }

    .logoeval{
        height:20px;
    }
}
/* =========================
   BLOC OFFRES PAGE ACCUEIL
========================= */

.bloc-offres{
    max-width:1200px;
    margin:60px auto;
    padding:0 30px;
    text-align:center;
}

.bloc-offres h2{
    color:#ffd700;
    font-size:32px;
    margin-bottom:25px;
}

.bloc-offres p{
    color:#ffffff;
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
}

.btn-jouer{
    display:inline-block;
    background:#ffd700;
    color:#000000;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;
    transition:0.3s;
}

.btn-jouer:hover{
    transform:translateY(-2px);
    background:#ffffff;
}
.texte-mis-en-avant{
    max-width:1000px;
    margin:30px auto;
    padding:25px;
    border:1px solid #ffd700;
    border-radius:15px;
    text-align:center;
    color:#ffffff;
}
.liens-poker {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.liens-poker li {
    margin: 15px 0;
}

.liens-poker a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.liens-poker a:hover {
    color: #ffffff;
}