body {
    margin: 0;
    font-family: 'Press Start 2P', monospace;
    background-color: #1b1b1b;
    color: #e0c341;
    font-size: 11px;
    line-height: 1.6;
}

.navbar {
    background: #222;
    border-bottom: 3px solid #e0c341;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 13px;
    color: #e0c341;
    letter-spacing: 1px;
}

.navbar nav a {
    margin: 0 14px;
    color: #bbb;
    text-decoration: none;
    transition: 0.25s;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

    .navbar nav a.active,
    .navbar nav a:hover {
        color: #e0c341;
        border-bottom: 2px solid #e0c341;
    }

.user-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-logout {
    background: #e0c341;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: 0.2s;
}

    .btn-logout:hover {
        background: #d1b42f;
    }

.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.help-section h1 {
    font-size: 14px;
    margin-bottom: 10px;
}

.help-section p {
    margin-bottom: 20px;
    font-size: 11px;
    color: #ccc;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 16px; /* расстояние между статьями */
}

.faq-item {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 14px 18px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.4);
        border-color: #e0c341;
    }

    .faq-item h3 {
        margin: 0 0 6px 0;
        font-size: 12px;
        color: #e0c341;
    }

    .faq-item p {
        margin: 0;
        font-size: 11px;
        color: #ccc;
    }

.faq-item a {
    color: #ffdd00;       /* желтый текст */
    text-decoration: underline; /* или none, если хочешь без подчеркивания */
    font-weight: bold;     /* чуть выделяем */
}

.faq-item a:hover {
    color: #e6c900;       /* чуть темнее при наведении */
}
