@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    background-color: #0F051F;
    color: #e0d4ff;
}

.glow-purple {
    text-shadow: 0 0 15px #C026D3,
                 0 0 30px #7C3AED;
}

.btn-chaos {
    background: linear-gradient(45deg, #7C3AED, #C026D3);
    color: white;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.7);
    transition: all 0.4s ease;
}

.btn-chaos:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 40px rgba(192, 38, 211, 0.9);
}

/* Form inputs */
input, textarea {
    transition: all 0.3s;
}

input:focus, textarea:focus {
    border-color: #C026D3;
    box-shadow: 0 0 0 3px rgba(192, 38, 211, 0.2);
}

/* Header logo glow */
header img {
    filter: drop-shadow(0 0 15px #C026D3);
}