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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
}

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    padding: 40px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

h1 {
    font-size: 42px;
    color: #667eea;
    margin-bottom: 10px;
    font-weight: 600;
}

.subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

main {
    margin-bottom: 30px;
}

.content-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #667eea;
}

.content-box h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
}

.label {
    font-weight: 500;
    color: #555;
    min-width: 120px;
    font-size: 16px;
}

.value {
    color: #333;
    font-size: 16px;
    flex: 1;
}

.value.status {
    color: #667eea;
    font-weight: 600;
}

.notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.notice p {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 8px;
}

.notice p:last-child {
    margin-bottom: 0;
}

footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    color: #666;
}

footer p {
    margin-bottom: 8px;
    font-size: 14px;
}

.icp {
    color: #333;
    font-size: 14px;
    margin-top: 10px;
}

.icp a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.icp a:hover {
    color: #667eea;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 25px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .label {
        min-width: auto;
    }
}

