* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #f8e3f0 0%, #e0d4fc 100%);
    font-family: 'Segoe UI', 'Comic Neue', 'Poppins', sans-serif;
    padding: 20px;
    min-height: 100vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(2px);
    overflow: hidden;
    padding: 20px 30px 40px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid #ffb7c5;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 15px;
}
h1 {
    font-size: 2rem;
    background: linear-gradient(135deg, #c86b9c, #8f6fbf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #6a4e8a;
    font-weight: bold;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    padding: 5px 0;
}
nav a:hover, nav a.active {
    color: #c86b9c;
    border-bottom-color: #c86b9c;
}
.status-card {
    background: #ffeef4;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    text-align: center;
    font-size: 1.2rem;
}
.card-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.quick-card {
    flex: 1;
    min-width: 200px;
    background: #ffffffcc;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.quick-card:hover {
    transform: translateY(-5px);
    background: white;
}
.quick-card a {
    text-decoration: none;
    font-weight: bold;
    color: #aa6fc9;
}
.announcement, .changelog-item, .post-card, .comment {
    background: #ffffffcc;
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    transition: 0.1s;
}
h2 {
    color: #8b5a9e;
    border-left: 6px solid #f5a3b9;
    padding-left: 15px;
    margin: 20px 0 15px 0;
}
input, textarea {
    border: 1px solid #e2c3e6;
    border-radius: 40px;
    padding: 10px 16px;
    width: 100%;
    margin-bottom: 12px;
    font-family: inherit;
    background: white;
}
button {
    background: #c375a2;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
button:hover {
    background: #9b5b7f;
}
.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.tip {
    font-size: 0.8rem;
    color: #7c5f8a;
}
.error {
    color: #d9534f;
    background: #ffe6e6;
    padding: 8px;
    border-radius: 30px;
    text-align: center;
}
footer {
    text-align: center;
    margin-top: 40px;
    color: #a288b3;
}
@media (max-width: 700px) {
    .container { padding: 15px; }
    header { flex-direction: column; gap: 12px; }
}