body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.form-title {
    font-size: 2em;
    font-weight: bold;
    color: #000000; /* Bright and festive color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.form-subtitle {
    font-size: 1em;
    color: #555; /* Neutral color to complement the title */
    margin-top: 10px;
    line-height: 1.4;
}

main {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.question {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, select, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.announcement {
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    text-align: center;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.announcement h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.announcement p {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.announcement strong {
    color: #ffe600; /* Highlight Digital AI Host */
    font-weight: bold;
}

.announcement small {
    font-size: 0.9em;
    display: block;
    margin-top: 10px;
    color: #ffe6f2;
    opacity: 0.8;
}

.back-home {
    margin: 20px auto;
    text-align: center;
}

.back-home button {
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    background: #4caf50; /* Green button */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-home button:hover {
    background-color: #45a049;
    transform: translateY(-2px); /* Slight lift effect on hover */
}

.back-home button:active {
    background-color: #3e8e41;
    transform: translateY(1px); /* Pressed effect */
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}