@keyframes welcome {
    0% {
        opacity: 0;
        transform: scaleY(1.1);
    }
}

:root {
    -webkit-tap-highlight-color: var(--hero-glow-dim);

    scrollbar-gutter: stable;
    --bg: #0B0C10;
    --bg-panel: #12141a;
    --bg-panel-2: #171a21;
    --line: rgba(255, 255, 255, 0.08);
    --text: #F5F7FA;
    --text-dim: #AABBCC;

    --hero-h: 36;
    --hero-s: 100%;
    --hero-l: 50%;
    --hero: hsl(var(--hero-h), var(--hero-s), var(--hero-l));
    --hero-glow: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.8);
    --hero-glow-dim: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.3);
    --hero-glow-low: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.1);
    --hero-glow-tiny: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.05);
    --hero-glow-grid: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.08);
    --hero-glow: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.7);
    --hero-glow-dim: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.25);
    --hero-glow-intense: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.8);
    --hero-shadow: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.435);
    --hero-glow-low: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.12);
    --hero-glow-med: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.6);
    --hero-glow-35: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.35);
    --hero-glow: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.8);
    --hero-glow-dim: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.25);
    --hero-glow-low: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.15);
    --hero-glow-40: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.4);
    --hero-glow-tiny: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.08);
    --hero-glow-bg: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.03);
    --hero-glow-grid: hsla(var(--hero-h), var(--hero-s), var(--hero-l), 0.1);

    --black: #000000;
    --white: #ffffff;

    --white-alpha-025: rgba(255, 255, 255, 0.025);
    --white-alpha-02: rgba(255, 255, 255, 0.02);
    --white-alpha-03: rgba(255, 255, 255, 0.03);
    --white-alpha-1: rgba(255, 255, 255, 0.1);
    --black-alpha-8: rgba(0, 0, 0, 0.8);
    --black-alpha-6: rgba(0, 0, 0, 0.6);
    --black-alpha-5: rgba(0, 0, 0, 0.5);

    --bg-alpha-75: rgba(11, 12, 16, 0.75);
    --bg-alpha-6: rgba(11, 12, 16, 0.6);
    --bg-alpha-50: rgba(11, 12, 16, .8);
    --bg-panel-alpha-95: rgba(18, 20, 26, 0.95);
    --bg-panel-alpha-98: rgba(18, 20, 26, 0.98);

    --phone-bg-start: #1a1d24;
    --phone-bg-end: #0c0d11;
    --phone-border: #2a2e37;
    --notch-bg: #151525;
    --gauge-border: #1c2028;
    --badge-small-text: #c9cdd3;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 18px;
    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-color: var(--hero-glow-intense) transparent;
    scrollbar-width: auto;
    scroll-behavior: smooth;
    background: var(--bg);

}

body {
    overflow-x: hidden;
    transform-origin: 50% 10%;
    animation: welcome 2s cubic-bezier(0.3, 1, 0.5, 1) .5s backwards;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

::selection {
    background: var(--hero);
    color: var(--black);
}

:focus-visible {
    outline: 2px solid var(--hero);
    outline-offset: 3px;
}

/* ===== NAV ===== */
header.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-alpha-75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

/* ===== HERO ===== */
.hero {
    padding: 96px 0 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.eyebrow {
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    color: var(--hero);
    border: 1px solid var(--hero-glow-35);
    padding: 6px 12px;
    border-radius: 999px;
}

.cta-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hero);
}

h1.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

h1.hero-title .accent {
    color: var(--hero);
}

.dim {
    color: var(--text-dim);
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--text-dim);
    max-width: 480px;

}

.cta-row {
    max-width: 480px;
    gap: 14px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-meta {
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.hero-meta strong {
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
}

/* Phone mockups */
.device-stage {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 500px;
}

.phone {
    position: absolute;
    width: 225px;
    height: 470px;
    background: linear-gradient(160deg, var(--phone-bg-start), var(--phone-bg-end));
    border: 2px solid var(--phone-border);
    padding: 5px;
    overflow: visible;
    transform-style: preserve-3d;
}

.phone i.layer,
.phone::before,
.phone::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--phone-border);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.phone i.layer:nth-child(1) {
    transform: translateZ(-2px);
}

.phone i.layer:nth-child(2) {
    transform: translateZ(-4px);
}

.phone i.layer:nth-child(3) {
    transform: translateZ(-6px);
}

.phone i.layer:nth-child(4) {
    transform: translateZ(-8px);
}

.phone i.layer:nth-child(5) {
    transform: translateZ(-10px);
}

.phone i.layer:nth-child(6) {
    transform: translateZ(-12px);
}

.phone::before {
    transform: translateZ(-14px);
}

.phone::after {
    transform: translateZ(-16px);
    background: var(--phone-bg-end);
    border: 2px solid var(--phone-border);
    box-shadow: 0 40px 80px -20px var(--black-alpha-8), inset 0 0 0 1px var(--white-alpha-03);
}

.phone {
    transition: scale 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

@keyframes android-enter {
    0% {
        transform: rotateX(50deg) rotateY(-80deg);
    }

    100% {
        transform: rotateY(-20deg) rotateX(10deg);
    }
}

@keyframes ios-enter {
    0% {
        transform: rotateX(-80deg) rotateY(50deg);
    }

    100% {
        transform: rotateY(20deg) rotateX(10deg);
    }
}

.phone-android {
    border-radius: 20px;
    left: 8%;
    top: 20%;
    z-index: 1;
    animation: android-enter 8s cubic-bezier(0.16, 1, 0.3, 1) .5s forwards;
}

.phone-ios {
    border-radius: 36px;
    left: 46%;
    top: 8%;
    z-index: 2;
    animation: ios-enter 8s cubic-bezier(0.16, 1, 0.3, 1) .5s forwards;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: hidden;
    transform: translateZ(1px);
    background: var(--phone-bg-start);
}

.phone-android .phone-screen {
    border-radius: 15px;
}

.phone-ios .phone-screen {
    border-radius: 31px;
}

.notch {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);

    height: 16px;

    width: 16px;
    border-radius: 50%;
    background-color: var(--notch-bg);
}

/*.phone-ios .notch {
    width: 70px;
    border-radius: 10px;
}*/

@media (max-width: 800px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 57px;
        max-width: 500px;
    }

    .device-stage {
        height: 420px;
        order: -1;
    }

    .phone {
        width: 180px;
        height: 370px;
    }

    .hero {
        padding: 0 0;
    }
}

