/* === Reset CSS (Pour uniformiser le rendu des éléments dans tous les navigateurs) === */
:root {
    /* Couleurs */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light: #f0f0f0;
    --color-dark: #1c1c1c;
    --color-darker: #1e1e1e;
    --color-medium-dark: #2c2c2c;
    --color-gray: #333333;
    --color-gray-light: #bebebe;
    --color-gray-medium: #d0d0d0;
    --color-gray-dark: #444444;
    --color-primary: #ff9800;
    --color-primary-light: #ffc107;
    --color-primary-dark: #e68a00;
    --color-secondary: #ff9f43;
    --color-success: #28a745;
    --color-success-dark: #218838;
    --color-warning: #ffb400;
    --color-placeholder: #bbbbbb;
    --color-accent: #ff5722;
    --color-accent-dark: #e64a19;
    --color-shadow: rgba(0, 0, 0, 0.5);
    --color-shadow-light: rgba(0, 0, 0, 0.1);
    --color-shadow-medium: rgba(0, 0, 0, 0.2);
    --color-shadow-dark: rgba(0, 0, 0, 0.3);

    /* Polices */
    --font-family: Roboto, sans-serif;
    --font-size-small: 0.9em;
    --font-size-base: 1em;
    --font-size-medium: 1.1em;
    --font-size-large: 1.2em;
    --font-size-xlarge: 1.5em;
    --font-size-xxlarge: 2em;
    --font-size-xxxlarge: 2.5em;
    --line-height-base: 1.6;

    /* Espacements */
    --padding-small: 5px;
    --padding-base: 10px;
    --padding-medium: 15px;
    --padding-large: 20px;
    --padding-xlarge: 30px;

    --margin-small: 5px;
    --margin-base: 10px;
    --margin-medium: 15px;
    --margin-large: 20px;
    --margin-xlarge: 30px;

    /* Bordures */
    --border-radius-small: 5px;
    --border-radius-medium: 8px;
    --border-radius-large: 10px;
    --border-radius-xlarge: 15px;

    /* Ombres */
    --box-shadow: 0 4px 8px var(--color-shadow-medium);
    --box-shadow-hover: 0 8px 16px var(--color-shadow-dark);
}
/* Container for the language selector */
.language-selector {
    display: inline-block;
    margin: 10px;
    vertical-align: middle;
  }
  
  /* Style the dropdown */
  .language-selector select {
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }
  
  /* Change border color on hover and focus */
  .language-selector select:hover,
  .language-selector select:focus {
    border-color: #007BFF;
    outline: none;
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === Body === */
body {
    background-image: url('/static/images/hellcase_banner2.avif'); /* Assurez-vous de remplacer l'URL par la bonne image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: var(--font-family);
    color: var(--color-light);
    font-size: 18px;
    line-height: 1.6;
    padding-top: 150px;
    overflow-x: hidden;
}

/* === Navbar === */
.navbar {
    background-color: var(--color-dark);
    color: var(--color-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 2px 4px var(--color-shadow);
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-logo {
    height: 100px;
    margin-right: 20px;
}

.hamburger-menu {
    background: none;
    border: none;
    color: var(--color-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.navbar-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-light);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar-item i {
    font-size: 2rem;
    font-weight: bold;
}

.navbar-item:hover {
    color: var(--color-secondary);
}
.grid {
    max-width: 100%; /* Ensures grid does not exceed screen width */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box; /* Ensures padding is included in width */
    justify-self: center;
}
.collapsible-content img {
    max-width: 100%;
    overflow: hidden;
}
/* === Responsive Design pour Navbar === */
@media (max-width: 768px) {
    .navbar {
        max-height: 12vh;
    }
    .promo-card {
        max-width: 70%;
    }
    .grid {

        max-width: 100%;
        padding: 0.5rem;
        align-items: normal;
    }
    .hero-section {
        justify-self: center;
        max-width: 100%; /* Prevent hero section from exceeding parent width */
        padding: 60px 20px;
        text-align: center;
        background-color: rgba(30, 30, 30, 0.8);
        color: #fff;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .navbar-left {
        max-width: fit-content;
    }
    .navbar-menu {
        display: none; /* Hide the menu initially on smaller screens */
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    /* Display menu when menu icon is clicked (using a class toggle) */
    .navbar.active .navbar-menu {
        display: flex;
    }
    .hamburger-menu {
        display: block;
    }

    .navbar-items {
        display: none;
        flex-direction: column;
        background-color: var(--color-dark);
        width: 100%;
        position: absolute;
        top: 12vh; /* Positionner sous la navbar */
        left: 0;
        padding: 10px;
    }

    .navbar-items.show {
        display: flex;
    }

    .navbar-item {
        padding: 10px 0;
        width: 100%;
    }

    .navbar-left {
        flex: 1;
    }
}

/* === Conteneur FAQ === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--color-medium-dark);
    border-radius: 8px;
}

.faq-section {
    margin-bottom: 40px;
}

.faq-card {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.faq-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* === Formulaire FAQ === */
.faq-form-container {
    background-color: var(--color-darker);
    padding: 20px;
    border-radius: 5px;
}

.faq-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #666;
    background-color: #333;
    color: var(--color-light);
}

.faq-input::placeholder {
    color: #bbb;
}

.faq-button {
    background-color: var(--color-success);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.faq-button:hover {
    background-color: var(--color-success-dark);
}

/* === Responsive Design pour FAQ === */
@media (max-width: 768px) {
    .faq-container {
        padding: 10px;
    }
}

/* === Conteneur des Avis === */
.avis-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--color-medium-dark);
    border-radius: 8px;
}

/* === Carousel d'Avis === */
.avis-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.avis-card {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    min-width: 30%;
    flex: 1;
}

/* === Cartes d'Avis === */
.avis-section {
    margin-bottom: 40px;
}

.avis-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.avis-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* === Système d'Étoiles pour les Avis === */
.stars {
    color: var(--color-warning);
    margin-bottom: 10px;
}

.avis-average {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-warning);
}

/* === Formulaire d'Avis === */
.avis-form-container {
    background-color: var(--color-darker);
    padding: 20px;
    border-radius: 5px;
}

.avis-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.avis-input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #666;
    background-color: #333;
    color: var(--color-light);
}

.avis-input::placeholder {
    color: #bbb;
}

.avis-button {
    background-color: var(--color-success);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.avis-button:hover {
    background-color: var(--color-success-dark);
}

/* === Responsive Design pour Avis === */
@media (max-width: 768px) {
    .avis-container {
        padding: 10px;
    }

    .avis-carousel {
        flex-wrap: wrap;
    }

    .avis-card {
        min-width: 100%;
        margin-bottom: 20px;
    }
}

/* Container Styling */
.guides-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #e0e0e0;
    font-family: var(--font-family);
    text-align: center;
}

/* Carousel Section */
.guides-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.guide-card {
    background-color: var(--color-medium-dark);
    color: #fff;
    border-radius: 15px;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    box-shadow: 0 4px 8px var(--color-shadow-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures button aligns at the bottom */
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.4), 
                0 0 10px rgba(255, 152, 0, 0.6);
}

.guide-card h2 {
    font-size: 1.5em;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: bold;
}

.guide-card p {
    font-size: 1em;
    color: var(--color-gray-medium);
    margin-bottom: 20px;
}

.guide-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--color-primary);
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    align-self: center; /* Centers the button horizontally */
    margin-top: auto; /* Pushes the button to the bottom of the card */
}

