/* Container principal */
.casino-exact-brand-wrapper {
    max-width: 615px;
    margin: 0 auto;
}

/* Carte principale */
.casino-exact-brand-card {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
}

body.dark-mode .casino-exact-brand-wrapper .casino-exact-brand-card {
    background-color: #17191D;
    border: none;
}

/* Contenu principal en layout horizontal */
.casino-exact-brand-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Section gauche : Logo et note */
.casino-exact-brand-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    min-width: 120px;
    padding-right: 8px;
}

/* Logo dans un carré avec bordure */
.casino-exact-brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 4px solid #F5F5F5;
}

body.dark-mode .casino-exact-brand-wrapper .casino-exact-brand-logo {
    border-color: #0E0E10;
}

.casino-exact-brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px
}

.casino-exact-brand-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #F5F5F5;
}

/* Note avec étoiles */
.casino-exact-brand-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.casino-exact-rating-star svg {
    width: 20px;
    height: 20px;
    fill: #fcd34d;
}

.casino-exact-rating-value {
    font-size: 14px;
    font-weight: 600;
}

body.light-mode .casino-exact-brand-wrapper .casino-exact-rating-value {
    color: #707070;
}

body.dark-mode .casino-exact-brand-wrapper .casino-exact-rating-value {
    color: #707070;
}

/* Section droite : Description */
.casino-exact-brand-right {
    flex: 1;
    max-width: 478px;
    height: 112px;
    background-color:#F5f5f5;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

body.dark-mode .casino-exact-brand-wrapper .casino-exact-brand-right {
    background-color: #0E0E10;
}

.casino-exact-brand-description {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    padding: 30px 25px;
}

/* Bouton CTA pleine largeur */
.casino-exact-brand-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.casino-exact-brand-cta {
    width: calc(100% + 40px);
    background: var(--button-color, #ffd700);
    border-radius: 0 0 12px 12px;
    margin: 0 -20px -20px -20px;
    padding: 14px 20px;
    transition: background 0.3s ease;
}

.casino-exact-brand-cta:has(.casino-exact-brand-button:hover) {
    background: var(--button-hover, var(--button-color, #ffd700));
}

.casino-exact-brand-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}
body.light-mode .casino-exact-brand-wrapper a {
    color: #000000;
}
body.dark-mode .casino-exact-brand-wrapper a {
    color: #000000;
}
.casino-exact-brand-button:hover {
    transform: scale(1.02);
}

.casino-exact-button-arrow {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: inherit;
}

/* Responsive Design - Adaptation des tailles uniquement */
@media (max-width: 768px) {
    .casino-exact-brand-wrapper {
        padding: 15px;
    }
    
    .casino-exact-brand-card {
        padding-right: 15px;
    }
    
    .casino-exact-brand-left {
        min-width: 100px;
    }
    
    .casino-exact-brand-button {
        padding: 4px 4px;
    }

    .casino-exact-brand-right {
        padding: 10px 0;
    }

    .casino-exact-brand-description {
        padding: 10px 12px;
    }
}

@media (max-width: 576px){
    
    .casino-exact-brand-description {
        font-size: 16px;
    }

    .casino-exact-brand-left {
        padding-right: 0;
    }
    .casino-exact-brand-right {
        margin-right: 0;
    }
}

