/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top, #1A1A1A, #101010, #0A0A0A, #000000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

h1 {
    font-size: 3em;
    color: #fff;
    margin-bottom: 10px;
    animation: fadeInDown 1s;
}

#welcome-user {
    font-size: 1.5em;
    color: #aaa;
    animation: fadeInDown 1s;
}

#name-form, #choice-form, #output {
    color: #fff;
    margin-top: 20px;
    text-align: center;
}

input[type="text"] {
    padding: 10px;
    font-size: 1em;
    width: 250px;
    border: 2px solid #c05c5c;
    border-radius: 5px;
    outline: none;
}

button {
    padding: 10px 20px;
    margin: 10px 5px;
    font-size: 1em;
    border: none;
    border-radius: 50px;
    background-color: #c05c5c;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

button:hover {
    background-color: #ab3939;
    transform: translateY(-3px);
}

.red-text {
    color: #e53935;
    font-weight: bold;
}

#output p {
    font-size: 1.5em;
    color: #ccc;
    margin: 20px 0;
}

.animated-text {
    animation: fadeInUp 1s;
}
.gold-text {
    color: gold;
}

/* Text Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    } to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    } to {
        opacity: 1;
        transform: translateY(0);
    }
}

