<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f9fafc 0%, #e0e7ff 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.logo {
    width: 120px;
    margin-bottom: 1.5rem;
}

h1 {
    color: #2d2e32;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.countdown {
    font-size: 2rem;
    font-weight: bold;
    color: #4338ca;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.copyright {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin: 2rem 0 1rem 0;
    flex-shrink: 0;
}

.giving-button {
    display: inline-block;
    background-color: #4338ca; /* Using the countdown color for consistency */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.giving-button:hover {
    background-color: #3730a3; /* A slightly darker shade for hover */
}
</pre></body></html>