.guide-button:hover {
    background-color: var(--color-primary-light);
}

/* Footer Content Section */
.footer-content {
    background-color: #2e2e2e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px var(--color-shadow-dark);
    margin-top: 30px;
    text-align: left;
}

.footer-content h2 {
    font-size: 2em;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.footer-content h3 {
    font-size: 1.5em;
    color: var(--color-primary);
    margin-top: 20px;
}

.footer-paragraph {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--color-gray-medium);
    margin-bottom: 20px;
}

.user-reviews {
    list-style-type: none;
    padding: 0;
}

.user-reviews li {
    font-size: 1.1em;
    margin-bottom: 10px;
    background-color: #333;
    padding: 10px;
    border-radius: 8px;
}

.user-reviews strong {
    color: var(--color-primary);
}

.guide-card a {
    display: block;
    margin: 10px auto;
    text-align: center;
    padding: 12px 20px; /* Augmente légèrement le padding pour une meilleure interaction sur mobile */
    width: 70%; /* Rend les boutons plus larges sur mobile */
    max-width: 300px; /* Limite la largeur maximale pour éviter les boutons trop larges */
}

/* === Responsive Design pour Guides === */
@media (max-width: 768px) {

    .guides-container {
        padding: 10px;
    }

    .guides-carousel {
        flex-wrap: wrap;
    }

    .guide-card {
        min-width: 100%;
        margin-bottom: 20px;
    }
}
/* === Conteneur des Guides === */
.guide-skins-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--color-medium-dark);
    border-radius: 8px;
}

