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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0f0f1a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 34px 16px;
}

.container {
    width: 100%;
    max-width: 750px;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.faq-header h1 {
    font-size: 1.48rem;
    color: #fff;
    letter-spacing: 1px;
}

.btn-back {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    background: #3a3a5a;
    color: #ddd;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-back:hover {
    background: #5a52d5;
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #1a1a2e;
    border: 1px solid #2a2a44;
    border-radius: 10px;
    padding: 16px 20px;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: #6c63ff;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 7px;
}

.faq-question::before {
    content: "❓ ";
    color: #6c63ff;
}

.faq-answer {
    font-size: 0.9rem;
    line-height: 1.64;
    color: #aaa;
    padding-left: 22px;
}

.faq-answer strong {
    color: #ddd;
}

.faq-answer code {
    background: #252540;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.86rem;
    color: #ffb86c;
    font-family: "Cascadia Code", "Fira Code", "Consolas", monospace;
}
