/* Basic Reset & Body Styling */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Main Container for Content */
.container {
    max-width: 650px;
    padding: 20px;
    border-radius: 16px;
    background-color: #1E1E1E; /* Surface color from our theme */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Header Styling (Veridi) */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2E7D32; /* Primary brand green */
    margin-bottom: 16px;
}

/* Subtitle / Message Styling */
p {
    font-size: 1.25rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Link Styling for Future Use */
a {
    color: #00BFA5; /* Accent teal color */
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 32px;
    font-size: 0.9rem;
    color: #757575;
}