.glass-logo {
    width: 240px !important; 
    height: 50px !important; 
    border-radius: 23px !important; 
    padding: 12px 0px 10px !important; 
    position: fixed !important; 
    z-index: 2 !important; 
    top: 20px !important; 
    right: 40px !important;
}

@media (max-width: 1024px) {
    .glass-logo {
        display: none !important;
    }
}

.glass-surface {
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
transition: opacity 0.26s ease-out;
isolation: isolate;
}
.glass-surface__filter {
width: 100%;
height: 100%;
pointer-events: none;
position: absolute;
inset: 0;
opacity: 0;
z-index: -1;
}
.glass-surface__content {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
border-radius: inherit;
position: relative;
z-index: 1;
}
.glass-surface--svg {
background: light-dark(
    hsl(0 0% 100% / var(--glass-frost, 0)),
    hsl(0 0% 0% / var(--glass-frost, 0))
);
backdrop-filter: var(--filter-id, url(#glass-filter))
    saturate(var(--glass-saturation, 1));
box-shadow:
    0 0 2px 1px
    light-dark(
        color-mix(in oklch, black, transparent 85%),
        color-mix(in oklch, white, transparent 65%)
    )
    inset,
    0 0 10px 4px
    light-dark(
        color-mix(in oklch, black, transparent 99%),
        color-mix(in oklch, white, transparent 85%)
    )
    inset,
    0px 4px 16px rgba(17, 17, 26, 0.05),
    0px 8px 24px rgba(17, 17, 26, 0.05),
    0px 16px 56px rgba(17, 17, 26, 0.05),
    0px 4px 16px rgba(17, 17, 26, 0.05) inset,
    0px 8px 24px rgba(17, 17, 26, 0.05) inset,
    0px 16px 56px rgba(17, 17, 26, 0.05) inset;
}
.glass-surface--fallback {
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(12px) saturate(1.8) brightness(1.1);
-webkit-backdrop-filter: blur(12px) saturate(1.8) brightness(1.1);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.2),
    0 2px 16px 0 rgba(31, 38, 135, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 0 rgba(255, 255, 255, 0.2);
}
@media (prefers-color-scheme: dark) {
.glass-surface--fallback {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(1.8) brightness(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.8) brightness(1.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 0 rgba(255, 255, 255, 0.1);
}
}
@supports not (backdrop-filter: blur(10px)) {
.glass-surface--fallback {
    background: rgba(255, 255, 255, 0.4);
    box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 0 rgba(255, 255, 255, 0.3);
}
.glass-surface--fallback::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: inherit;
    z-index: -1;
}
}
@supports not (backdrop-filter: blur(10px)) {
@media (prefers-color-scheme: dark) {
    .glass-surface--fallback {
    background: rgba(0, 0, 0, 0.4);
    }
    .glass-surface--fallback::before {
    background: rgba(255, 255, 255, 0.05);
    }
}
}
.glass-surface:focus-visible {
outline: 2px solid light-dark(#007aff, #0a84ff);
outline-offset: 2px;
}

.liquid-glass {
position: relative;
isolation: isolate;
}
.liquid-glass::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: inherit;
pointer-events: none;
box-shadow: inset 0 0 9px 0px #ffffff;
background-color: rgba(255, 255, 255, 0);
z-index: 0;
}
.liquid-glass::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: inherit;
pointer-events: none;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
filter: url(#liquid-glass-filter);
-webkit-filter: url(#liquid-glass-filter);
isolation: isolate;
z-index: -1;
}
.liquid-glass-fallback {
position: relative;
isolation: isolate;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
@supports (backdrop-filter: url(#liquid-glass-filter)) {
.liquid-glass-auto {
    position: relative;
    isolation: isolate;
}
.liquid-glass-auto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 9px 0px #ffffff;
    background-color: rgba(255, 255, 255, 0);
    z-index: 0;
}
.liquid-glass-auto::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    pointer-events: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    filter: url(#liquid-glass-filter);
    -webkit-filter: url(#liquid-glass-filter);
    isolation: isolate;
    z-index: -1;
}
}
@supports not (backdrop-filter: url(#liquid-glass-filter)) {
.liquid-glass-auto {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}
}