/**
 * YesMoreBet Custom Styles
 * Reprend exactement les styles du projet React
 */

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid rgba(250, 204, 21, 0.1);
}

.site-header .container {
    max-width: 1400px;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .site-header .container {
        padding: 0 68px;
    }
}

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 0;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    height: 36px;
    width: 114px;
    position: relative;
    overflow: hidden;
}

.nav-logo svg {
    position: absolute;
    height: 114px;
    left: -30.3px;
    top: -39px;
    width: 174px;
}

.nav-link {
    position: relative;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    letter-spacing: -0.3125px;
    color: var(--ymb-white);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    font-weight: 600;
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ymb-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: -0.1504px;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--ymb-gold-start);
}

.header-cta {
    background: linear-gradient(to right, #facc15, #ca8a04);
    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 0px 10px 15px -3px rgba(250, 204, 21, 0.3);
    transition: all 0.3s ease;
}

.header-cta:hover {
    box-shadow: 0px 10px 20px -3px rgba(250, 204, 21, 0.5);
    transform: scale(1.05);
}

.header-cta span {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--ymb-black);
    letter-spacing: -0.3125px;
}

/* Desktop Navigation - visible en desktop */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Mobile Header - caché en desktop */
.mobile-header {
    display: none !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Desktop - Force le masquage du mobile header */
@media (min-width: 1024px) {
    .mobile-header,
    .mobile-nav {
        display: none !important;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ymb-gold-start);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Mobile Nav - caché par défaut, ouvert avec classe .open */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1rem 1rem;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(250, 204, 21, 0.1);
    width: 100%;
    position: relative;
}

.mobile-nav.open {
    display: flex !important;
}

/* Bouton de fermeture dans le menu mobile */
.mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--ymb-gold-start);
    cursor: pointer;
    padding: 0.5rem;
    display: none;
    z-index: 10;
}

.mobile-nav.open .mobile-nav-close {
    display: block;
}

/* Media Query - Mobile (≤ 1023px) */
@media (max-width: 1023px) {
    /* Cache la navigation desktop */
    .desktop-nav {
        display: none !important;
    }

    /* Affiche le header mobile (logo + burger) */
    .mobile-header {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .main-navigation {
        flex-direction: column;
        align-items: stretch;
    }

    /* Logo mobile - positionné à gauche */
    .mobile-header .nav-logo {
        height: 30px;
        width: 95px;
        margin-right: auto;
    }

    .mobile-header .nav-logo svg {
        height: 95px;
        left: -25px;
        top: -32px;
        width: 145px;
    }
}

/* Styles des liens du menu mobile */
.mobile-nav a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--ymb-white);
    padding: 0.75rem 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--ymb-gold-start);
}

.mobile-nav .header-phone {
    padding: 0.75rem 0;
}

.mobile-nav .header-cta {
    display: inline-block;
    text-align: center;
    margin-top: 0.5rem;
}

/* Concept Section - Mobile First avec Flexbox */
.concept-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.concept-image {
    display: none;
}

/* Desktop - Afficher l'image et passer en 2 colonnes avec flexbox */
@media (min-width: 768px) {
    .concept-grid {
        flex-direction: row;
        align-items: stretch; /* Permet aux items de prendre toute la hauteur */
    }

    .concept-content {
        flex: 1;
        padding-right: 1.5rem;
    }

    .concept-image {
        display: block;
        flex: 1;
        min-height: 400px;
    }

    /* Forcer l'image à prendre toute la hauteur */
    .concept-image > div:first-child {
        height: 100% !important;
    }

    .concept-image img {
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Background défini dans le widget via style inline */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--ymb-white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--ymb-gold-hover);
    margin-bottom: 2rem;
}

.hero-location span {
    color: #d1d5db;
}

/* Hero Icon Boxes (Repeater) */
.hero-icon-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-icon-boxes {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hero-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-icon-box .hero-icon {
    color: var(--ymb-gold-hover);
    width: 20px;
    height: 20px;
}

.hero-icon-box .hero-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #FDC700;
}

.hero-icon-box span {
    color: #d1d5db;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    margin-bottom: 50px;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--ymb-black);
    position: relative;
    overflow: hidden;
}

