Changed around line 1
+ :root {
+ --space: #0b0d21;
+ --neon-purple: #bc3cd8;
+ --star-white: rgba(255,255,255,0.9);
+ --deep-space: #040618;
+ }
+
+ * {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ }
+
+ body {
+ background: var(--deep-space);
+ color: white;
+ font-family: 'Segoe UI', system-ui;
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ .cosmic-header {
+ height: 100vh;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .nebula-canvas {
+ position: absolute;
+ width: 200%;
+ height: 200%;
+ background:
+ radial-gradient(circle at 50% 50%,
+ rgba(188,60,216,0.3) 0%,
+ transparent 60%),
+ radial-gradient(circle at 30% 70%,
+ rgba(255,105,180,0.2) 0%,
+ transparent 55%),
+ radial-gradient(circle at 70% 30%,
+ rgba(65,105,225,0.2) 0%,
+ transparent 55%);
+ animation: nebula-drift 60s infinite linear;
+ filter: blur(30px);
+ mix-blend-mode: screen;
+ }
+
+ @keyframes nebula-drift {
+ 0% { transform: translate(-25%, -25%) rotate(0deg); }
+ 100% { transform: translate(-25%, -25%) rotate(360deg); }
+ }
+
+ .star-field {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background:
+ radial-gradient(ellipse at bottom,
+ rgba(255,255,255,0.1) 0%,
+ transparent 80%);
+ animation: star-pulse 8s infinite ease-in-out;
+ }
+
+ .shooting-star {
+ position: absolute;
+ width: 120px;
+ height: 2px;
+ background: linear-gradient(90deg, transparent, var(--star-white));
+ animation: meteor 3s infinite linear;
+ filter: drop-shadow(0 0 6px white);
+ }
+
+ @keyframes meteor {
+ 0% { transform: translate(-200px, -100px) rotate(-45deg); }
+ 100% { transform: translate(100vw, 100vh) rotate(-45deg); }
+ }
+
+ .hero-content {
+ position: relative;
+ padding-top: 20vh;
+ text-align: center;
+ z-index: 2;
+ }
+
+ h1 {
+ font-size: 4rem;
+ background: linear-gradient(45deg, #bc3cd8, #ff69b4);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ margin-bottom: 2rem;
+ text-shadow: 0 0 20px rgba(188,60,216,0.4);
+ }
+
+ @media (max-width: 768px) {
+ h1 { font-size: 2.5rem; }
+ .nav-links { display: none; }
+ }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ padding: 2rem 5%;
+ position: relative;
+ z-index: 3;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ letter-spacing: 2px;
+ background: linear-gradient(45deg, #bc3cd8, #4169e1);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .cta-pulse {
+ animation: pulse 2s infinite;
+ padding: 0.8rem 2rem;
+ border-radius: 30px;
+ background: linear-gradient(90deg, #bc3cd8, #ff69b4);
+ }
+
+ @keyframes pulse {
+ 0%, 100% { transform: scale(1); }
+ 50% { transform: scale(1.05); }
+ }
+
+ .grid-system {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 5%;
+ }
+
+ .card {
+ background: rgba(255,255,255,0.05);
+ backdrop-filter: blur(10px);
+ padding: 2rem;
+ border-radius: 15px;
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-10px);
+ }
+
+ .astro-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ display: inline-block;
+ animation: float 4s ease-in-out infinite;
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ .cosmic-footer {
+ background: rgba(255,255,255,0.03);
+ margin-top: 8rem;
+ padding: 4rem 5%;
+ }
+
+ .footer-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 3rem;
+ }