.guide-skins-container h1 {
    margin-bottom: 30px; /* Ajoute un espacement sous le titre */
}

.guide-skins-container p {
    margin-bottom: 20px; /* Ajoute un espacement sous le paragraphe */
}

/* === Images des Guides === */
.guide-skins-images {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.guide-skins-image {
    max-width: 45%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px var(--color-shadow);
}

/* === Bouton Trade URL === */
.btn-trade-url {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-weight: bold;
}

.btn-trade-url:hover {
    background-color: var(--color-primary-dark);
}

/* === Responsive Design pour Guides === */
@media (max-width: 768px) {
    .guide-skins-container {
        padding: 10px;
    }

    .guide-skins-images {
        flex-direction: column;
        align-items: center;
    }

    .guide-skins-image {
        max-width: 100%;
    }
}

/* === Conteneur des Guides === */
.guide-max-gains-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--color-medium-dark);
    border-radius: 8px;
}

.guide-max-gains-container h1 {
    margin-bottom: 30px;
}

.guide-max-gains-container p {
    margin-bottom: 20px;
}

.guide-max-gains-container ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.guide-max-gains-container li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* === Images des Guides === */
.guide-max-gains-images {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.guide-max-gains-image {
    max-width: 45%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px var(--color-shadow);
}

/* === Responsive Design pour Guides === */
@media (max-width: 768px) {
    .guide-max-gains-container {
        padding: 10px;
    }

    .guide-max-gains-images {
        flex-direction: column;
        align-items: center;
    }

    .guide-max-gains-image {
        max-width: 100%;
    }
}
/* === Conteneur Principal === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.tcontainer {
    background-color: transparent;
    box-shadow: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}



/* Hero Section */
.hero-section {
    justify-self: center;
    max-width: 100%;
    padding: 60px 20px;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.8); /* Set the background color with 80% opacity */
    color: #fff;
    border-radius: 10px; /* Optional: Add rounded corners */
    box-sizing: border-box;
}
/* View All Button Styling */
.view-all {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: var(--color-primary); /* Primary color */
    color: var(--color-darker); /* Dark color for contrast */
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px var(--color-shadow-medium); /* Subtle shadow */
}

/* Hover effect */
.view-all:hover {
    background-color: var(--color-primary-light); /* Lighter shade on hover */
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 8px 16px var(--color-shadow-dark); /* Increased shadow */
}

/* Focus effect */
.view-all:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
}

.hero-title {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* Casino Cards */
.casino-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    padding: 0 20px;
}

.casino-card {
    width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px var(--color-shadow-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}


.casino-card:hover {
    animation: glow 0.5s ease-in-out;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--color-shadow-dark), 
                0 0 20px rgba(255, 152, 0, 0.7), /* Glowing orange */
                0 0 40px rgba(255, 152, 0, 0.5), /* Further glow */
                0 0 60px rgba(255, 152, 0, 0.3); /* Distant glow */
}

.casino-card-content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    padding: 15px;
    text-align: center;
}

/* Promo Codes Section */
.section-promo-codes {
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
    width: 1150px;
    max-width: 100%;
    background-color: #2b2b2b;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

.promo-pagecontainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    background-color: #333;
    padding: 16px 32px;
}

.rich-content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.rich-content-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.rich-content-table th,
.rich-content-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.rich-content-table th {
    background-color: #f09738;
    font-weight: bold;
}

/* Rich Content Section */
.rich-content {
    margin-top: 20px;
}

