

* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media (hover: none) and (pointer: coarse) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
    select,
    textarea {
        font-size: 16px !important;
    }

    a,
    button,
    input,
    select,
    textarea,
    label {
        touch-action: manipulation;
    }
}

.ls-toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    cursor: pointer;
    flex-shrink: 0;
}

.ls-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ls-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    transition: background 0.2s;
}

.ls-toggle-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.ls-toggle-switch input:checked + .ls-toggle-slider {
    background: rgba(0, 212, 255, 0.35);
}

.ls-toggle-switch input:checked + .ls-toggle-slider::before {
    transform: translateX(18px);
    background: #00d4ff;
}

.us-modal {
    position: fixed;
    inset: 0;
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.72);
}

.us-modal-box {
    background: #12121c;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 300px;
    max-width: calc(100vw - 32px);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.us-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.us-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.15s;
    line-height: 1;
    font-family: inherit;
}

.us-modal-close:hover {
    color: #fff;
}

.us-modal-body {
    padding: 6px 0 10px;
}

.us-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.us-row + .us-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#userSettingsAdsRow {
    border-top: none;
}

.settings-volume-control {
    display: none;
}

