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

:root {
    --bg:        #0f0f0f;
    --surface:   #1a1a1a;
    --surface2:  #222222;
    --border:    #2a2a2a;
    --accent:    #6366f1;
    --accent2:   #4f46e5;
    --accent3:   #a855f7;
    --text:      #e0e0e0;
    --muted:     #666;
    --success:   #22c55e;
    --danger:    #ef4444;
    --warning:   #f59e0b;
    --radius:    12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.site-logo span { color: var(--accent); }

.site-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.site-nav a:hover { color: #fff; }

.site-nav .btn-login {
    background: var(--accent);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.site-nav .btn-login:hover { background: var(--accent2); color: #fff; }

.site-user-badge {
    color: var(--muted);
    font-size: 0.85rem;
}

/* Main */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Header */
.page-header { margin-bottom: 2rem; }
.page-header h1 { font-size: 1.5rem; color: #fff; margin-bottom: 0.25rem; }
.page-header p  { color: var(--muted); font-size: 0.9rem; }

/* Kacheln */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

/* Forum-Kategorien (Kachellinks, analog Admin) */
.tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.2s;
}
.tile-link {
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
    display: block;
}
.tile-link:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(99,102,241,0.15);
}
.tile-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.tile-value { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.tile-label { font-size: 0.85rem; color: var(--muted); }
.tile-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.45; word-break: break-word; }
.tile-desc-multiline { text-align: left; }

.forum-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.forum-section {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .forum-sections {
        grid-template-columns: 1fr;
    }
}

.tile-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: block;
}

.tile-content:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.15);
}