.rich-content h3 {
    font-size: 1.3em;
    color: var(--color-gray-light);
    margin-top: 15px;
    margin-bottom: 8px;
}

.rich-content p {
    margin: 8px 0;
    font-size: 1em;
    line-height: 1.6;
}

.rich-content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.promo-codes-container {

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.promo-card {
    background-color: var(--color-medium-dark);
    color: #fff;
    border-radius: 15px;
    min-width: 250px;
    max-width: 300px;
    padding: 20px;
    box-shadow: 0 4px 8px var(--color-shadow-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures button aligns at the bottom */
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.4), 
                0 0 10px rgba(255, 152, 0, 0.6);
}

.promo-card h2 {
    font-size: 1.5em;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: bold;
}

.promo-card p {
    font-size: 1em;
    color: var(--color-gray-medium);
    margin-bottom: 20px;
}



.cta-button {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 15px;
    background-color: var(--color-primary);
    color: var(--color-darker);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background-color: var(--color-primary-light);
}

/* Guides Section */
.section-guides {
    justify-self: center;
    max-width: 100%;
    background-color: #2b2b2b;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
}

.guides-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.guide-card {
    width: 200px;
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--color-shadow-medium);
}

.guide-thumbnail {
    width: 100%;
    border-radius: 5px;
}

/* Footer Content Section */
.section-footer-content {
    margin-top: 40px;
    justify-self: center;
    padding: 40px 20px;
    background-color: var(--color-darker);
    color: #e0e0e0;
    text-align: left;
    max-width: 1100px;
}

.section-footer-content h2 {
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-footer-content p {
    margin-bottom: 15px;
}

.bottom-content-image {
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
}

.bottom-content-video {
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .casino-cards, .promo-codes-container, .guides-container {
        flex-direction: column;
        align-items: center;
    }
}



/* === Sections avec Conteneurs === */
.section {
    background-color: #333;
    margin: 40px 0;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--color-shadow-dark);
    transition: box-shadow 0.3s ease;
}

.section:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.section ul {
    list-style: none;
}

.section a {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 10px var(--color-shadow-dark);
}

.section a:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* Base Styles */
.promo-table {
    width: 100%;
    border-collapse: collapse;
}

.promo-table th,
.promo-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #333;
}

.promo-table thead {
    display: none; /* Hide headers on mobile */
}

.promo-table tr {
    display: block;
    margin-bottom: 1rem;
    background-color: var(--color-darker); /* Dark background for better contrast */
    color: #e0e0e0; /* Light text color for readability */
    border-radius: 8px;
    overflow: hidden;
    padding: 1rem;
}

.promo-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 1em;
    border-bottom: 1px solid #444;
}

.promo-table td:last-child {
    border-bottom: none;
}

/* Add label for each data cell */
.promo-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #bbb;
    flex: 1;
}

.button-container {
    display: flex;
    gap: 10px; /* Space between buttons */
    align-items: center; /* Align buttons in the middle vertically */
}
/* Buttons */
.promo-button, .promo-button.direct-button {
    font-size: 1em; /* Ensure consistent text size */
    padding: 10px 15px; /* Use identical padding */
    margin: 0; /* Remove margins */
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    display: inline-block; /* Ensure buttons are inline-block */
    width: auto; /* Or set width explicitly */
    box-sizing: border-box; /* Ensure padding is included in width/height */
}

/* Spacing between buttons */
.promo-table .promo-button + .promo-button {
    margin: 20px;
}



/* === Images dans les Guides === */
.guide-thumbnail {
    width: 100%;
    max-width: 350px;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--color-shadow-dark);
    transition: transform 0.3s ease;
}

.guide-thumbnail:hover {
    transform: scale(1.1);
}

/* Vidéo responsive pour FAQ */
.faq-video-responsive {
    width: 100%;
    max-width: 1920px; /* Taille maximale sur grand écran */
    height: auto;
    margin: 20px auto;
    display: block;
}

@media (max-width: 768px) {
    .faq-video-responsive {
        max-width: 100%; /* Réduire la taille sur mobile */
    }
}


