* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    margin: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #667eea;
}

h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 300;
}

.notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    color: #856404;
    line-height: 1.6;
}

.info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    color: #0c5460;
    line-height: 1.6;
}

.status {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer {
    margin-top: 30px;
    color: #6c757d;
    font-size: 0.9rem;
}

.site-footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #5a6fd8;
    text-decoration: underline;
} 