/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Container */
.conteneur-limiteur {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.navire-principal {
    background: linear-gradient(135deg, #002654 0%, #ffffff 50%, #ce1126 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.rangee-flexible {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.marque-identite {
    display: flex;
    align-items: center;
    gap: 10px;
}
.marque-identite img {
    height: 80px;
    width: auto;
}
.logo-text {
    font-size: 24px; 
    font-weight: bold;    
    background: linear-gradient(to right, #002654, #ffffff, #ce1126);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #002654;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
/* Navigation */
.navigation-primaire {
    flex: 1;
    margin: 0 30px;
}

.liste-navigation {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
}

.element-nav {
    position: relative;
}

.lien-principal {
    color: #002654;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    transition: color 0.3s ease;
    background: rgba(255,255,255,0.9);
    border-radius: 5px;
}

.lien-principal:hover {
    color: #ce1126;
}

.sous-menu-deroulant {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 5px;
    margin-top: 10px;
}

.element-nav:hover .sous-menu-deroulant {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sous-menu-deroulant li {
    border-bottom: 1px solid #f0f0f0;
}

.sous-menu-deroulant li:last-child {
    border-bottom: none;
}

.sous-menu-deroulant a {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sous-menu-deroulant a:hover {
    background: #f8f9fa;
    color: #ce1126;
    padding-left: 25px;
}

/* French Flag */
.drapeau-francais {
    display: flex;
    width: 60px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bande-bleue {
    flex: 1;
    background: #002654;
}

.bande-blanche {
    flex: 1;
    background: #ffffff;
}

.bande-rouge {
    flex: 1;
    background: #ce1126;
}

/* Main Title Section */
.section-titre-principal {
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    padding: 20px 0 20px;
    text-align: center;
}

.titre-monumental {
    font-size: 48px;
    font-weight: 300;
    color: #002654;
    letter-spacing: -1px;
}

/* Article Meta */
.meta-article-ligne {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.rangee-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: #6c757d;
}

.date-mise-jour {
    font-style: italic;
}

.auteur-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.photo-auteur-mini {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.nom-auteur {
    font-weight: 500;
    color: #002654;
}

/* Information Block */
.bloc-information {
    background: #ffffff;
    padding: 40px 0;
}

.texte-introduction {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    text-align: center;
    margin: 0 auto;
}

/* Casino Showcase - New Horizontal Cards */
.vitrine-marques {    
    background: #f8f9fa;
}

.grille-cartes {
    display: flex;
    flex-direction: column;
}

.carte-etablissement-horizontale {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
	margin: 10px;
}

.carte-etablissement-horizontale:hover {
    border-color: #ce1126;
    box-shadow: 0 5px 25px rgba(90,159,161,0.2);
}

.zone-logo {
    border-radius: 10px;
    display: flex;
	flex-direction: column-reverse;	
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 130px;
}

.zone-logo img {
    max-width: 160px;
    max-height: 100px;
    object-fit: contain;
}
.nom-casino {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 610;    
	text-decoration: underline;
}

.zone-centrale {
    flex: 1;
}

.titre-offre {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.liste-avantages {
    list-style: none;
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}

.liste-avantages li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.liste-avantages li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a9fa1;
    font-weight: bold;
    font-size: 16px;
}

.zone-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.bouton-jouer {
    background: #3CB371;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(90,159,161,0.3);
}

.bouton-jouer:hover {
    background: #329d3f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90,159,161,0.4);
}

.note-evaluation {
    text-align: center;
}

.valeur-note {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.etoiles-note {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Text Block Style */
.bloc-texte-style {
    background: #ffffff;
    padding: 20px 0;
}

.bloc-texte-style h2 {
    font-size: 32px;
    color: #002654;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
}

.bloc-texte-style h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.bloc-texte-style p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1px;
}

/* NEW STYLES for Tables and Lists */
.bloc-texte-style table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    font-size: 15px;
}

.bloc-texte-style thead tr {
    background-color: #002654;
    color: #ffffff;
    text-align: left;
    font-weight: 600;
}

.bloc-texte-style th,
.bloc-texte-style td {
    padding: 14px 18px;
    text-align: left;
}

.bloc-texte-style tbody tr {
    border-bottom: 1px solid #dee2e6;
    background-color: #ffffff;
}

.bloc-texte-style tbody tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

.bloc-texte-style tbody tr:last-of-type {
    border-bottom: 2px solid #002654;
}

.bloc-texte-style ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 25px;
}

.bloc-texte-style li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #495057;
}

.bloc-texte-style li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: #ce1126;
    font-size: 14px;
    line-height: 1.7;
}

.table-responsive-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1.5rem;
}
/* END NEW STYLES */

/* FAQ Section */
.section-questions-reponses {
    background: #f8f9fa;
    padding: 60px 0;
}

.conteneur-faq {
    max-width: 800px;
    margin: 0 auto;
}

.element-question {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	margin-top: 15px;
}

.titre-question {
    padding: 20px 25px;
    font-size: 16px;
    color: #002654;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.titre-question:hover {
    background: #f8f9fa;
}

.titre-question:after {
    content: "+";
    font-size: 16px;
    color: #ce1126;    
    transition: transform 0.3s ease;
}

.element-question[open] .titre-question:after {
    transform: rotate(45deg);
}

.contenu-reponse {
    padding: 0 25px 25px;
    color: #495057;
    line-height: 1.8;
}

/* Expert Author Section */
.section-expert-auteur {
    background: #ffffff;
    padding: 60px 0;
}

.carte-expert {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.photo-expert img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.bio-expert {
    flex: 1;
}

.nom-expert {
    font-size: 24px;
    font-weight: 600;
    color: #002654;
    margin-bottom: 15px;
}

.description-expert {
    color: #495057;
    line-height: 1.8;
}

/* Footer */
.pied-page-principal {
    background: #002654;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.droits-reserves p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.8;
}

/* Cookie Banner */
.banniere-avertissement {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1001;
}

.contenu-avertissement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.contenu-avertissement p {
    font-size: 14px;
    flex: 1;
}

.bouton-accepter {
    background: #ce1126;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.bouton-accepter:hover {
    background: #e74c3c;
}

/* Back to Top */
.retour-haut {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #002654;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.retour-haut:hover {
    background: #ce1126;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rangee-flexible {
        flex-direction: column;
		align-items: flex-start;
		position: relative;
        gap: 20px;
    }
    
    .navigation-primaire {
        margin: 0;
    }
    
    .liste-navigation {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .sous-menu-deroulant {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        display: none;
    }
    
    .element-nav:hover .sous-menu-deroulant {
        display: block;
    }
    
    .titre-monumental {
        font-size: 32px;
    }
    
    .rangee-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .carte-etablissement-horizontale {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .zone-logo {
        width: 100%;
        max-width: 250px;
    }
    
    .titre-offre {
        font-size: 18px;
    }
    
    .liste-avantages {
        text-align: left;
        max-width: 100%;
    }
    
    .zone-action {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .bouton-jouer {
        padding: 10px 25px;
    }
    
    .carte-expert {
        flex-direction: column;
        text-align: center;
    }
    
    .contenu-avertissement {
        flex-direction: column;
        text-align: center;
    }
    
    .retour-haut {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
	.burger-menu-toggle {
        display: block; 
    }

    .navigation-primaire {
        display: none; 
        width: 100%;
        margin: 0;
        text-align: center;
        background-color: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        padding-top: 20px;
    }

    .navigation-primaire.active {
        display: block; 
    }

    .liste-navigation {
        flex-direction: column;
        gap: 0;
    }

    .element-nav {
        width: 100%;
    }

    .lien-principal {
        display: block;
        width: 100%;
        padding: 15px;
        background: transparent;
        border-radius: 0;
        border-bottom: 1px solid #e9ecef;
    }
    
    .element-nav:last-child .lien-principal {
        border-bottom: none;
    }
}


@media (max-width: 480px) {
    .titre-monumental {
        font-size: 24px;
    }
    
    .texte-introduction {
        font-size: 16px;
    }
    
    .titre-offre {
        font-size: 14px;
    }
    
    .liste-avantages {
        font-size: 14px;
    }
    
    .zone-action {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }
    
    .bouton-jouer {
        width: 100%;
        max-width: 200px;
    }
    
    .valeur-note {
        font-size: 20px;
    }
    
    .etoiles-note {
        font-size: 14px;
    }
}



/* Custom Content Blocks */
.bldesign {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.bldesign:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.bldesign h3 {
    color: #002654;
    font-size: 24px;
    border-bottom: 2px solid #ce1126;
    padding-bottom: 10px;
    margin-bottom: 20px;
	margin-top: 1px;
}

.bldesign ul {
    list-style: none;
    padding-left: 0;
}

.bldesign ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.bldesign ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a9fa1;
    font-weight: bold;
    font-size: 16px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .bldesign {
        padding: 20px;
    }

    .bldesign h3 {
        font-size: 20px;
    }
}
.image-container {
  display: grid;
  place-items: center;
  margin: 2rem 0;
}

.responsive-image {
  width: 100%;
  max-width: 800px; 
  height: auto;
  object-fit: contain;
   border: 2px solid #f0f0f0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.responsive-image:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}