/* === Ombres et Couleurs Améliorées === */
.avis-card, .faq-card, .guide-card {
    box-shadow: 0 4px 15px var(--color-shadow-dark);
    transition: box-shadow 0.3s ease;
}

.avis-card:hover, .faq-card:hover, .guide-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.faq-card h2, .guide-card h2, .avis-card h2 {
    color: var(--color-secondary);
}

/* === Boutons Génériques === */
.faq-button, .avis-button {
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px var(--color-shadow-dark);
}

.faq-button:hover, .avis-button:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-5px);
}

/* === Paragraphes du bas de page === */
.footer-paragraph {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}


/* === Responsive Design === */
@media (max-width: 768px) {
    .section {
        margin: 20px 0; /* Réduit l'espacement entre les sections sur mobile */
        padding: 30px 15px; /* Ajuste le padding pour plus de compacité */
    }
    .section a {
        display: block;
        margin: 10px auto;
        text-align: center;
        padding: 12px 20px; /* Augmente légèrement le padding pour une meilleure interaction sur mobile */
        width: 70%; /* Rend les boutons plus larges sur mobile */
        max-width: 300px; /* Limite la largeur maximale pour éviter les boutons trop larges */
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .navbar {
        text-align: center;
    }

    .container {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    .navbar-logo-text {
        display: none
    }

    .hero-title {
        font-size: 2rem;
    }
    .navbar-left {
        margin-right: auto;
        margin-left: auto;
    }

    .navbar a {
        display: block;
        margin-bottom: 10px;
    }
}

/* === Styles pour le Guide de Récupération des Skins === */

/* Conteneur principal */
.guide-skins-container {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    color: var(--color-light);
    line-height: 1.6;
}

/* Titres et paragraphes */
.guide-skins-container h1 {
    font-size: 2.5em;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 20px;
}

.guide-skins-container p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Liste ordonnée des étapes */
.guide-skins-container ol {
    counter-reset: list-counter;
    list-style-type: none;
    padding-left: 20px;
}

.guide-skins-container ol li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1em;
}

.guide-skins-container ol li::before {
    content: counter(list-counter) ".";
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.4em;
}

/* Bouton Trade URL */
.btn-trade-url {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--color-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-trade-url:hover {
    background-color: #e07c33;
}

/* Images des guides */
.guide-skins-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--color-shadow-medium);
}

/* Footer Content Section */
.footer-content {
    margin-top: 40px;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 10px;
}

.footer-content h2, .footer-content h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.footer-paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Liste des avis d'utilisateurs */
.user-reviews {
    margin: 20px 0;
    list-style: none;
    padding-left: 0;
}

.user-reviews li {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* FAQ Items */
.faq-item {
    margin-top: 20px;
    padding: 20px;
    background-color: #333;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .guide-skins-container h1 {
        font-size: 2em;
    }

    .guide-skins-images {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        padding: 20px;
    }
}


/* === Table des Codes Promo === */
.promo-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

.promo-table th, .promo-table td {
    border: 1px solid #333;
    padding: 15px;
    text-align: left;
}

.promo-table th {
    background-color: #444;
    color: var(--color-light);
    font-weight: bold;
}

.promo-table td {
    background-color: var(--color-medium-dark);
}


.promo-table .promo-button:hover {
    background-color: #0056b3;
}

/* === Responsive Design pour Table des Codes Promo === */
@media (max-width: 768px) {
    .promo-table th, .promo-table td {
        display: block;
        width: 100%;
    }

    .promo-table td {
        margin-bottom: 15px;
    }

    .promo-table .promo-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .promo-table th, .promo-table td {
        padding: 10px;
    }
}

/* === Styles pour le bouton "Retour aux Guides" === */
/* Main Container */
.guide-page-container {
    max-width: 1400px;
    margin: auto;
    padding: 20px;
    color: #e0e0e0;
    background-color: var(--color-dark);
    border-radius: 10px;
}

/* Header Section */
/* Header Section */
.guide-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.guide-title {
    font-size: 2.8em;
    color: var(--color-white);
    font-weight: bold;
    margin-bottom: 10px;
}

