/* Убираем стандартную серую подсветку iPhone */
html,
body,
a,
.tn-elem,
.tn-atom {
    -webkit-tap-highlight-color: transparent !important;
}

/* Элемент меню */
.tn-atom {
    border-radius: 12px;
    outline: none !important;

    transition:
        background 0.14s ease,
        box-shadow 0.14s ease,
        transform 0.14s ease;
}

/* Стеклянное касание */
.tn-atom.glass-touch {
    background: rgba(255, 255, 255, 0.26) !important;

    -webkit-backdrop-filter: blur(12px) saturate(150%);
    backdrop-filter: blur(12px) saturate(150%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(255, 255, 255, 0.18),
        0 4px 14px rgba(0, 0, 0, 0.10) !important;

    transform: scale(0.96);