#MyButton {
    backface-visibility: hidden;
    position: relative;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    background: linear-gradient(180deg,#f0f0f0 0.4188423198279954%,#a8a8a8 100%);
    border-radius: clamp(5px, 2vw, 20px);
    border: 1px solid #c5c5c5;
    border-width: 1px 1px 1px 1px;
    padding: clamp(2px, 2vw, 12px) clamp(2px, 2vw, 20px);
    box-sizing: border-box; 
    box-shadow: inset 0px 1px 0px rgba(255,255,255,1),0px 1px 3px rgba(0,0,0,0.3);
    color: #000000;
    font-size: clamp(5px + 1vw, 4vh, 2.5vh) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
    word-wrap: break-word;
    white-space: normal;

    /* 🔒 Убираем выделение и лупу на iOS */
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
    touch-action: manipulation; /* Блокирует жесты зума, но позволяет нажатия */
    -webkit-tap-highlight-color: transparent; /* Убирает серую подсветку */
}

#MyButton:active {
    backface-visibility: hidden;
    position: relative;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    background: linear-gradient(180deg,#a8a8a8 0.4188423198279954%,#f0f0f0 100%);
    border-radius: clamp(5px, 2vw, 20px);
    border: 1px solid #c5c5c5;
    border-width: 1px 1px 1px 1px;
    box-sizing: border-box; 
    padding: clamp(2px, 2vw, 12px) clamp(2px, 2vw, 20px);
    box-shadow: inset 0px 1px 0px rgba(255,255,255,1),0px 1px 3px rgba(0,0,0,0.3);
    color: #7C847F;
    font-size: clamp(5px + 1vw, 4vh, 2.5vh) !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
