* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', Courier, monospace;
    background: linear-gradient(
        135deg,
        #ff71ce,
        #b967ff,
        #01cdfe,
        #05ffa1,
        #fffb96,
        #ff71ce
    );
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    transition: color 0.3s ease;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.ascii-art {
    font-size: clamp(0.35rem, 1.5vw, 0.85rem);
    line-height: 1.2;
    text-shadow:
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 40px currentColor;
    margin-bottom: 2rem;
    transition: color 0.5s ease;
    white-space: pre;
}

.tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    margin-bottom: 3rem;
    text-shadow: 0 0 10px currentColor;
    transition: color 0.5s ease;
}

footer {
    padding: 2rem;
    text-align: center;
}

.contact-link {
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px dashed;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px currentColor;
}

.contact-link:hover {
    text-shadow:
        0 0 10px currentColor,
        0 0 20px currentColor;
}

.contact-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-form.hidden {
    display: none;
}

.contact-link.hidden {
    display: none;
}

.contact-form input {
    padding: 0.7rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid;
    background: rgba(0, 0, 0, 0.3);
    outline: none;
    width: 280px;
    max-width: 70vw;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
    color: inherit;
    opacity: 0.6;
}

.contact-form input:focus {
    box-shadow:
        0 0 10px currentColor,
        0 0 20px currentColor;
}

.contact-form button {
    padding: 0.7rem 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow:
        0 0 10px currentColor,
        0 0 20px currentColor;
}

.contact-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.status-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-shadow: 0 0 5px currentColor;
}

.status-message.hidden {
    display: none;
}

.status-message.success {
    opacity: 0.9;
}

.status-message.error {
    opacity: 0.9;
}
