.letter-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
    padding: 12px;
    background: #151515;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.letter-navigation a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.letter-navigation a:hover {
    background: #2a2a2a;
    color: #f97316;
}

.letter-navigation a.active {
    color: #ffffff;
    background: #f97316;
}

.terms-table {
    overflow-x: auto;
    margin: 20px 0;
}

.terms-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: #c0c0c0;
}

.terms-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #f97316;
    color: #ffffff;
    font-weight: 600;
    background: #151515;
}

.terms-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #2a2a2a;
    vertical-align: top;
}

.terms-table td a {
    color: #f97316;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.terms-table td a:hover {
    border-bottom-color: #f97316;
}

@media (max-width: 768px) {
    .terms-table table {
        font-size: 0.8rem;
    }
    .terms-table th,
    .terms-table td {
        padding: 6px 8px;
    }
    .letter-navigation a {
        font-size: 0.9rem;
        padding: 2px 6px;
    }
}

tr[id] {
    transition: 1s all;
}

tr[id]:hover, .link {
    background-color: #3e3e3e;
}