<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}
.loading-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #cf2e2e; /* Brand Secondary Color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
h1 {
    font-size: 24px;
    font-weight: bold;
    color: #0d2340; /* Brand Primary Color */
    margin-bottom: 10px;
}
p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}
.event-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.event-links a {
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: #cf2e2e; /* Brand Secondary Color */
    border-radius: 30px;
    transition: background 0.3s ease-in-out;
}
.event-links a:hover {
    background-color: #a52222;
}
@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }
    p {
        font-size: 16px;
    }
    .event-links a {
        font-size: 16px;
        padding: 12px 16px;
    }
}
</pre></body></html>