/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #111;
}

/* VAULT BOX */
.vault-box {
    position: relative;
}

/* CENTER CIRCLE */
.center-circle {
    width: 25%;
    height: 25%;
    font-size: clamp(14px, 4vw, 20px);
    z-index: 10;
}

/* CONTINENTS */
.continent-text {
    text-align: center;
}

/* Static placement for continents */
.continent.africa { top: 0%; left: 50%; transform: translateX(-50%); }
.continent.asia { top: 20%; right: 0%; }
.continent.europe { bottom: 20%; right: 0%; }
.continent.americas { bottom: 0%; left: 50%; transform: translateX(-50%); }
.continent.oceania { bottom: 20%; left: 0%; }
.continent.middleeast { top: 20%; left: 0%; }

/* SCRIPT ORBIT */
.script-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.script-orbit span {
    position: absolute;
    font-weight: bold;
    font-size: clamp(12px, 2vw, 16px);
    color: #1f2937;
}

/* SEARCH */
.search-container input {
    flex: 1;
}