.tile-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.tile-body { padding: 1rem; }
.tile-title { font-weight: 600; color: #fff; margin-bottom: 0.3rem; font-size: 0.95rem; }
.tile-meta  { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.tile-excerpt {
    font-size: 0.85rem;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tile-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.reaction {
    background: #111;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
}

/* Content Detail */
.content-wrap { max-width: 800px; }
.back-link { color: var(--muted); text-decoration: none; font-size: 0.85rem; display: block; margin-bottom: 1rem; }
.back-link:hover { color: var(--accent); }
.content-hero-img { width: 100%; border-radius: var(--radius); margin-bottom: 1.5rem; max-height: 400px; object-fit: cover; }
.content-title { font-size: 1.8rem; color: #fff; margin-bottom: 0.5rem; }
.content-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.content-body { line-height: 1.8; }
.content-body p  { margin-bottom: 1rem; }
.content-body h2 { font-size: 1.3rem; color: #fff; margin: 1.5rem 0 0.75rem; }
.content-body h3 { font-size: 1.1rem; color: #fff; margin: 1.2rem 0 0.5rem; }
.content-body ul, .content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-body blockquote { border-left: 3px solid var(--accent); padding-left: 1rem; color: #888; margin: 1rem 0; }

/* Reaktionen */
.reactions-wrap { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.reactions-label { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.reactions-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.reaction-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
}
.reaction-btn:hover:not(:disabled) { border-color: var(--accent); background: #1a1a2e; }
.reaction-btn:disabled { opacity: 0.5; cursor: default; }

/* Footer */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}
.site-footer a { color: var(--muted); text-decoration: none; margin: 0 0.5rem; }
.site-footer a:hover { color: var(--accent); }

/* Alerts */
.alert { padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.alert-success { background: #14271f; border: 1px solid #166534; color: #86efac; }
.alert-error   { background: #2d1a1a; border: 1px solid #7f1d1d; color: #fca5a5; }

/* Startseite Module-Kacheln */
.module-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: block;
    text-align: center;
}
.module-tile:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.15);
}
.module-tile .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.module-tile .title { font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
.module-tile .desc  { font-size: 0.85rem; color: var(--muted); }

/* Profil (Frontend) */
.profile-page { max-width: 640px; margin: 0 auto; }
.profile-dashboard { max-width: 960px; }
.profile-dash-header { margin-bottom: 1.5rem; }
.profile-dash-title { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 0 0.25rem; }
.profile-dash-sub { font-size: 0.875rem; color: var(--muted); margin: 0; }
.profile-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}
.profile-hero-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.profile-hero-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-hero-placeholder { line-height: 1; }
.profile-hero-body { min-width: 0; }
.profile-hero-name { font-size: 1.3rem; font-weight: 800; color: #fff; }
.profile-hero-handle { font-size: 0.85rem; color: var(--muted); }
.profile-hero-role { font-size: 0.8rem; color: var(--accent); margin-top: 0.25rem; }
.profile-tile-grid { margin-bottom: 1.5rem; }
.profile-tile-link { color: var(--accent); text-decoration: none; }
.profile-tile-link:hover { text-decoration: underline; }
.profile-nav { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.profile-nav a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.profile-nav a:hover { color: var(--accent); }
.profile-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.profile-field { margin-bottom: 1rem; }
.profile-field label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.35rem; }
.profile-field input,
.profile-field textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 0.65rem 0.85rem; color: var(--text); font-size: 0.95rem; font-family: inherit; }
.profile-field input:focus,
.profile-field textarea:focus { outline: none; border-color: var(--accent); }
.profile-field textarea { min-height: 100px; resize: vertical; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; align-items: center; }
.btn-profile {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
.btn-profile:hover { filter: brightness(1.08); }
.btn-profile-secondary { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-profile-secondary:hover { border-color: var(--accent); color: var(--accent); }
.profile-dl dt { font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem; }
.profile-dl dt:first-child { margin-top: 0; }
.profile-dl dd { color: var(--text); margin: 0.15rem 0 0 0; word-break: break-word; }
.profile-dl dd a { color: var(--accent); }
.profile-bio { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.profile-bio-title { font-size: 1rem; color: #fff; margin: 0 0 0.5rem; font-weight: 600; }
.profile-bio-text { line-height: 1.6; color: var(--text); }
.profile-hint { margin-bottom: 1rem !important; }
.profile-social-label { margin: 1.25rem 0 0.5rem !important; }
.profile-avatar-wrap { margin-bottom: 1rem; }
.profile-avatar { max-width: 120px; max-height: 120px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); display: block; }
.profile-avatar-preview-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.35rem; }
.profile-field input[type="file"] { padding: 0.5rem 0; }

/* Profil bearbeiten (2 Spalten) */
.profile-edit-page { max-width: 900px; }
.profile-edit-back { margin-bottom: 1.5rem; }
.profile-edit-title { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 0 1.5rem; }
.profile-edit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
@media (max-width: 768px) {
    .profile-edit-layout { grid-template-columns: 1fr; }
}
.profile-edit-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.profile-edit-avatar-panel { text-align: center; }
.profile-edit-avatar-ring {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    margin: 0 auto 1rem;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.profile-edit-avatar-ring img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-edit-avatar-placeholder { line-height: 1; }
.profile-edit-avatar-label {
    font-size: 0.85rem;
    color: var(--muted);
    display: block;
    margin-bottom: 0.5rem;
    text-align: left;
}
.profile-edit-file {
    width: 100%;
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.25rem 0;
}
.btn-profile-block { width: 100%; margin-top: 1rem; box-sizing: border-box; }
.profile-edit-fields { display: flex; flex-direction: column; gap: 1rem; }
.profile-edit-field-label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.4rem;
}
.profile-edit-input {
    width: 100%;
    box-sizing: border-box;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem 0.75rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: inherit;
}
.profile-edit-input:focus { outline: none; border-color: var(--accent); }
.profile-edit-textarea { resize: vertical; min-height: 4.5rem; }

/* Passwort ändern */
.profile-password-page { max-width: 500px; }
.profile-password-card {
    max-width: 500px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.profile-password-form { display: flex; flex-direction: column; gap: 1rem; }
.profile-field-label-note {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--muted);
    font-size: 0.8rem;
}

/* ── PROFIL ── */
.profile-edit-layout{display:grid;grid-template-columns:260px 1fr;gap:1.5rem;max-width:900px;align-items:start}
.profile-edit-panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem}
.profile-edit-avatar-ring{width:100px;height:100px;border-radius:50%;overflow:hidden;border:2px solid var(--accent);margin:0 auto 1rem;background:var(--surface2,#222);display:flex;align-items:center;justify-content:center;font-size:2.5rem}
.profile-edit-avatar-ring img{width:100%;height:100%;object-fit:cover}
.profile-edit-avatar-placeholder{font-size:2.5rem}
.profile-edit-avatar-form{display:flex;flex-direction:column;gap:0.75rem;align-items:center}
.profile-edit-avatar-label{font-size:0.8rem;color:var(--muted);text-transform:uppercase;letter-spacing:0.05em}
.profile-edit-file{font-size:0.8rem;color:var(--text);width:100%}
.profile-edit-fields{display:flex;flex-direction:column;gap:1rem}
.profile-edit-field{display:flex;flex-direction:column;gap:0.4rem}
.profile-edit-field-label{font-size:0.75rem;color:var(--muted);text-transform:uppercase;letter-spacing:0.05em}
.profile-edit-input{width:100%;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius);padding:0.6rem 0.75rem;color:var(--text);font-size:0.9rem}
.profile-edit-input:focus{outline:none;border-color:var(--accent)}
.profile-edit-textarea{resize:vertical;min-height:80px}
.profile-edit-title{font-size:1.5rem;font-weight:800;margin-bottom:1.5rem}
.btn-profile{background:var(--accent);color:#000;border:none;padding:0.6rem 1.5rem;border-radius:var(--radius);cursor:pointer;font-size:0.9rem;font-weight:700}
.btn-profile:hover{background:var(--accent2)}
.btn-profile-block{width:100%}
@media(max-width:640px){.profile-edit-layout{grid-template-columns:1fr}}

/* ── STATS / SECTIONS / CARDS ── */
.forum-stats,.dl-stats{display:flex;background:var(--surface,#1a1a1a);border:1px solid var(--border,#2a2a2a);border-radius:var(--radius,8px);overflow:hidden;margin-bottom:2rem}
.fs-item,.dl-stats-item{flex:1;padding:1rem;text-align:center;border-right:1px solid var(--border,#2a2a2a)}
.fs-item:last-child,.dl-stats-item:last-child{border-right:none}
.fs-val,.dl-stats-val{font-size:1.5rem;font-weight:800;line-height:1;margin-bottom:.2rem}
.fs-lbl,.dl-stats-lbl{font-size:.7rem;color:var(--muted,#666);text-transform:uppercase;letter-spacing:.08em}
.news-section,.art-section,.dl-section{margin-bottom:2.5rem}
.news-section-header,.art-section-header,.dl-section-header,.forum-section-header{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border,#2a2a2a)}
.news-section-icon,.art-section-icon,.dl-section-icon,.forum-section-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;background:var(--surface,#1a1a1a);border:1px solid var(--border,#2a2a2a)}
.news-section-name,.art-section-name,.dl-section-name,.forum-section-name{font-size:.9rem;font-weight:700;color:var(--text,#fff)}
.news-grid,.art-grid,.dl-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem}
.news-card,.art-card,.dl-card{background:var(--surface,#1a1a1a);border:1px solid var(--border,#2a2a2a);border-radius:var(--radius,8px);overflow:hidden;text-decoration:none;color:inherit;display:flex;flex-direction:column;transition:all .2s}
.news-card:hover,.art-card:hover,.dl-card:hover{border-color:var(--accent,#6366f1);transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.4)}
.news-card-img,.art-card-img,.dl-card-icon{width:100%;height:160px;background:#111;display:flex;align-items:center;justify-content:center;font-size:2.5rem;flex-shrink:0}
.news-card-img img,.art-card-img img{width:100%;height:100%;object-fit:cover}
.news-card-body,.art-card-body,.dl-card-body{padding:1rem;flex:1;display:flex;flex-direction:column}
.news-card-title,.art-card-title,.dl-card-title{font-size:.95rem;font-weight:700;color:#fff;margin-bottom:.4rem;line-height:1.4}
.news-card-excerpt,.art-card-excerpt{font-size:.8rem;color:var(--muted,#666);line-height:1.5;flex:1;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-card-footer,.art-card-footer,.dl-card-footer{display:flex;align-items:center;justify-content:space-between;padding-top:.6rem;margin-top:.6rem;border-top:1px solid var(--border,#2a2a2a);font-size:.75rem;color:var(--muted,#666);flex-wrap:wrap;gap:.3rem}
.news-card-reactions,.art-card-reactions,.dl-reactions{display:flex;gap:.3rem;flex-wrap:wrap}
.news-card-reaction,.art-card-reaction,.dl-reaction{background:rgba(0,0,0,.2);border:1px solid var(--border,#2a2a2a);border-radius:20px;padding:.1rem .4rem;font-size:.7rem}
.dl-card-meta{font-size:.8rem;color:var(--muted,#666);margin-bottom:.5rem}
.fcat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem}
.fcat{background:var(--surface,#1a1a1a);border:1px solid var(--border,#2a2a2a);border-radius:var(--radius,8px);overflow:hidden;text-decoration:none;color:inherit;display:block;transition:all .2s;position:relative}
.fcat:hover{border-color:var(--accent,#6366f1);transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.4)}
.fcat-stripe{height:3px}
.fcat-body{padding:1.25rem}
.fcat-top{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.fcat-icon{width:46px;height:46px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0;border:1px solid var(--border,#2a2a2a);background:var(--surface2,#222)}
.fcat-name{font-size:1rem;font-weight:700}
.fcat-desc{font-size:.8rem;color:var(--muted,#666)}
.fcat-footer{display:flex;align-items:center;gap:.75rem;padding-top:.75rem;border-top:1px solid var(--border,#2a2a2a);font-size:.75rem;color:var(--muted,#666)}
.fcat-latest{margin-top:.6rem;padding:.5rem .75rem;background:rgba(0,0,0,.2);border-radius:8px;border:1px solid var(--border,#2a2a2a)}
.fcat-latest-title{font-size:.75rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.fcat-latest-meta{font-size:.7rem;color:var(--muted,#666);margin-top:.15rem}
.fcat-arrow{position:absolute;bottom:1rem;right:1rem;font-size:1rem;color:var(--muted,#666);transition:all .2s}
.fcat:hover .fcat-arrow{color:var(--accent,#6366f1);transform:translateX(3px)}
.forum-sections{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.dl-badge{display:inline-block;padding:.15rem .5rem;border-radius:20px;font-size:.7rem;font-weight:700}
.dl-badge-free{background:#0a1a0f;color:#22c55e;border:1px solid #166534}
.dl-badge-paid{background:#1a130a;color:#f59e0b;border:1px solid #92400e}
.profile-edit-layout{display:grid;grid-template-columns:260px 1fr;gap:1.5rem;max-width:900px;align-items:start}
.profile-edit-panel{background:var(--surface,#1a1a1a);border:1px solid var(--border,#2a2a2a);border-radius:var(--radius,8px);padding:1.5rem}
.profile-edit-avatar-ring{width:100px;height:100px;border-radius:50%;overflow:hidden;border:2px solid var(--accent,#6366f1);margin:0 auto 1rem;background:var(--surface2,#222);display:flex;align-items:center;justify-content:center;font-size:2.5rem}
.profile-edit-avatar-ring img{width:100%;height:100%;object-fit:cover}
.profile-edit-avatar-form{display:flex;flex-direction:column;gap:.75rem;align-items:center}
.profile-edit-avatar-label{font-size:.8rem;color:var(--muted,#666);text-transform:uppercase;letter-spacing:.05em}
.profile-edit-file{font-size:.8rem;color:var(--text,#fff);width:100%}
.profile-edit-fields{display:flex;flex-direction:column;gap:1rem}
.profile-edit-field{display:flex;flex-direction:column;gap:.4rem}
.profile-edit-field-label{font-size:.75rem;color:var(--muted,#666);text-transform:uppercase;letter-spacing:.05em}
.profile-edit-input{width:100%;background:var(--bg,#0f0f0f);border:1px solid var(--border,#2a2a2a);border-radius:var(--radius,8px);padding:.6rem .75rem;color:var(--text,#fff);font-size:.9rem}
.profile-edit-input:focus{outline:none;border-color:var(--accent,#6366f1)}
.profile-edit-textarea{resize:vertical;min-height:80px}
.profile-edit-title{font-size:1.5rem;font-weight:800;margin-bottom:1.5rem}
.btn-profile{background:var(--accent,#6366f1);color:#fff;border:none;padding:.6rem 1.5rem;border-radius:var(--radius,8px);cursor:pointer;font-size:.9rem;font-weight:700}
.btn-profile:hover{background:var(--accent2,#4f46e5)}
.btn-profile-block{width:100%}
@media(max-width:640px){.profile-edit-layout{grid-template-columns:1fr}.forum-sections{grid-template-columns:1fr}}
