/* features.css - Особенности и языки */

.features-langs-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.features-box, .langs-box {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
}

.features-box h3, .langs-box h3 {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-list li i {
    color: var(--success);
    width: 18px;
    font-size: 0.8rem;
}

.features-list .empty {
    color: var(--gray);
    justify-content: center;
    padding: 15px;
}

.langs-table-container {
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.langs-table {
    width: 100%;
    min-width: 450px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.langs-table th,
.langs-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.langs-table th {
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.langs-table th i {
    margin-right: 6px;
    font-size: 0.9rem;
}

.langs-table tr:last-child td {
    border-bottom: none;
}

.langs-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.langs-table td:first-child {
    font-weight: 500;
    color: var(--light);
}

/* Иконки в таблице */
.yes { 
    color: var(--success); 
    font-size: 1.2rem;
    display: inline-block;
    width: 28px;
    text-align: center;
}

.no { 
    color: var(--danger); 
    font-size: 1.2rem;
    display: inline-block;
    width: 28px;
    text-align: center;
}

.nd {
    background: var(--warning);
    color: black;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 10px;
    display: inline-block;
    font-weight: 600;
}

.nd-note {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(255, 165, 2, 0.1);
    border-radius: 8px;
    font-size: 0.7rem;
    color: var(--warning);
    text-align: center;
}