        :root {
            --ui-bg: rgba(10, 18, 30, 0.72);
            --ui-border: rgba(255, 255, 255, 0.26);
            --ui-text: #f3f7ff;
            --ui-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        }

        .top-ui-container {
            position: absolute;
            top: 8px;
            left: 56px;
            right: 132px;
            z-index: 10003;
            pointer-events: none;
        }

        .geocode {
            position: static !important;
            top: auto !important;
            left: auto !important;
            opacity: 1 !important;
            pointer-events: auto;
        }

        .geocode-form {
            display: flex;
            align-items: center;
            width: min(120px, calc(100vw - 210px));
            background: var(--ui-bg);
            border: 1px solid var(--ui-border);
            border-radius: 999px;
            box-shadow: var(--ui-shadow);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            padding: 4px 5px 4px 10px;
        }

        .geocode-form .textbox {
            width: 100% !important;
            border: 0;
            background: transparent;
            color: var(--ui-text);
            font-size: 13px;
            line-height: 1.2;
            padding: 4px 6px;
            margin: 0;
            outline: none;
            height: auto;
        }

        .geocode-form .textbox::placeholder {
            color: rgba(243, 247, 255, 0.75);
        }

        .geocode-button {
            border: 0;
            border-radius: 999px;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            cursor: pointer;
            font-size: 13px;
        }

        .lang-switch-container {
            position: absolute;
            top: 8px;
            right: 106px;
            z-index: 10003;
            pointer-events: auto;
        }

        .lang-switch-button {
            display: inline-block;
            color: #f3f7ff;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.34);
            border-radius: 999px;
            font-size: 12px;
            padding: 6px 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .lang-switch-button:hover {
            background: rgba(255, 255, 255, 0.24);
        }

        .lang-switch-button:active {
            background: rgba(255, 255, 255, 0.12);
        }

        .general-button {
            background-color: rgba(35, 45, 58, 0.9);
        }

        .sharebutton {
            top: 4px;
        }

        .titleImage {
            max-width: min(84vw, 420px);
            height: auto;
        }

        @media (max-width: 640px) {
            .top-ui-container {
                left: 50px;
                right: 72px;
            }

            .geocode-form {
                width: min(94px, calc(100vw - 130px));
            }

            .lang-switch-container {
                right: 56px;
            }
        }
