html {
    background: #fff;
    color: #000;
    min-height: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body.intro-pending .main-center > svg,
body.intro-pending .nav-carousel,
body.intro-pending .carousel-item {
    opacity: 0;
    visibility: hidden;
}

.hero-lock {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    overscroll-behavior: contain;
}

.main-center {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
    padding: clamp(20px, 4vw, 56px);
}

.main-center > svg {
    display: block;
    width: auto;
    height: 40%;
    max-height: 500px;
    max-width: min(42vw, 520px);
}

.main-center > svg path {
    fill: #000;
}

.nav-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, max-content));
    gap: 4px;
    justify-items: center;
    align-content: center;
    justify-self: end;
}

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-card {
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #000;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.05;
    transition: background 0.25s ease, color 0.25s ease, scale 0.25s ease;
    cursor: pointer;
}

.carousel-card:hover {
    background: #8ACE00;
    color: black;
    scale: 1.1;
}

.carousel-card:active {
    background: #8ACE00;
    color: black;
    scale: 1.1;
}

.nav-carousel:has(.carousel-card:hover) .carousel-item:not(:has(.carousel-card:hover)) .carousel-card {
    scale: 0.9;
}

.carousel-card strong {
    font-size: 20px;
    font-weight: 500;
}

.blurred-word {
    filter: blur(5px);
}

@media (max-width: 1080px) {
    .main-center {
        flex-direction: column;
        padding: 16px;
    }

    .carousel-card {
        width: clamp(116px, calc((100vw - 48px - 4px) / 2), 350px);
        height: clamp(116px, calc((100vw - 48px - 4px) / 2), 350px);
    }

    .lang-switcher {
        display: none;
    }
}
