/* Language Modal Specifics */
.lang-modal-content {
    text-align: center;
    padding: 2rem;
}

.lang-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.lang-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
    width: 100px;
}

.lang-option:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.lang-option:active {
    transform: scale(0.95);
}

.flag-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Update lang switch button to look clickable */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.lang-switch:hover {
    background: rgba(255,255,255,0.1);
}
