.mode-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.mode-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: #f0f4f8;
    border-radius: 50px;
    padding: 4px;
    gap: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mode-toggle__pill {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(17, 24, 39, 0.14);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    pointer-events: none;
}

.mode-toggle[data-active="real"] .mode-toggle__pill {
    background: #dbeafe;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.18);
}

.mode-toggle[data-active="prono"] .mode-toggle__pill,
.mode-toggle__pill--right {
    transform: translateX(100%);
}

.mode-toggle[data-active="prono"] .mode-toggle__pill {
    background: #fff3cd;
    box-shadow: 0 2px 8px rgba(240, 173, 78, 0.18);
}

.mode-toggle__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 32px 9px 10px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.22s ease;
    white-space: nowrap;
    user-select: none;
}

.mode-toggle__btn:hover,
.mode-toggle__btn:focus {
    text-decoration: none;
    outline: none;
}

.mode-toggle__btn--active {
    color: #1a1a1a;
    font-weight: 600;
}

.mode-toggle[data-active="real"] .mode-toggle__btn[data-mode="real"] {
    color: #08315c;
}

.mode-toggle[data-active="prono"] .mode-toggle__btn[data-mode="prono"] {
    color: #7a4b00;
}

.mode-toggle__btn svg {
    flex-shrink: 0;
    transition: color 0.22s ease;
}

html[data-theme='dark'] .mode-toggle {
    background: #1e3050;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.35);
}

html[data-theme='dark'] .mode-toggle__pill {
    background: #2a4470;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

html[data-theme='dark'] .mode-toggle[data-active="real"] .mode-toggle__pill {
    background: #1e3a6e;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

html[data-theme='dark'] .mode-toggle[data-active="real"] .mode-toggle__btn[data-mode="real"] {
    color: #e5efff;
}

html[data-theme='dark'] .mode-toggle[data-active="prono"] .mode-toggle__pill {
    background: #5a3d11;
    box-shadow: 0 2px 10px rgba(217, 154, 43, 0.35);
}

html[data-theme='dark'] .mode-toggle[data-active="prono"] .mode-toggle__btn[data-mode="prono"] {
    color: #ffe7b0;
}

html[data-theme='dark'] .mode-toggle__btn {
    color: #6b8ab0;
}

html[data-theme='dark'] .mode-toggle__btn--active {
    color: #e5efff;
}

@media (max-width: 420px) {
    .mode-toggle {
        width: 100%;
        min-width: 0;
    }

    .mode-toggle__btn {
        flex: 1 1 0;
        justify-content: center;
        min-width: 0;
        padding: 8px 6px;
        gap: 5px;
        font-size: 13px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mode-toggle__btn svg {
        width: 13px;
        height: 13px;
    }
}
