/* ============================================ */
/* BOUTONS */
/* ============================================ */

/* Bouton Principal - Gradient Cyber */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

/* Bouton Secondary - Orange */
.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

/* Bouton Outline */
.btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}
