*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background-image: url("images-jeux-de-tirages/fond.png");
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
	color: #FFFFFF;
}

/* HEADER */

.page-header img{
    width:100%;
    display:block;
}

/* MENU */

.menu{
    width:90%;
    max-width:1200px;
    margin:0 auto 15px auto;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    padding:18px;

    background:#000;
    border:1px solid #d4af37;
    border-radius:12px;
}

.menu a{
    color:#d4af37;
    text-decoration:none;
    font-weight:bold;
    font-size:16px;
}

.menu a:hover{
    color:#ffffff;
}

/* ENCADREMENTS */

.hero-seo,
.bloc,
.bloc-avantages,
.bloc-offre-principale,
.bloc-seo-offres,
.seo-accueil,
.liens-rapides,
.calendrier-tirages,
.derniers-resultats,
.pub-top,
.pub-bottom{
    width:90%;
    max-width:1200px;
    margin:15px auto;
    padding:35px;
    background:rgba(5,20,55,0.92);
    border:2px solid #d4af37;
    border-radius:20px;
    box-shadow:0 0 20px rgba(212,175,55,0.15);
    text-align:center;
}

/* TITRES */

.hero-seo h1{
    color:#ffd700;
    font-size:25px;
    margin-bottom:20px;
}

.hero-seo h2,
.bloc h2,
.bloc-avantages h2,
.bloc-offre-principale h2,
.bloc-seo-offres h2,
.seo-accueil h2,
.liens-rapides h2,
.calendrier-tirages h2,
.derniers-resultats h2{
    color:#ffd700;
    font-size:28px;
    margin-bottom:20px;
}

/* TEXTES */

.hero-seo p,
.bloc p,
.bloc-avantages p,
.bloc-offre-principale p,
.bloc-seo-offres p,
.seo-accueil p{
    color:#ffffff !important;
    font-size:18px;
    line-height:1.8;
    margin-bottom:15px;
}

/* BLOCS AVEC ICONE */

.bloc{
    display:flex;
    gap:25px;
    align-items:flex-start;
    text-align:left;
}

.icone{
    min-width:70px;
    height:70px;
    border:1px solid #d4af37;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    background:rgba(91,44,131,0.25);
}

.texte{
    flex:1;
}

/* BOUTONS */

.btn-action,
.bloc-offre-principale a{
    display:inline-block;
    background:#ffd700;
    color:#000 !important;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    font-size:18px;
    margin-top:15px;
}

.btn-action:hover,
.bloc-offre-principale a:hover{
    background:#ffffff;
}

/* PUB */

.pub-placeholder{
    height:160px;
    border:2px solid #d4af37;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffd700;
    background:rgba(5,20,55,0.92);
    font-size:22px;
    font-weight:bold;
    box-shadow:0 0 15px rgba(212,175,55,0.15);
}

/* TABLEAUX */

.table-tirages,
.table-resultats{
    width:100%;
    border-collapse:collapse;
    background:#071126;
}

.table-tirages th,
.table-resultats th{
    background:#111;
    color:#ffd700;
    padding:15px;
    border:1px solid #444;
}

.table-tirages td,
.table-resultats td{
    color:#ffffff;
    padding:15px;
    border:1px solid #444;
}

.table-tirages tr:hover,
.table-resultats tr:hover{
    background:#10244d;
}

.table-resultats a{
    color:#ffd700;
    text-decoration:none;
    font-weight:bold;
}

/* LIENS RAPIDES */

.liens-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.liens-grid a{
    display:inline-block;
    background:#071126;
    border:1px solid #ffd700;
    color:#ffd700;
    padding:14px 25px;
    border-radius:12px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 0 12px rgba(255,215,0,.25);
}

.liens-grid a:hover{
    background:#ffd700;
    color:#000;
}

/* RESPONSABLE */

.responsable{
    text-align:center;
    padding:40px 20px;
    background:rgba(0,0,0,0.85);
}

.responsable-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.responsable-logos img{
    height:20px;
    width:auto;
}

.responsable p{
    font-size:14px;
    color:#dddddd;
    line-height:1.7;
    margin-bottom:10px;
}

/* FOOTER */

footer{
    border-top:1px solid #ffd85a;
    padding:30px 20px;
    text-align:center;
    background:rgba(0,0,0,0.9);
}

footer p{
    margin:8px 0;
    color:#ffffff;
}

footer a{
    color:#ffd85a;
    text-decoration:none;
}

footer a:hover{
    color:#ffffff;
}

/* MOBILE */

@media(max-width:768px){

    .menu{
        width:95%;
        gap:12px;
        padding:14px;
    }

    .menu a{
        font-size:14px;
    }

    .hero-seo,
    .bloc,
    .bloc-avantages,
    .bloc-offre-principale,
    .bloc-seo-offres,
    .seo-accueil,
    .liens-rapides,
    .calendrier-tirages,
    .derniers-resultats,
    .pub-top,
    .pub-bottom{
        width:95%;
        padding:22px;
    }

    .hero-seo h1,
    .bloc-avantages h2,
    .bloc-offre-principale h2,
    .bloc-seo-offres h2,
    .seo-accueil h2{
        font-size:30px;
        line-height:1.3;
    }

    .hero-seo p,
    .bloc-avantages p,
    .bloc-offre-principale p,
    .bloc-seo-offres p,
    .seo-accueil p{
        font-size:16px;
        line-height:1.7;
    }

    .bloc{
        flex-direction:column;
        text-align:center;
    }

    .icone{
        margin:auto;
    }

    .btn-action{
        font-size:16px;
        padding:12px 25px;
    }
}