/* ===== SECTION SHARED ===== */
section {
    padding: 96px 0;
}

.section-head {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-eyebrow {
    font-family: var(--font-mono);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hero);
    margin-bottom: 14px;
}

h2.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-dim);
    font-size: 1rem;
}

@keyframes reveal-animation {
    from {
        opacity: 0;
        transform: translateY(150px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes reveal-animation3d {
    from {
        opacity: 0;
        transform: rotateX(90deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.feature-grid {
    perspective: 1000px;
}

.reveal {
    animation: reveal-animation linear both;
    animation-timeline: view();
    animation-range: 10% 50vh;
}

.feature-card {
    animation: reveal-animation3d linear both;
    animation-timeline: view();
    animation-range: 0 50vh;
}

/* ===== FEATURES ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--hero-glow-40);
    box-shadow: 0 20px 40px -16px var(--hero-glow-low);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-glow-tiny);
    border: 1px solid var(--hero-glow-dim);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    color: var(--hero);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    padding: 100px 0 120px;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-dim);
    margin-bottom: 36px;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--line);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===== HAMBURGER & DRAWER MENU ===== */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(-2px);
    background-color: var(--hero);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(2px);
    background-color: var(--hero);
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;

    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Content */
.drawer-content {
    position: absolute;
    top: 72px;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: calc(100% - 72px);
    background: var(--bg-alpha-50);
    border-left: 1px solid var(--line);
    padding: 20px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px var(--black-alpha-5);
}

.drawer-overlay.active .drawer-content {
    transform: translateX(0);
}

/* Drawer Navigation */
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--white-alpha-02);
    border: 1px solid var(--line);
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.drawer-link:hover {
    color: var(--text);
    background: var(--hero-glow-tiny);
    border-color: var(--hero-glow-dim);
    transform: translateX(-4px);
    box-shadow: 0 4px 20px var(--hero-glow-low);
}

.drawer-link-arrow {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--hero);
}

.drawer-link:hover .drawer-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Drawer Footer */
.drawer-footer {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.drawer-socials {
    margin-bottom: 12px;
}

.drawer-copy {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

/* ===== APP MODAL WINDOW ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-alpha-75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 102;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: var(--bg-panel-alpha-98);
    border: 1px solid var(--line);
    border-radius: 24px;
    width: 100%;
    max-width: 580px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 40px var(--hero-glow-35);
    overflow: hidden;
}

.modal-overlay.active .modal-window {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--line);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-dim);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    color: var(--hero);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 32px;
    height: 32px;
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--white-alpha-1);
    border-radius: 99px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--hero);
}

.modal-body h4 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 20px 0 8px 0;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 16px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.modal-body li {
    margin-bottom: 8px;
}

.release-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.release-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.release-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.release-version {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--hero);
}

.release-date {
    font-size: 0.8rem;
    color: var(--text-dim);
}

body.modal-open {
    overflow: hidden;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.marquee-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    gap: 24px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 30px 0;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 24px;
    min-width: 100%;
    animation: scroll-marquee 40s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.marquee-slide img {
    height: 420px;
    width: auto;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.6);
    display: block;
    pointer-events: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.marquee-slide:hover {
    transform: scale(1.02);
}

.marquee-slide:hover img {
    border-color: var(--hero-glow-med);
    box-shadow: 0 0 20px var(--hero-glow-35);
}

.marquee-slide.landscape img {
    aspect-ratio: 1052/592;
}

.marquee.reverse .marquee-content {
    animation-direction: reverse;
    animation-duration: 360s;
}

.marquee.vertical {
    flex-direction: column;
    height: 100%;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    padding: 30px 0;
    gap: 24px;
}

.marquee.vertical .marquee-content {
    flex-direction: column;
    min-width: auto;
    min-height: 100%;
    animation: scroll-marquee-vertical 150s linear infinite;
}


.review-card {
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--text-dim);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: var(--hero);
    margin-bottom: 12px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-card p {
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 24px));
    }
}

@keyframes scroll-marquee-vertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(calc(-100% - 24px));
    }
}

@media (max-width: 768px) {
    .marquee-slide img {
        height: 280px;
        border-radius: 14px;
    }

    .marquee {
        gap: 16px;
    }

    .marquee-content {
        gap: 16px;
        animation-duration: 25s;
    }

    @keyframes scroll-marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-100% - 16px));
        }
    }
}

.drawer-link img {
    width: 25px;
    height: 25px;
}

.overlay {
    position: sticky;
    bottom: 20px;
    z-index: 98;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.overlay a {
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
}