.guide-description {
    font-size: 1.2em;
    color: #b0b0b0;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Recommendation Card Styling */
.guide-recommendations {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allows cards to wrap to a new row on smaller screens */
    margin-bottom: 30px;
    justify-content: space-evenly;
}

/* Recommendation Card */
.recommendation-card {
    background-color: var(--color-gray);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 30%; /* Default width for larger screens */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .recommendation-card {
        width: 45%; /* Two cards per row on tablet screens */
    }
}

@media (max-width: 480px) {
    .recommendation-card {
        width: 100%; /* One card per row on small phone screens */
    }
}

.recommendation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-primary);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Card Title */
.recommendation-card h2 {
    color: var(--color-primary);
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Card Text */
.recommendation-card p {
    font-size: 0.9em;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1; /* Allows content to grow but ensures button stays at the bottom */
}

/* CTA Button */
.cta-button {
    padding: 16px 32px;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: var(--color-accent-dark);
    box-shadow: 0 6px 12px var(--color-shadow-medium);
}

/* Styling for the main promo button */
.promo-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.promo-details-table td {
    padding: 10px;
    border: 1px solid #ddd;
    vertical-align: top;
}

.promo-details-table td:first-child {
    font-weight: bold;
    width: 30%;
}

.promo-button {
    background-color: var(--color-accent); /* Bright color to attract attention */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px var(--color-shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: pulse 2s infinite;
}


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 87, 34, 0.5);
    }
}

/* Hover effect */
.promo-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(255, 87, 34, 0.6);
}

.promo-button:hover {
    background-color: var(--color-primary-dark);
}

.direct-button {
    background-color: var(--color-accent);
}

.direct-button:hover {
    background-color: var(--color-accent-dark);
}



/* Comparison Table Section */
.comparison-table {
    margin-bottom: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    color: var(--color-gray-medium);
    background-color: #2b2b2b;
}

.comparison-table th, .comparison-table td {
    padding: 12px;
    border: 1px solid #444;
    text-align: left;
}

.comparison-table th {
    background-color: #333;
    color: #e0e0e0;
}

.comparison-table tr:nth-child(even) {
    background-color: #2a2a2a;
}

.comparison-table .cta-cell {
    text-align: center;
}