.features-decoration {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background-color: rgba(250, 204, 21, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.features-decoration.top-left {
    top: 0;
    left: 25%;
}

.features-decoration.bottom-right {
    bottom: 0;
    right: 25%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.5rem 1rem;
    background-color: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(202, 138, 4, 0.3);
    border-radius: 0.375rem;
    color: var(--ymb-gold-hover);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    color: var(--ymb-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    color: var(--ymb-gray-medium);
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(24, 24, 27, 0.8), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(202, 138, 4, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(250, 204, 21, 0.1);
    transform: translateY(-0.5rem);
    border-color: rgba(202, 138, 4, 0.4);
}

.feature-image {
    position: relative;
    height: 15rem;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: inherit !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5), transparent);
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    color: var(--ymb-white);
    margin-bottom: 0.75rem;
}

.feature-content p {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.feature-link {
    color: var(--ymb-gold-hover);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #fde68a;
}

/* Footer Styles */
.site-footer {
    background-color: var(--ymb-black);
    border-top: 1px solid rgba(208, 135, 0, 0.2);
}

.footer-main {
    padding: 34px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 35px;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-logo {
    height: 32px;
    width: 100px;
    position: relative;
    overflow: hidden;
}

.footer-logo svg {
    position: absolute;
    height: 100px;
    left: -26.6px;
    top: -34.2px;
    width: 152.6px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .footer-section {
        width: auto;
    }
}

.footer-section-title {
    font-family: 'Quicksand', sans-serif;
    color: var(--ymb-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    user-select: none;
    padding: 0.5rem 0;
    margin: 0;
}

.footer-section-title .footer-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.footer-section.open .footer-chevron {
    transform: rotate(180deg);
}

@media (min-width: 1024px) {
    .footer-section-title {
        cursor: default;
        padding: 0;
    }

    .footer-section-title .footer-chevron {
        display: none;
    }
}

.footer-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.footer-section.open .footer-section-list {
    display: flex;
}

@media (min-width: 1024px) {
    .footer-section-list {
        display: flex !important;
    }
}

.footer-section a {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.875rem;
    color: var(--ymb-gray-medium);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--ymb-gold-start);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(208, 135, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.875rem;
    color: var(--ymb-gray-medium);
    text-align: center;
}


/* Contact Form */
.contact-form {
    max-width: 42rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, rgba(24, 24, 27, 0.5), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--ymb-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: var(--ymb-white);
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ymb-gold-hover);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--ymb-gold-hover), var(--ymb-gold-dark));
    color: var(--ymb-black);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    box-shadow: 0 10px 25px -5px rgba(250, 204, 21, 0.5);
    transform: scale(1.02);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(to right, var(--ymb-gold-start), var(--ymb-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Utilities - supprimé car en conflit avec les règles mobile plus haut */

/* Hero Section - Full Width Override */
.elementor-widget-yesmorebet_hero {
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: none !important;
}

.elementor-widget-yesmorebet_hero .elementor-widget-container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ymb-hero-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-content-inner {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Scroll Indicator - Gold Color */
.scroll-indicator {
    color: #FDC700;
}

.scroll-indicator svg {
    color: #FDC700;
    stroke: #FDC700;
}

/* ============================================
   Pricing Table Widget Styles (Prestations.tsx)
   ============================================ */

/* Pricing Hero Section */
.yesmorebet_pricing .pricing-hero {
    position: relative;
    background-color: #000;
    padding-top: 8rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden;
}

.yesmorebet_pricing .pricing-hero-bg {
    position: absolute;
    inset: 0;
}

.yesmorebet_pricing .pricing-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yesmorebet_pricing .pricing-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.3;
}

.yesmorebet_pricing .pricing-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 72rem;
    margin: 0 auto;
}

.yesmorebet_pricing .pricing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(208, 135, 0, 0.2);
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    color: #fdc700;
    margin-bottom: 1.5rem;
}

.yesmorebet_pricing .pricing-hero-badge svg {
    width: 1rem;
    height: 1rem;
}

.yesmorebet_pricing .pricing-hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .yesmorebet_pricing .pricing-hero h1 {
        font-size: 3.75rem;
    }
}

.yesmorebet_pricing .pricing-hero .text-gradient {
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yesmorebet_pricing .pricing-hero-description {
    color: #fff;
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.yesmorebet_pricing .pricing-hero-description p {
    margin-bottom: 1rem;
}

.yesmorebet_pricing .pricing-hero-description p:last-child {
    margin-bottom: 0;
}

/* Pricing Section */
.yesmorebet_pricing .pricing-section {
    padding: 4rem 1rem;
    background-color: #000;
}

.yesmorebet_pricing .pricing-container {
    max-width: 80rem;
    margin: 0 auto;
}

.yesmorebet_pricing .pricing-wrapper {
    position: relative;
}

/* Badge Recommandée */
.yesmorebet_pricing .pricing-recommended-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: linear-gradient(to right, #facc15, #ca8a04);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0px 10px 15px -3px rgba(250, 204, 21, 0.3);
    z-index: 30;
    font-weight: 600;
}

@media (min-width: 768px) {
    .yesmorebet_pricing .pricing-recommended-badge {
        left: 50%;
    }
}

/* Pricing Grid */
.yesmorebet_pricing .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .yesmorebet_pricing .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing Card */
.yesmorebet_pricing .pricing-card {
    background-color: rgba(255, 255, 255, 0);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0px 10px 15px -3px rgba(208, 135, 0, 0.1),
                0px 4px 6px -4px rgba(208, 135, 0, 0.1);
    position: relative;
}

.yesmorebet_pricing .pricing-card.recommended {
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 0px 2px #d08700,
                0px 25px 50px -12px rgba(208, 135, 0, 0.3);
}

.yesmorebet_pricing .pricing-card-image {
    height: 16rem;
    overflow: hidden;
    position: relative;
}

.yesmorebet_pricing .pricing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yesmorebet_pricing .pricing-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.7), transparent);
}

.yesmorebet_pricing .pricing-card-content {
    padding: 1.5rem;
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-top: 0;
}

.yesmorebet_pricing .pricing-card h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.yesmorebet_pricing .pricing-card-features {
    margin-bottom: 1.5rem;
}

.yesmorebet_pricing .pricing-card-features > div {
    margin-bottom: 0.75rem;
}

.yesmorebet_pricing .pricing-card-features > div:last-child {
    margin-bottom: 0;
}

.yesmorebet_pricing .pricing-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #fff;
}

