proxycm/coming-soon-vibes
0
1 2/* Solar System Animations */3@keyframes orbit {4 from {5 transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);6 }7 to {8 transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);9 }10}11 12@keyframes pulse {13 0%, 100% {14 transform: scale(1);15 box-shadow: 0 0 15px currentColor;16 }17 50% {18 transform: scale(1.05);19 box-shadow: 0 0 30px currentColor;20 }21}22 23@keyframes twinkle {24 0%, 100% {25 opacity: 0.2;26 }27 50% {28 opacity: 1;29 }30}31 32/* Solar System Elements */33.solar-system {34 background: radial-gradient(ellipse at center, #0a0e2a 0%, #000000 100%);35}36 37.sun {38 box-shadow: 0 0 50px #ff6600;39}40 41.planet {42 position: absolute;43 top: 50%;44 left: 50%;45 width: var(--planet-size);46 height: var(--planet-size);47 border-radius: 50%;48 background-color: var(--planet-color);49 transform-origin: center;50 animation: orbit var(--orbit-speed) linear infinite;51}52 53.animate-orbit {54 animation: orbit var(--orbit-speed) linear infinite;55}56 57.animate-pulse {58 animation: pulse 3s ease-in-out infinite;59}60 61.star {62 position: absolute;63 width: 2px;64 height: 2px;65 background-color: white;66 border-radius: 50%;67 animation: twinkle 2s ease-in-out infinite;68}69 70/* Random star positions */71.star:nth-child(1) { animation-delay: 0s; }72.star:nth-child(2) { animation-delay: 0.5s; }73.star:nth-child(3) { animation-delay: 1s; }74.star:nth-child(4) { animation-delay: 1.5s; }75.star:nth-child(5) { animation-delay: 0.8s; }76 