.comparison-table .table-cta-button {
    padding: 8px 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.comparison-table .table-cta-button:hover {
    background-color: #ff7300;
}
@media (max-width: 768px) {
    .comparison-table {
        max-width: 80%;
    }
}
/* Bottom Content Section Styling */
/* Bottom Content Section Styling */
.guide-bottom-content {
    padding: 20px;
    background-color: #2e2e2e;
    border-radius: 8px;
    margin-top: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

.guide-bottom-content h2 {
    font-size: 1.8em;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.guide-bottom-content p {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}
/* Special Content Section Styling */
.guide-special-content {
    padding: 25px;
    background-color: #252540;
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    margin-top: 30px;
    color: var(--color-light);
    line-height: 1.6;
    box-shadow: 0 4px 8px var(--color-shadow-medium);
}

.guide-special-content h2 {
    font-size: 1.6em;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.guide-special-content p {
    font-size: 1em;
    color: var(--color-gray-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Style for Links within Special Content */
.guide-special-content a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: bold;
}

.guide-special-content a:hover {
    color: #ff7300;
    text-decoration: none;
}


/* Improved links within Bottom Content */
.guide-bottom-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
}

.guide-bottom-content a:hover {
    color: #ff7300;
}



/* Footer Content Section */
.footer-content h2, .footer-content h3 {
    color: var(--color-primary);
    margin-top: 20px;
}

.footer-content .footer-paragraph {
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Table Styling */
.footer-table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}

.footer-table th, .footer-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.footer-table th {
    background-color: #333;
    color: var(--color-white);
}

.footer-table tr:nth-child(even) {
    background-color: #2a2a2a;
}

/* Blog Main Page */
.article-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.article-card h2 {
    font-size: 1.5em;
}

.article-card p {
    margin: 5px 0;
}

/* Filter Section */
.filter-section {
    margin-bottom: 20px;
}

#site-filter {
    padding: 5px;
}

/* Article Detail Page */
.article-image img, .article-video iframe {
    max-width: 100%;
    border-radius: 8px;
}

.caption {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
    text-align: center;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.topic-card {
    padding: 16px 32px;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Glowing Effect on Hover */
.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--color-shadow-dark), 
                0 0 20px rgba(255, 152, 0, 0.7), /* Glowing orange */
                0 0 40px rgba(255, 152, 0, 0.5), /* Further glow */
                0 0 60px rgba(255, 152, 0, 0.3); /* Distant glow */
}

/* Optional: Add a soft transition effect for the glow */
.topic-card:hover {
    animation: glow 0.5s ease-in-out;
}

@keyframes glow {
    0% {
        box-shadow: 0 8px 16px var(--color-shadow-dark), 
                    0 0 10px rgba(255, 152, 0, 0.5), 
                    0 0 20px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 16px var(--color-shadow-dark), 
                    0 0 20px rgba(255, 152, 0, 0.7), 
                    0 0 40px rgba(255, 152, 0, 0.5), 
                    0 0 60px rgba(255, 152, 0, 0.3);
    }
    100% {
        box-shadow: 0 8px 16px var(--color-shadow-dark), 
                    0 0 10px rgba(255, 152, 0, 0.5), 
                    0 0 20px rgba(255, 152, 0, 0.3);
    }
}

.topic-card h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.topic-card p {
    font-size: 1em;
    color: #ccc;
}

/* Articles List in Topic Page */
.articles-list .article-preview {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background-color: #353333;
}

.articles-list .article-preview h2 a {
    color: #b2b2b2;
    text-decoration: none;
}

.articles-list .article-preview h2 a:hover {
    text-decoration: underline;
}

/* Article Detail Page */
.article-image img, .article-video iframe {
    max-width: 100%;
    border-radius: 8px;
}

.caption {
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
    text-align: center;
}

/* Blog Article Container */
.blog-article-container {
    background-color: #1a1a1a; /* Dark background for contrast */
    max-width: 900px; /* Limit width for better readability */
    margin: 0 auto;
    padding: 20px;
    color: #e0e0e0; /* Light text color for contrast */
    font-family: var(--font-family);
}

/* Title Styling */
.blog-article-title {
    font-size: 2.5em; /* Large font size for the main title */
    font-weight: 700;
    color: var(--color-primary); /* Accent color for the title */
    margin-bottom: 15px;
}

/* Date and Topic Styling */
.blog-article-meta {
    font-size: 1.2em;
    font-weight: 600;
    color: #888; /* Softer color for date and topic */
    display: block;
    margin-bottom: 20px;
}

/* Text Sections */
.blog-article-text {
    font-size: 1.3em; /* Larger font for body text */
    line-height: 1.6; /* Increased line height for readability */
    margin-bottom: 20px;
    color: #c0c0c0; /* Softer color for body text */
}

/* Image Styling */
.blog-article-image-container {
    text-align: center;
    margin: 20px 0;
}

.blog-article-image {
    max-width: 100%; /* Ensure image fits within the container */
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--color-shadow-medium); /* Add subtle shadow */
}

.blog-article-caption {
    font-size: 1em;
    color: #a0a0a0;
    margin-top: 5px;
    font-style: italic; /* Italicized caption for distinction */
    text-align: center;
}

/* Video Styling */
.blog-article-video-container {
    text-align: center;
    margin: 20px 0;
}

.blog-article-video {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--color-shadow-medium); /* Add subtle shadow */
}

/* Footer Content Section */
.blog-article-footer-content {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444; /* Light border to separate footer */
}

.blog-article-footer-title {
    font-size: 1.8em;
    color: var(--color-primary);
    margin-top: 20px;
}

.blog-article-footer-text {
    font-size: 1.2em;
    color: #b0b0b0;
    line-height: 1.5;
}

/* General Footer Styling */
.footer {
    background-color: var(--color-darker);
    color: #e0e0e0;
    width: 100%;
    font-family: var(--font-family);
    padding: 20px;
}

/* Newsletter Section */
.footer-newsletter {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-newsletter p {
    font-size: 1em;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 1em;
    width: 250px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--color-primary);
    color: var(--color-darker);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--color-primary-light);
}

/* Footer Container and Links */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
}

.footer-links {
    flex: 1 1 180px;
    min-width: 180px;
}