.yesmorebet_pricing .pricing-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.yesmorebet_pricing .pricing-event-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-top: 1px solid #1e2939;
    padding-top: 0.5rem;
}

.yesmorebet_pricing .pricing-event-type span:first-child {
    color: #fdc700;
}

.yesmorebet_pricing .pricing-event-type span:last-child {
    color: #fff;
    font-size: 0.875rem;
}

.yesmorebet_pricing .pricing-card-price-wrapper {
    border-top: 1px solid rgba(208, 135, 0, 0.3);
    padding-top: 1rem;
}

.yesmorebet_pricing .pricing-card-price {
    text-align: center;
}

.yesmorebet_pricing .pricing-card-price .price {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yesmorebet_pricing .pricing-card-price .currency {
    color: #99a1af;
    margin-left: 0.5rem;
}

/* Lucide Icons Styling */
.yesmorebet_pricing .lucide-icon {
    display: inline-block;
    vertical-align: middle;
}

.yesmorebet_pricing .lucide-icon.gold {
    color: #FDC700;
    stroke: #FDC700;
}

/* ========================================
   Gallery Grid Widget Styles
   ======================================== */

.yesmorebet_gallery {
    background-color: #000000;
    padding: 4rem 1rem;
}

.yesmorebet_gallery .gallery-container {
    max-width: 1447px;
    margin: 0 auto;
}

/* Gallery Title */
.yesmorebet_gallery .gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

.yesmorebet_gallery .gallery-title h2 {
    font-size: 1.875rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .yesmorebet_gallery .gallery-title h2 {
        font-size: 3rem;
    }
}

.yesmorebet_gallery .gallery-title .font-medium {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.yesmorebet_gallery .gallery-title .highlight {
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.yesmorebet_gallery .gallery-title p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #ffffff;
    margin: 0;
}

/* Gallery Grid - 4 Columns */
.yesmorebet_gallery .ymb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Responsive - 2 colonnes pour tablette */
@media (max-width: 1023px) and (min-width: 768px) {
    .yesmorebet_gallery .ymb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - 1 colonne pour mobile */
@media (max-width: 767px) {
    .yesmorebet_gallery .ymb-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Column */
.yesmorebet_gallery .ymb-gallery-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Gallery Item */
.yesmorebet_gallery .ymb-gallery-item {
    position: relative;
    background-color: #101828;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.yesmorebet_gallery .ymb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile - hauteur auto avec aspect ratio */
@media (max-width: 767px) {
    .yesmorebet_gallery .ymb-gallery-item {
        height: auto !important;
        aspect-ratio: 4 / 3;
    }
}

/* Gallery Overlay - Hover Effect */
.yesmorebet_gallery .ymb-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0;
    transition: opacity 300ms ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.yesmorebet_gallery .ymb-gallery-item:hover .ymb-gallery-overlay {
    opacity: 1;
}

.yesmorebet_gallery .ymb-gallery-overlay p {
    color: #ffffff;
    font-size: 1.125rem;
    margin: 0;
}

/* Gallery Pagination */
.yesmorebet_gallery .gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 4rem;
}

.yesmorebet_gallery .prev-btn,
.yesmorebet_gallery .next-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 36px;
    padding: 0 1rem;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.yesmorebet_gallery .page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
}

/* Pagination - Active State */
.yesmorebet_gallery .page-number.active {
    background: linear-gradient(to right, #fdc700, #d08700);
    color: #000000;
}

/* Pagination - Hover States */
.yesmorebet_gallery .prev-btn:not(:disabled):hover,
.yesmorebet_gallery .next-btn:not(:disabled):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.yesmorebet_gallery .page-number:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.yesmorebet_gallery .page-number.active:hover {
    transform: scale(1.05);
}

/* Pagination - Disabled State */
.yesmorebet_gallery .prev-btn:disabled,
.yesmorebet_gallery .next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yesmorebet_gallery .prev-btn:disabled:hover,
.yesmorebet_gallery .next-btn:disabled:hover {
    background-color: transparent;
}

/* Hide non-active pages */
.yesmorebet_gallery .ymb-gallery-column[data-page]:not([data-page="1"]) {
    display: none;
}

/* Responsive Mobile */
@media (max-width: 767px) {
    .yesmorebet_gallery {
        padding: 2rem 1rem;
    }

    .yesmorebet_gallery .gallery-title {
        margin-bottom: 2rem;
    }

    .yesmorebet_gallery .gallery-pagination {
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .yesmorebet_gallery .prev-btn span,
    .yesmorebet_gallery .next-btn span {
        display: none;
    }
}
/* ========================================
   CONTACT SECTION WIDGET STYLES
   ======================================== */

/* Contact Section Container */
.yesmorebet_contact_section {
    padding: 4rem 1rem;
    background-color: #000000;
}

@media (min-width: 1024px) {
    .yesmorebet_contact_section {
        padding: 4rem 3rem;
    }
}

.yesmorebet_contact_section .ymb-contact-container {
    max-width: 1199px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Header */
.yesmorebet_contact_section .ymb-contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.yesmorebet_contact_section .ymb-contact-title {
    font-size: 1.875rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .yesmorebet_contact_section .ymb-contact-title {
        font-size: 3rem;
    }
}

.yesmorebet_contact_section .ymb-contact-title .highlight {
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yesmorebet_contact_section .ymb-contact-description {
    font-size: 1.125rem;
    color: #d1d5dc;
    margin: 0;
}

/* Contact Grid Layout */
.yesmorebet_contact_section .ymb-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .yesmorebet_contact_section .ymb-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Form Container */
.yesmorebet_contact_section .ymb-contact-form-container {
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .yesmorebet_contact_section .ymb-contact-form-container {
        padding: 3rem;
    }
}

/* Form Styles */
.yesmorebet_contact_section .ymb-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yesmorebet_contact_section .ymb-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .yesmorebet_contact_section .ymb-form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.yesmorebet_contact_section .ymb-form-group {
    display: flex;
    flex-direction: column;
}

.yesmorebet_contact_section .ymb-form-label {
    display: block;
    color: #ffffff;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.yesmorebet_contact_section .ymb-form-input,
.yesmorebet_contact_section .ymb-form-textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 200ms ease;
}

.yesmorebet_contact_section .ymb-form-input::placeholder,
.yesmorebet_contact_section .ymb-form-textarea::placeholder {
    color: #6a7282;
}

.yesmorebet_contact_section .ymb-form-input:focus,
.yesmorebet_contact_section .ymb-form-textarea:focus {
    outline: none;
    border-color: #fdc700;
}

.yesmorebet_contact_section .ymb-form-textarea {
    resize: none;
    min-height: 150px;
}

/* Form Submit Button */
.yesmorebet_contact_section .ymb-form-submit {
    width: 100%;
    background: linear-gradient(to right, #fdc700, #d08700);
    color: #000000;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 1rem;
}

.yesmorebet_contact_section .ymb-form-submit:hover {
    box-shadow: 0 10px 25px -5px rgba(253, 199, 0, 0.3);
    transform: scale(1.05);
}

/* Contact Info Section */
.yesmorebet_contact_section .ymb-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.yesmorebet_contact_section .ymb-contact-info-section {
    display: flex;
    flex-direction: column;
}

.yesmorebet_contact_section .ymb-contact-info-title {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.yesmorebet_contact_section .ymb-contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact Info Item */
.yesmorebet_contact_section .ymb-contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

/* Contact Icon */
.yesmorebet_contact_section .ymb-contact-icon {
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yesmorebet_contact_section .ymb-contact-icon svg {
    width: 20px;
    height: 20px;
}

/* Contact Info Text */
.yesmorebet_contact_section .ymb-contact-info-label {
    color: #99a1af;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.yesmorebet_contact_section .ymb-contact-info-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 200ms ease;
}

.yesmorebet_contact_section .ymb-contact-info-link:hover {
    color: #fdc700;
}

.yesmorebet_contact_section .ymb-contact-info-text {
    color: #ffffff;
    margin: 0;
}

.yesmorebet_contact_section .ymb-contact-info-note {
    color: #99a1af;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* Social Media Section */
.yesmorebet_contact_section .ymb-contact-social-section {
    display: flex;
    flex-direction: column;
}

.yesmorebet_contact_section .ymb-contact-social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.yesmorebet_contact_section .ymb-social-icon {
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 200ms ease;
    text-decoration: none;
}

.yesmorebet_contact_section .ymb-social-icon:hover {
    background-color: rgba(208, 135, 0, 0.1);
}

.yesmorebet_contact_section .ymb-social-icon svg {
    width: 20px;
    height: 20px;
}

.yesmorebet_contact_section .ymb-contact-social-note {
    color: #99a1af;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .yesmorebet_contact_section {
        padding: 2rem 1rem;
    }

    .yesmorebet_contact_section .ymb-contact-header {
        margin-bottom: 2rem;
    }

    .yesmorebet_contact_section .ymb-contact-grid {
        gap: 2rem;
    }

    .yesmorebet_contact_section .ymb-contact-form-container {
        padding: 1.5rem;
    }
}

/* ========================================
   FAQ WIDGET - MODE SIMPLE & CATÉGORISÉ
   Avec Chevrons Lucide
   ======================================== */

/* Container commun */
.yesmorebet_faq_section {
    padding: 5rem 1rem;
    background-color: #000000;
}

.yesmorebet_faq_section .ymb-faq-container {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   HEADER - MODE SIMPLE
   ======================================== */

.yesmorebet_faq_section .ymb-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Mode Simple - Titre avec lignes décoratives */
.yesmorebet_faq_section .ymb-faq-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.yesmorebet_faq_section .ymb-faq-title-line {
    height: 1px;
    width: 3rem;
    background: linear-gradient(to right, transparent, #facc15);
}

.yesmorebet_faq_section .ymb-faq-title-line.right {
    background: linear-gradient(to left, transparent, #facc15);
}

/* Titre */
.yesmorebet_faq_section .ymb-faq-title {
    font-size: 1.875rem;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

@media (min-width: 768px) {
    .yesmorebet_faq_section .ymb-faq-title {
        font-size: 3rem;
    }
}

/* Mode Catégorisé - Highlight dans le titre et description */
.yesmorebet_faq_section .ymb-faq-title .highlight,
.yesmorebet_faq_section .ymb-faq-description .highlight {
    color: #facc15;
}

/* Description */
.yesmorebet_faq_section .ymb-faq-description {
    font-size: 1.125rem;
    color: #9ca3af;
    margin: 0;
}

.yesmorebet_faq_section .ymb-faq-description p {
    margin-top: 1.5rem;
}

.yesmorebet_faq_section .ymb-faq-description p:first-child {
    margin-top: 0;
}

.yesmorebet_faq_section .ymb-faq-description p:last-child {
    margin-bottom: 0;
}

/* ========================================
   FAQ CATEGORY - MODE CATÉGORISÉ
   ======================================== */

.yesmorebet_faq_section .ymb-faq-category {
    margin-bottom: 3rem;
}

.yesmorebet_faq_section .ymb-faq-category:last-child {
    margin-bottom: 0;
}

.yesmorebet_faq_section .ymb-faq-category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.yesmorebet_faq_section .ymb-faq-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yesmorebet_faq_section .ymb-faq-category-icon svg {
    width: 20px;
    height: 20px;
    color: #000000;
}

.yesmorebet_faq_section .ymb-faq-category-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

/* ========================================
   FAQ ACCORDION - COMMUN AUX DEUX MODES
   ======================================== */

.yesmorebet_faq_section .ymb-faq-accordion {
    background: linear-gradient(to bottom right, rgba(24, 24, 27, 0.5), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* FAQ Item */
.yesmorebet_faq_section .ymb-faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 1.5rem;
}

.yesmorebet_faq_section .ymb-faq-item:first-child {
    border-top: none;
}

@media (min-width: 768px) {
    .yesmorebet_faq_section .ymb-faq-item {
        padding: 0 2rem;
    }
}

/* FAQ Question (Trigger) avec Chevron Lucide */
.yesmorebet_faq_section .ymb-faq-question {
    color: #ffffff;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 200ms ease;
    position: relative;
    user-select: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.yesmorebet_faq_section .ymb-faq-question:hover {
    color: #facc15;
}

/* Chevron Icon (Lucide SVG) */
.yesmorebet_faq_section .ymb-faq-chevron {
    flex-shrink: 0;
    transition: transform 200ms ease;
    color: currentColor;
    stroke: currentColor;
}

.yesmorebet_faq_section .ymb-faq-item.active .ymb-faq-chevron {
    transform: rotate(180deg);
}

/* FAQ Answer (Content) */
.yesmorebet_faq_section .ymb-faq-answer {
    color: #9ca3af;
    padding-bottom: 1.5rem;
    line-height: 1.75;
    display: none;
    font-size: 0.875rem;
}

.yesmorebet_faq_section .ymb-faq-answer p {
    color: #9ca3af;
}

.yesmorebet_faq_section .ymb-faq-item.active .ymb-faq-answer {
    display: block;
    animation: fadeInDown 300ms ease;
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 767px) {
    .yesmorebet_faq_section {
        padding: 3rem 1rem;
    }

    .yesmorebet_faq_section .ymb-faq-header {
        margin-bottom: 2rem;
    }

    .yesmorebet_faq_section .ymb-faq-category {
        margin-bottom: 2rem;
    }

    .yesmorebet_faq_section .ymb-faq-category-title {
        font-size: 1.25rem;
    }

    .yesmorebet_faq_section .ymb-faq-question {
        font-size: 0.9375rem;
    }
}
/* ========================================
   GALERIE TEMPLATE STYLES
   ======================================== */

/* Gallery Hero Section */
.ymb-gallery-hero {
    padding: 5rem 1rem 4rem;
    background-color: #000000;
}

.ymb-gallery-hero .ymb-hero-container {
    max-width: 1199px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ymb-gallery-hero .ymb-hero-container {
        flex-direction: row;
        gap: 2rem;
        padding: 0 3rem;
    }
}

.ymb-gallery-hero .ymb-hero-content {
    width: 100%;
}

@media (min-width: 1024px) {
    .ymb-gallery-hero .ymb-hero-content {
        width: 60%;
    }
}

.ymb-gallery-hero .ymb-hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .ymb-gallery-hero .ymb-hero-title {
        font-size: 3rem;
    }
}

.ymb-gallery-hero .ymb-hero-title .gradient-text {
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.ymb-gallery-hero .ymb-hero-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #d1d5dc;
    margin-bottom: 2.875rem;
}

.ymb-gallery-hero .ymb-hero-description p {
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}

.ymb-gallery-hero .ymb-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 543.5px;
}

@media (min-width: 640px) {
    .ymb-gallery-hero .ymb-hero-buttons {
        flex-direction: row;
    }
}

.ymb-gallery-hero .ymb-hero-btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    height: 50px;
    padding: 0 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(208, 135, 0, 0.5);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: all 200ms ease;
}

.ymb-gallery-hero .ymb-hero-btn-social:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.ymb-gallery-hero .ymb-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 1rem;
    background: linear-gradient(to right, #fdc700, #d08700);
    border-radius: 10px;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: all 200ms ease;
}

.ymb-gallery-hero .ymb-hero-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(253, 199, 0, 0.3);
}

.ymb-gallery-hero .ymb-hero-image {
    width: 100%;
    max-width: 401px;
}

@media (min-width: 1024px) {
    .ymb-gallery-hero .ymb-hero-image {
        width: 30%;
    }
}

.ymb-gallery-hero .ymb-hero-image-wrapper {
    background-color: #101828;
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 597px;
}

.ymb-gallery-hero .ymb-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Grid Section */
.ymb-gallery-grid-section {
    padding: 4rem 1rem;
    background-color: #000000;
}

.ymb-gallery-grid-section .ymb-grid-container {
    max-width: 1447px;
    margin-left: auto;
    margin-right: auto;
}

.ymb-gallery-grid-section .ymb-grid-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ymb-gallery-grid-section .ymb-grid-title {
    font-size: 1.875rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .ymb-gallery-grid-section .ymb-grid-title {
        font-size: 3rem;
    }
}

.ymb-gallery-grid-section .ymb-grid-title .gradient-text {
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.ymb-gallery-grid-section .ymb-grid-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #ffffff;
    margin: 0;
}

.ymb-gallery-grid-section .ymb-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 768px) {
    .ymb-gallery-grid-section .ymb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ymb-gallery-grid-section .ymb-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ymb-gallery-grid-section .ymb-gallery-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ymb-gallery-grid-section .ymb-gallery-image-item {
    background-color: #101828;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.ymb-gallery-grid-section .ymb-gallery-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ymb-gallery-grid-section .ymb-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 300ms ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.ymb-gallery-grid-section .ymb-gallery-image-item:hover .ymb-gallery-overlay {
    opacity: 1;
}

.ymb-gallery-grid-section .ymb-gallery-overlay p {
    color: #ffffff;
    font-size: 1.125rem;
    margin: 0;
}

/* Gallery Pagination */
.ymb-gallery-grid-section .ymb-gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 4rem;
}

.ymb-gallery-grid-section .ymb-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 36px;
    padding: 0 1rem;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 1rem;
}

.ymb-gallery-grid-section .ymb-pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ymb-gallery-grid-section .ymb-pagination-btn:not(.disabled):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ymb-gallery-grid-section .ymb-pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 200ms ease;
    font-size: 1rem;
}

.ymb-gallery-grid-section .ymb-pagination-number.active {
    background: linear-gradient(to right, #fdc700, #d08700);
    color: #000000;
}

.ymb-gallery-grid-section .ymb-pagination-number:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ymb-gallery-grid-section .ymb-pagination-number.active:hover {
    transform: scale(1.05);
}

/* Responsive Gallery Grid */
@media (max-width: 767px) {
    .ymb-gallery-hero {
        padding: 3rem 1rem 2rem;
    }

    .ymb-gallery-grid-section {
        padding: 3rem 1rem;
    }
}

/* Responsive Mobile */
@media (max-width: 767px) {
    .yesmorebet_gallery {
        padding: 2rem 1rem;
    }

    .yesmorebet_gallery .gallery-title {
        margin-bottom: 2rem;
    }

    .yesmorebet_gallery .gallery-pagination {
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .yesmorebet_gallery .prev-btn span,
    .yesmorebet_gallery .next-btn span {
        display: none;
    }
}

/* ========================================
   LEGAL PAGES COMMON STYLES (CGV, Mentions, Politique)
   ======================================== */

/* Legal Hero Section */
.ymb-legal-hero {
    position: relative;
    background: linear-gradient(to bottom, rgba(115, 62, 10, 0.1), rgba(0, 0, 0, 0));
    padding: 8rem 1rem 4rem;
}

.ymb-legal-hero .ymb-hero-container {
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.ymb-legal-hero .ymb-hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .ymb-legal-hero .ymb-hero-title {
        font-size: 3rem;
    }
}

.ymb-legal-hero .ymb-hero-title .text-white {
    color: #ffffff;
}

.ymb-legal-hero .ymb-hero-title .gradient-text {
    background: linear-gradient(to right, #fdc700, #d08700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ymb-legal-hero .ymb-hero-description {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

/* Legal Content Section */
.ymb-legal-content {
    padding: 4rem 1rem;
}

@media (min-width: 1024px) {
    .ymb-legal-content {
        padding: 4rem 3rem;
    }
}

.ymb-legal-content .ymb-content-container {
    max-width: 1199px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 37px;
}

/* Legal Section Block */
.ymb-legal-section {
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
}

@media (min-width: 1024px) {
    .ymb-legal-section {
        padding: 4rem;
    }
}

.ymb-legal-section .ymb-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ymb-legal-section .ymb-section-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.ymb-legal-section .ymb-section-icon svg {
    width: 100%;
    height: 100%;
}

.ymb-legal-section .ymb-section-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: -0.3125px;
    margin: 0;
}

.ymb-legal-section .ymb-section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Legal Typography */
.ymb-legal-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    letter-spacing: -0.4395px;
    margin-bottom: 0.5rem;
}

.ymb-legal-section p {
    font-size: 0.875rem;
    color: #d1d5dc;
    letter-spacing: -0.1504px;
    line-height: 1.625;
    margin-bottom: 0;
}

.ymb-legal-section .text-highlight {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #fdc700;
}

.ymb-legal-section .text-white {
    color: #ffffff;
}

.ymb-legal-section .text-medium {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

/* Legal Lists */
.ymb-legal-section ul {
    margin-left: 1.5rem;
    list-style: none;
    padding: 0;
}

.ymb-legal-section ul li {
    font-size: 0.875rem;
    color: #d1d5dc;
    letter-spacing: -0.1504px;
    line-height: 1.625;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem;
}

.ymb-legal-section ul li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #fdc700;
}

/* Info Box */
.ymb-legal-section .ymb-info-box {
    background-color: rgba(253, 199, 0, 0.1);
    border: 1px solid rgba(208, 135, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
}

.ymb-legal-section .ymb-info-box p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fdc700;
    letter-spacing: -0.1504px;
    line-height: 1.625;
    margin-bottom: 0;
}

/* Contact Box */
.ymb-legal-section .ymb-contact-box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(208, 135, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
}

.ymb-legal-section .ymb-contact-box p {
    font-size: 0.875rem;
    letter-spacing: -0.1504px;
    line-height: 1.625;
}

/* Subsection Spacing */
.ymb-legal-section .ymb-subsection {
    margin-bottom: 1.5rem;
}

.ymb-legal-section .ymb-subsection:last-child {
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .ymb-legal-hero {
        padding: 6rem 1rem 3rem;
    }

    .ymb-legal-content {
        padding: 3rem 1rem;
    }

    .ymb-legal-section {
        padding: 1.5rem;
    }
}