Changed around line 1
+ :root {
+ --primary-color: #ff3366;
+ --secondary-color: #3366ff;
+ --accent-color: #33ff66;
+ --bg-color: #000;
+ --text-color: #fff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background-color: var(--bg-color);
+ color: var(--text-color);
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
+ }
+
+ .container {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ padding: 2rem;
+ }
+
+ .orbit-container {
+ position: relative;
+ width: 300px;
+ height: 300px;
+ margin: 2rem auto;
+ }
+
+ .orbit-ring {
+ position: absolute;
+ border-radius: 50%;
+ border: 2px solid transparent;
+ animation: spin 20s linear infinite;
+ }
+
+ .ring1 {
+ width: 100%;
+ height: 100%;
+ border-color: var(--primary-color);
+ animation-duration: 15s;
+ }
+
+ .ring2 {
+ width: 80%;
+ height: 80%;
+ left: 10%;
+ top: 10%;
+ border-color: var(--secondary-color);
+ animation-duration: 12s;
+ animation-direction: reverse;
+ }
+
+ .ring3 {
+ width: 60%;
+ height: 60%;
+ left: 20%;
+ top: 20%;
+ border-color: var(--accent-color);
+ animation-duration: 9s;
+ }
+
+ .welcome-text {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ width: 100%;
+ }
+
+ h1 {
+ font-size: 3rem;
+ font-weight: 700;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ animation: gradient 8s ease infinite;
+ }
+
+ .tagline {
+ font-size: 1.2rem;
+ margin-top: 0.5rem;
+ opacity: 0.8;
+ }
+
+ .message-container {
+ text-align: center;
+ margin-top: 2rem;
+ }
+
+ .message {
+ font-size: 1.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .submessage {
+ font-size: 1.2rem;
+ opacity: 0.8;
+ }
+
+ footer {
+ text-align: center;
+ padding: 1rem;
+ font-size: 0.9rem;
+ opacity: 0.7;
+ }
+
+ @keyframes spin {
+ from { transform: rotate(0deg); }
+ to { transform: rotate(360deg); }
+ }
+
+ @keyframes gradient {
+ 0% { background-position: 0% 50%; }
+ 50% { background-position: 100% 50%; }
+ 100% { background-position: 0% 50%; }
+ }
+
+ @media (max-width: 768px) {
+ .orbit-container {
+ width: 200px;
+ height: 200px;
+ }
+
+ h1 {
+ font-size: 2rem;
+ }
+
+ .tagline {
+ font-size: 1rem;
+ }
+ }