/* BOUTONS ROCK - Style unifié pour tous les boutons d'action */

.rock-btn {
    position: relative;
    padding: 1.25rem 3rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    cursor: pointer;

    /* Dégradé métal sombre */
    background: linear-gradient(145deg, #1a1a1a, #000000);
    color: #ffffff;

    /* Bordure */
    border: 3px solid #444 !important;

    /* Ombres multiples pour effet 3D */
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.6);

    /* Effet glow sur le texte */
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9);
}

.rock-btn:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: #666 !important;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.6);
}

.rock-btn:active {
    transform: scale(0.98) translateY(0);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.6);
}

/* Effet de lumière au survol */
.rock-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.rock-btn:hover::before {
    left: 100%;
}

/* Texte interne */
.rock-btn > span {
    position: relative;
    z-index: 10;
}

/* Variante secondaire (moins accentuée) */
.rock-btn-secondary {
    background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
    color: #cccccc;
    border: 3px solid #555 !important;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
        inset 0 -2px 0 rgba(0, 0, 0, 0.5);

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.rock-btn-secondary:hover {
    color: #ffffff;
    border-color: #666 !important;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.9);
}

/* État actif pour les boutons de sélection */
.rock-btn.active {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    color: #ffffff;
    border: 3px solid #fff !important;

    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.6);

    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .rock-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}

/* Pleine largeur pour certains boutons */
.rock-btn.w-full {
    width: 100%;
    text-align: center;
}
