.nonsteam-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.3);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 24px;
    box-shadow: inset 0 0 6px rgba(0, 200, 255, 0.5);
}

.slider:before {
    position: absolute;
    content: \"\";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: #888;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00c8ff;
}

input:checked + .slider:before {
    transform: translateX(26px);
    background-color: #000;
}

.switch-label {
    color: #00c8ff;
    font-size: 14px;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 200, 255, 0.6);
}