/* --------------------------------------------------
   GLOBAL BASE
-------------------------------------------------- */
body {
    margin: 0;
    padding: 0;
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
}

/* --------------------------------------------------
   NEON PULSE TITLE
-------------------------------------------------- */
@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 4px #39ff14,
            0 0 8px #39ff14,
            0 0 12px #2ecc71,
            0 0 18px #2ecc71;
    }
    50% {
        text-shadow:
            0 0 6px #39ff14,
            0 0 12px #39ff14,
            0 0 18px #2ecc71,
            0 0 28px #2ecc71;
    }
    100% {
        text-shadow:
            0 0 4px #39ff14,
            0 0 8px #39ff14,
            0 0 12px #2ecc71,
            0 0 18px #2ecc71;
    }
}

.dj-title {
    font-family: 'Fugaz One', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #000;
    -webkit-text-stroke: 1px #39ff14;
    margin-bottom: 24px;
    animation: neonPulse 2.2s ease-in-out infinite;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.button {
    display: block;
    width: 90%;              /* ← EXACTLY what you asked for */
    max-width: 90%;          /* ← Prevents overflow */
    margin: 0 auto;          /* ← Centres the button */
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;  /* ← Ensures padding doesn’t cause overflow */
}

.button.green {
    background: #1fae1f;
}

.button.red {
    background: #cc0000;
}

.stack-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Match <button> styling to .button links */
button {
    font-size: 16px;
    font-family: inherit;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
}

/* --------------------------------------------------
   FORMS
-------------------------------------------------- */
form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.small-label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-align: left;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-top: 6px;
    font-size: 16px;
}

/* --------------------------------------------------
   MESSAGES
-------------------------------------------------- */
.message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.message.error {
    background: #b30000;
}

.message.success {
    background: #1fae1f;
}
