#world {
    position: absolute;
    inset: 0;
    will-change: transform;
    z-index: 1;
}

.ground {
    position: absolute;
    left: -100000px;
    bottom: 0;
    width: 200000px;
    height: 120px;
    z-index: 10;
    background-image: url("../assets/props/ground.png");
    background-repeat: repeat-x;
    background-size: auto 120px;
    image-rendering: pixelated;
}

.world-object {
    position: absolute;
    bottom: 120px;
    z-index: 5;
}

.tooltip {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 10px;
    height: fit-content;
    width: max-content;
    text-align: center;
    border-radius: 10px;
    font-family: "Franklin Gothic Medium", Arial, sans-serif;
    color: white;
}

.tooltip a {
    font-family: "NuniPixel";
    background-color: rgba(0, 0, 0, 0.25);
    color: rgb(233, 233, 233);
    padding: 4px 6px;
    border-radius: 2px;
}

.cloud {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 2;
}

.cloud img {
    width: 16px;
    height: 16px;
    image-rendering: pixelated;
    display: block;
}

.heroTooltip {
    width: min(1000px, 83vw);
    padding: 30px 50px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    color: white;
    text-align: center;
    font-family: Georgia, serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    animation: float 3s ease-in-out infinite;
}

.heroTooltip h1 {
    margin: 0 0 10px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
}

.heroTooltip h2 {
    margin: 0;
    font-weight: normal;
    opacity: .9;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.heroTooltip p {
    margin: 15px 0 0;
    opacity: .85;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.propEl {
    position: absolute;
    z-index: 3;
    image-rendering: crisp-edges;
    pointer-events: none;
}

.frontProp {
    z-index: 50;
}

.mapEl {
    cursor: pointer;
    pointer-events: auto;
    z-index: 100;
}

.mapEl * {
    pointer-events: auto;
}

* {
    font-family: "NuniPixel";
}

.mapEl {
    cursor: pointer;
    pointer-events: auto;
    z-index: 100;
}

.mapEl>div {
    display: flex;
    flex-direction: column;
    place-items: center;
}

.mapEl span {
    margin-bottom: 10px;
    font-family: "NuniPixel";
    width: max-content;
    background-color: rgba(0, 0, 0, 0.25);
    color: rgb(233, 233, 233);
    padding: 4px 6px;
    border-radius: 2px;
}

.map {
    transform: rotate(25deg);
    height: 50px;
    width: 50px;
    image-rendering: pixelated;
    pointer-events: auto;
}

.mapTooltipEl {
    pointer-events: none;
    z-index: 100;
}

.mapTooltip {
    position: relative;
    width: 190px;
    padding: 12px 14px;

    background: rgba(0, 0, 0, 0.35);
    color: white;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;

    font-family: Georgia, serif;
    text-align: center;

    backdrop-filter: blur(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.mapTooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.35);
}

.mapTooltipTitle {
    font-size: 16px;
    font-weight: bold;
    color: #ffd966;
    margin-bottom: 6px;
}

.mapTooltipDesc {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.95;
}

.lockedMap {
    opacity: 0.45;
    filter: grayscale(1);
    cursor: not-allowed;
}