.footer-links h4 {
    font-size: 1.2em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #b0b0b0;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9em;
}

.social-link {
    color: var(--color-primary);
    margin: 0 5px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-primary-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        width: 100%;
        justify-items: start;

    }
    .footer-container {
        flex-direction: row;
        align-items: center;
    }
    
    .footer-links, .footer-logo-newsletter {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .footer-newsletter {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 40px;
    }
}

/* General styles for the legal page */
.legal-page {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--color-shadow-light);
    font-family: var(--font-family);
}

/* Title of the page */
.legal-page h1 {
    font-size: 2rem;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Sections container */
.legal-sections {
    margin-top: 1.5rem;
}

/* Section titles */
.legal-sections h2 {
    font-size: 1.5rem;
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 0.5rem;
}

/* Section content */
.legal-sections p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 1.5rem;
    white-space: pre-wrap; /* Keeps formatting of newlines in JSON content */
}

/* Links */
.legal-sections a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.legal-sections a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .legal-page {
        padding: 1rem;
    }

    .legal-page h1 {
        font-size: 1.75rem;
    }

    .legal-sections h2 {
        font-size: 1.25rem;
    }

    .legal-sections p {
        font-size: 0.9rem;
    }
}

/*blog tbales*/
.blog-section-table {
    width: 100%; /* Make the table span the full width of the container */
    border-collapse: collapse; /* Remove space between borders */
    margin: 20px 0; /* Add some spacing above and below the table */
    font-size: 16px; /* Set a comfortable font size */
    font-family: var(--font-family); /* Use a clean font */
    background-color: var(--color-medium-dark); /* Dark background for a sleek look */
    color: var(--color-white); /* Light text for contrast */
}

.blog-section-table th,
.blog-section-table td {
    border: 1px solid var(--color-gray-dark); /* Border color for the cells */
    padding: 10px; /* Add padding inside the cells for readability */
    text-align: left; /* Align text to the left */
}

.blog-section-table th {
    background-color: var(--color-gray-dark); /* Slightly darker background for the header */
    font-weight: bold; /* Make the headers bold */
    text-transform: uppercase; /* Capitalize the headers */
}

.blog-section-table tr:nth-child(even) {
    background-color: var(--color-gray); /* Alternate row color for better readability */
}

.blog-section-table tr:hover {
    background-color: #555555; /* Highlight row on hover */
    cursor: pointer; /* Indicate interactivity */
}
/*avis*/
.avis-container {
    font-family: var(--font-family);
    background-color: #222222;
    margin: auto;
    padding: 0;
    width: 100%;
}
.avis-wrapper {
    max-width: 800px;
    margin: 50px auto;
    background: #515151;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px var(--color-shadow-light);
}
.avis-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}
.avis-item:last-child {
    border-bottom: none;
}
.avis-nom {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
}
.avis-note {
    color: #f39c12;
    font-weight: bold;
}
.avis-commentaire {
    margin: 5px 0 0;
}
.avis-form {
    margin-top: 30px;
}
.avis-form-group {
    margin-bottom: 15px;
}
.avis-form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.avis-form-input, .avis-form-textarea, .avis-form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.avis-form-button {
    padding: 10px 15px;
    background-color: var(--color-success);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.avis-form-button:hover {
    background-color: var(--color-success-dark);
}

/*reviews */
/* General styling for the review section */
.user-reviews {
    background-color: #1a1a1a; /* Dark background */
    padding: 20px;
    border-radius: 8px;
    color: var(--color-white); /* Text color */
    font-family: var(--font-family);
}

/* Title styling */
h2 {
    color: #ff9900; /* Bright orange for the title */
    font-size: 1.8em;
    margin-bottom: 10px;
}

/* Content styling */
.user-reviews p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Individual review styling */
.review {
    border-left: 4px solid #ff9900; /* Orange accent bar */
    margin-bottom: 15px;
    padding-left: 10px;
    font-size: 1em;
    line-height: 1.5;
}

/* Reviewer name styling */
.review strong {
    color: #ff9900; /* Bright orange for the name */
    font-size: 1.1em;
}

/* Review text styling */
.review p {
    font-style: italic;
    margin: 5px 0 0 0;
}
