* { box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f1115;
    color: #e8e8e8;
    display: flex;
    justify-content: center;
    padding: 40px 16px;
}
.container {
    width: 100%;
    max-width: 380px;
}
.brand {
    font-size: 1.2rem;
    text-align: center;
    color: #7289da;
    margin-bottom: 24px;
}
h2 { margin-bottom: 16px; }
form { display: flex; flex-direction: column; gap: 14px; }
label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; color: #b5b5b5; }
input {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #2a2d34;
    background: #1a1d23;
    color: #fff;
    font-size: 1rem;
}
button, .discord-btn {
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    background: #5865F2;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
}
button:hover, .discord-btn:hover { background: #4752c4; }
.divider { text-align: center; margin: 18px 0; color: #666; }
.hint { font-size: 0.8rem; color: #888; }
.flash { background: #3a2020; border: 1px solid #6b2b2b; padding: 10px; border-radius: 6px; margin-bottom: 16px; }
a { color: #7289da; }
.avatar-preview {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    border: 2px solid #2a2d34;
}
.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5865F2;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}
.settings-section {
    border-top: 1px solid #2a2d34;
    padding-top: 18px;
    margin-top: 18px;
}
.settings-section:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.settings-section h3 { margin-bottom: 10px; font-size: 1rem; color: #ccc; }
input[type="file"] { padding: 6px 0; border: none; background: none; }
