/* --- GLOBALS (Adapté au thème dynamique) --- */
.text-nexus-accent {
    color: var(--gacha) !important;
}

/* --- BADGE LOCALISATION --- */
.badge-arena {
    background-color: var(--bg-main);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* --- STYLES DES CARTES ARENAS --- */
.card-shop {
    background-color: var(--bg-card); /* Utilise la variable du thème ! */
    border: 1px solid var(--border-color); /* Utilise la variable du thème ! */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease;
}

.card-shop:hover {
    transform: translateY(-5px);
    border-color: var(--gacha); 
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.shop-img-container {
    overflow: hidden;
    height: 100%;
    min-height: 200px; 
}

.shop-img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-shop:hover .shop-img { 
    transform: scale(1.05); 
}

/* --- Ajustement de l'image de l'arène (Mobile & PC) --- */
.img-shop-responsive {
    height: 100%;
    min-height: 250px;
    max-height: 300px;
}

/* --- STYLES DES BOUTONS & TEXTES --- */
.btn-nexus-primary {
    background: linear-gradient(135deg, #4a6ee0, var(--gacha));
    border: none;
    color: white !important; /* On force le blanc sur le bouton violet */
    transition: all 0.3s ease;
}

.btn-nexus-primary:hover {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.btn-nexus-outline {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-nexus-outline:hover {
    border-color: var(--gacha);
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
}