.lang-title {
    text-align: center;
    margin-bottom: 60px;
}
.lang-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}
.lang-title p {
    font-size: 18px;
    color: #8a8a8a;
}
.region-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 50px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1f2837;
}
.lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.lang-item {
    display: block;
    padding: 13px 22px;
    color: #e0e0e0;
    font-size: 17px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.lang-item:hover {
    background: rgba(0, 170, 255, 0.15);
    color: #ffffff;
    border-color: rgba(0, 170, 255, 0.3);
}
.lang-item.active {
    background: rgba(0, 170, 255, 0.22);
    color: #00aaff;
    border-color: #00aaff;
    font-weight: 500;
}