* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Metric', "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    background-color: rgba(13, 13, 13, 0.05);
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo {
    margin-top: 94px;
    padding: 20px;
}

.logo img {
    width: 80px;
    height: auto;
}

.content {
    padding: 0 20px;
    margin-bottom: 62px;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    color: #0d0d0d;
    margin-bottom: 20px;
    line-height: 28px;
}

p {
    font-size: 16px;
    color: #0d0d0d;
    margin-bottom: 40px;
    line-height: 20px;
    font-weight: 400;
}

.status-link {
    color: #2b6ed5;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.status-link:hover {
    color: #2461bd;
}

.status-link:visited {
    color: #2b6ed5;
}

.status-link:active {
    color: #1d53a4;
    outline: none;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
