.dj-button {
    display: inline-block;

    padding: 12px 12px;
    background-color: #00bfff; /* Neonblau */
    color: #001847;            /* Sehr dunkles Blau für Text */
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px #00bfff;
    margin-top: 20px;
}

.dj-button:hover {
    background-color: #0080ff;
    color: white;
    box-shadow: 0 0 20px #00bfff, 0 0 30px #00bfff;
}