* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8fafc;
    overflow: hidden; 
    position: relative;
}

.bg-shape {
    position: absolute;
    filter: blur(70px); 
    z-index: 0; 
    border-radius: 50%;
    animation: float 5s infinite alternate ease-in-out; 
}

.shape-1 { width: 400px; height: 400px; background-color: #4b8cf4; top: -100px; left: -100px; animation-delay: 0s; }
.shape-2 { width: 350px; height: 350px; background-color: #2dd438; bottom: -100px; right: -50px; animation-delay: -2s; }
.shape-3 { width: 300px; height: 300px; background-color: #757575; bottom: 50px; left: 20%; animation-delay: -4s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.earth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.earth p {
    color: #1e293b;
    font-size: 1.25em;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.8px;
}

.earth-loader {
    --watercolor: #3344c1;
    --landcolor: #7cc133;
    width: 7.5em;
    height: 7.5em;
    background-color: var(--watercolor);
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    
    box-shadow:
        0 0 60px 55px rgba(30, 56, 255, 0.35), 
        inset 0em 0.5em rgb(255, 255, 255, 0.25),
        inset 0em -0.5em rgb(0, 0, 0, 0.25);
        
    border: solid 0.20em rgba(255, 255, 255, 0.82);
}

.earth-loader svg:nth-child(1) {
    position: absolute;
    bottom: -2em;
    left: -2em;
    width: 7em;
    height: auto;
    animation: round1 5s infinite linear -0.75s;
}

.earth-loader svg:nth-child(2) {
    position: absolute;
    top: -3em;
    left: -2em;
    width: 7em;
    height: auto;
    animation: round1 5s infinite linear;
}

.earth-loader svg:nth-child(3) {
    position: absolute;
    top: -2.5em;
    left: 5em;
    width: 7em;
    height: auto;
    animation: round2 5s infinite linear;
}

.earth-loader svg:nth-child(4) {
    position: absolute;
    bottom: -2.2em;
    left: 5em;
    width: 7em;
    height: auto;
    animation: round2 5s infinite linear -0.75s;
}

@keyframes round1 {
    0% { left: -2em; opacity: 100%; transform: skewX(0deg) rotate(0deg); }
    30% { left: -6em; opacity: 100%; transform: skewX(-25deg) rotate(25deg); }
    31% { left: -6em; opacity: 0%; transform: skewX(-25deg) rotate(25deg); }
    35% { left: 7em; opacity: 0%; transform: skewX(25deg) rotate(-25deg); }
    45% { left: 7em; opacity: 100%; transform: skewX(25deg) rotate(-25deg); }
    100% { left: -2em; opacity: 100%; transform: skewX(0deg) rotate(0deg); }
}

@keyframes round2 {
    0% { left: 5em; opacity: 100%; transform: skewX(0deg) rotate(0deg); }
    75% { left: -7em; opacity: 100%; transform: skewX(-25deg) rotate(25deg); }
    76% { left: -7em; opacity: 0%; transform: skewX(-25deg) rotate(25deg); }
    77% { left: 8em; opacity: 0%; transform: skewX(25deg) rotate(-25deg); }
    80% { left: 8em; opacity: 100%; transform: skewX(25deg) rotate(-25deg); }
    100% { left: 5em; opacity: 100%; transform: skewX(0deg) rotate(0deg); }
}