body {
  margin: 0;
  min-height: 100vh;
  background: black;
  color: #fff;
  font-family: Arial, sans-serif;
}

h1   {
  text-align: center;
  margin-bottom: 80px;  
}

.main-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.earth-container {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #0a3d91;
  overflow: hidden;
  cursor: pointer;
  animation: spin 10s linear infinite;
  margin: 0 auto 40px auto;
  transform-style: preserve-3d;
}

.snow {
  position: absolute;
  left: 50%;
  width: 120px;
  height: 40px;
  background: #fff;
  border-radius: 60px 60px 40px 40px / 40px 40px 20px 20px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  transform: translateX(-50%);
}

/* North pole variations */
.snow-north { top: -10px; }
.snow-north-2 {
  width: 70px;
  height: 25px;
  top: 5px;
  left: 35%;
  opacity: 0.7;
  border-radius: 40px 40px 30px 30px / 20px 20px 15px 15px;
}
.snow-north-3 {
  width: 50px;
  height: 18px;
  top: 15px;
  left: 60%;
  opacity: 0.5;
  border-radius: 30px 30px 20px 20px / 12px 12px 10px 10px;
}

/* South pole variations */
.snow-south { bottom: -10px; }
.snow-south-2 {
  width: 80px;
  height: 30px;
  bottom: 5px;
  left: 55%;
  opacity: 0.7;
  border-radius: 40px 40px 30px 30px / 20px 20px 15px 15px;
  transform: translateX(-50%) rotate(180deg);
}
.snow-south-3 {
  width: 60px;
  height: 20px;
  bottom: 18px;
  left: 30%;
  opacity: 0.5;
  border-radius: 30px 30px 20px 20px / 12px 12px 10px 10px;
  transform: translateX(-50%) rotate(180deg);
}


@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes counterspin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

.spot {
  position: absolute;
  background: #2ecc71;
  border-radius: 50%;
}
.spot1 { width: 40px; height: 124px; top: 20%; left: 30%; }
.spot2 { width: 30px; height: 118px; top: 50%; left: 60%; }
.spot3 { width: 150px; height: 130px; top: 65%; left: 25%; }
.spot4 { width: 40px; height: 20px; top: 35%; left: 70%; }
.spot5 { width: 35px; height: 22px; top: 80%; left: 50%; }
.spot6 { width: 44px; height: 93px; top: 10%; left: 80%; }
.spot7 { width: 45px; height: 87px; top: 40%; left: 15%; }


#message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-0deg);
  color: rgb(226, 24, 24);
  font-weight: bolder;
  font-family: sans-serif;
  font-size: 24px;
  padding: 4px 8px;
  background: transparant;
  border-radius: 4px;
  display: none;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(177, 226, 42, 0.5);
  will-change: transform;
  animation: counterspin 10s linear infinite;
}


.message {
  max-width: 500px;
  margin: 40px auto 0 auto;
  background: rgba(22, 22, 212, 0.7);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}