#system-osk-container {
    position: fixed;
    bottom: -350px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 10005;
    background-color: var(--search-background);
    backdrop-filter: var(--edge-refraction-filter) saturate(2) blur(5px);
    border-top: 1px solid var(--glass-border);
    transition: bottom 0.3s cubic-bezier(0.2, 1.3, 0.64, 1);
    box-shadow: var(--sun-shadow), 0 -10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 50px 50px 0 0;
    corner-shape: superellipse(1.5);
    pointer-events: none;
}

#system-osk-container.open {
    bottom: 0;
    pointer-events: auto;
}

#system-osk-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: inherit;
    corner-shape: inherit;
}

body.osk-active .fullscreen-embed {
    height: calc(100% - 300px) !important;
    margin-bottom: 300px;
}

body.osk-active .modal {
    transform: translateX(-50%) translateY(-50%) scale(1) translateY(-150px);
}

body.osk-active .control-popup-content {
    transform: translateY(-150px);
}