body {
    margin: 0;
    overflow: hidden;
    font-family: Georgia, serif;
    color: white;
    background: black; /* 🔥 important */
}

/* Star canvas */
#stars {
    position: fixed;
    inset: 0;
    z-index: 0;
}

/* Center goddess */
.center-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.goddess {
    width: 300px;
}

.goddess-wrapper {
    position: relative;
}

.speech {
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    padding: 10px 15px;
    border-radius: 10px;
    display: none;
    white-space: nowrap;
}

.goddess {
    width: clamp(180px, 25vw, 300px);
}

/* =========================
   SPHERES
========================= */

.sphere {
    position: absolute;
    width: clamp(70px, 12vw, 130px);
    z-index: 2;
}

.sphere img {
    width: 100%;
    display: block;
}

/* Positions */
.brown { top: 30%; left: 20%; }
.green { top: 70%; left: 25%; }
.violet { top: 50%; right: 20%; }

/* =========================
   ICON OVERLAY
========================= */

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(30px, 6vw, 60px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* =========================
   HOVER TEXT BUBBLE
========================= */

.label {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    padding: 8px 12px;
    border-radius: 8px;
    display: none;
    white-space: nowrap;
    font-size: 0.9em;
}

.sphere:hover .label {
    display: block;
}
@media (max-width: 768px) {

    .brown { top: 25%; left: 10%; }
    .green { top: 75%; left: 15%; }
    .violet { top: 55%; right: 10%; }

}