/* Pages FAQ / Contact / Signaler */
html, body.support-page {
    background: var(--dark-bg, #050508);
    color: var(--text-primary, #e2e8f0);
    min-height: 100vh;
}

.support-main {
    padding: 7.5rem 0 4rem;
    min-height: 100vh;
}

.support-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.support-hero {
    margin-bottom: 2rem;
}

.support-hero h1 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    margin: 0 0 0.45rem;
}

.support-hero p {
    color: var(--text-secondary, #94a3b8);
    margin: 0;
    line-height: 1.55;
}

.support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.support-links a {
    color: #87CEEB;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.support-links a:hover,
.support-links a.is-current {
    background: rgba(135, 206, 235, 0.12);
    border-color: #87CEEB;
}

.support-card {
    background: var(--dark-surface, #141a24);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    background: var(--dark-surface, #141a24);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 0.95rem 1.1rem;
    font-weight: 650;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    color: #87CEEB;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item .faq-body {
    padding: 0 1.1rem 1.05rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-item .faq-body a { color: #87CEEB; }

.support-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.support-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.support-field span,
.support-field label {
    font-size: 0.88rem;
    color: #cbd5e1;
    font-weight: 600;
}

.support-field em {
    font-style: normal;
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.8rem;
}

.support-field input,
.support-field select,
.support-field textarea {
    width: 100%;
    box-sizing: border-box;
    background: #0f141d;
    color: #fff;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    font: inherit;
}

.support-field textarea { min-height: 140px; resize: vertical; }

.support-anon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.support-user-chip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 12px;
    background: rgba(135, 206, 235, 0.08);
    border: 1px solid rgba(135, 206, 235, 0.22);
}

.support-user-chip img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.support-user-chip a {
    color: #87CEEB;
    font-size: 0.82rem;
}

.support-feedback {
    min-height: 1.2rem;
    font-size: 0.9rem;
}

.support-feedback.is-ok { color: #4ade80; }
.support-feedback.is-error { color: #f87171; }

.support-hidden { display: none !important; }

.support-target {
    font-size: 0.9rem;
    color: #94a3b8;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.support-target a { color: #87CEEB; }

@media (max-width: 640px) {
    .support-main { padding: 6.2rem 1rem 3rem; }
    .support-anon { grid-template-columns: 1fr; }
    .support-card { padding: 1rem; }
}
