body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #e8eef4;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
}

.score-modal {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 40px rgba(31, 78, 121, 0.14);
    padding: 32px;
    width: 100%;
    max-width: 680px;
}

.score-modal-close {
    display: none;
}

.dc-lang-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    justify-content: flex-end;
}

.dc-lang-btn {
    background: none;
    border: 1.5px solid #d0dce8;
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 11px;
    font-family: var(--mono);
    cursor: pointer;
    color: #888;
    transition: all 0.15s;
    letter-spacing: 0.05em;
}

.dc-lang-btn:hover {
    border-color: #2E75B6;
    color: #2E75B6;
}

.dc-lang-btn.active {
    background: #2E75B6;
    border-color: #2E75B6;
    color: white;
    font-weight: 700;
}