Changed around line 1
+ :root {
+ --cosmic-primary: #0b0e23;
+ --cosmic-secondary: #1a1f4b;
+ --cosmic-accent: #4d3bff;
+ --cosmic-highlight: #00f0ff;
+ --cosmic-text: #e0e0ff;
+ --cosmic-text-secondary: #a0a0c0;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ background-color: var(--cosmic-primary);
+ color: var(--cosmic-text);
+ margin: 0;
+ line-height: 1.6;
+ }
+
+ .cosmic-header {
+ position: relative;
+ overflow: hidden;
+ padding: 2rem 0;
+ }
+
+ .nebula-bg {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle at 20% 50%,
+ rgba(77, 59, 255, 0.2) 0%,
+ rgba(0, 0, 0, 0) 50%),
+ radial-gradient(circle at 80% 30%,
+ rgba(0, 240, 255, 0.15) 0%,
+ rgba(0, 0, 0, 0) 60%);
+ z-index: -1;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ background: linear-gradient(90deg, var(--cosmic-highlight), var(--cosmic-accent));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: var(--cosmic-text);
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--cosmic-highlight);
+ }
+
+ .cta-button {
+ background-color: var(--cosmic-accent);
+ padding: 0.5rem 1.5rem;
+ border-radius: 2rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 4rem auto;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(90deg, #fff, var(--cosmic-highlight));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ color: var(--cosmic-text-secondary);
+ margin-bottom: 2rem;
+ }
+
+ .primary-button {
+ background-color: var(--cosmic-accent);
+ color: white;
+ padding: 0.8rem 2rem;
+ border-radius: 2rem;
+ font-size: 1.1rem;
+ font-weight: 600;
+ text-decoration: none;
+ display: inline-block;
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 15px rgba(77, 59, 255, 0.4);
+ }
+
+ .cosmic-courses, .cosmic-sim, .cosmic-community {
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ display: block;
+ width: 100px;
+ height: 3px;
+ background: linear-gradient(90deg, var(--cosmic-accent), var(--cosmic-highlight));
+ margin: 1rem auto 0;
+ }
+
+ .course-grid, .community-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .course-card, .community-card {
+ background-color: var(--cosmic-secondary);
+ border-radius: 1rem;
+ padding: 2rem;
+ transition: transform 0.3s, box-shadow 0.3s;
+ border: 1px solid rgba(255, 255, 255, 0.05);
+ }
+
+ .course-card:hover, .community-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
+ }
+
+ .course-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .secondary-button {
+ display: inline-block;
+ padding: 0.6rem 1.5rem;
+ border-radius: 2rem;
+ background-color: transparent;
+ color: var(--cosmic-highlight);
+ border: 1px solid var(--cosmic-highlight);
+ text-decoration: none;
+ margin-top: 1rem;
+ transition: all 0.3s;
+ }
+
+ .secondary-button:hover {
+ background-color: rgba(0, 240, 255, 0.1);
+ }
+
+ .cosmic-sim {
+ background-color: var(--cosmic-secondary);
+ }
+
+ .sim-container {
+ position: relative;
+ height: 500px;
+ border-radius: 1rem;
+ overflow: hidden;
+ margin-bottom: 1rem;
+ }
+
+ #galaxy-canvas {
+ width: 100%;
+ height: 100%;
+ background-color: #000;
+ }
+
+ .sim-controls {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ }
+
+ .sim-button {
+ padding: 0.8rem 2rem;
+ border-radius: 2rem;
+ border: none;
+ font-weight: 600;
+ cursor: pointer;
+ transition: all 0.3s;
+ }
+
+ .sim-button:first-child {
+ background-color: var(--cosmic-accent);
+ color: white;
+ }
+
+ .sim-button.secondary {
+ background-color: transparent;
+ color: var(--cosmic-highlight);
+ border: 1px solid var(--cosmic-highlight);
+ }
+
+ .text-button {
+ color: var(--cosmic-highlight);
+ text-decoration: none;
+ font-weight: 600;
+ display: inline-block;
+ margin-top: 1rem;
+ }
+
+ .cosmic-footer {
+ padding: 3rem 2rem;
+ background-color: var(--cosmic-secondary);
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .footer-links a {
+ color: var(--cosmic-text-secondary);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .course-grid, .community-grid {
+ grid-template-columns: 1fr;
+ }
+ }