Changed around line 1
+ :root {
+ --primary: #6c2bd9;
+ --secondary: #2b3bd9;
+ --background: #0a0b1e;
+ --text: #ffffff;
+ --card-bg: rgba(108, 43, 217, 0.1);
+ --glow: 0 0 10px rgba(108, 43, 217, 0.5);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .hero-section {
+ min-height: 100vh;
+ position: relative;
+ overflow: hidden;
+ padding: 2rem;
+ background: linear-gradient(45deg, #0a0b1e, #1a1b3e);
+ }
+
+ .floating-elements span {
+ position: absolute;
+ font-size: 2rem;
+ animation: float 6s infinite;
+ opacity: 0.5;
+ }
+
+ .floating-elements span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
+ .floating-elements span:nth-child(2) { top: 40%; right: 20%; animation-delay: 1s; }
+ .floating-elements span:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 2s; }
+ .floating-elements span:nth-child(4) { bottom: 40%; right: 10%; animation-delay: 3s; }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .highlight {
+ color: var(--primary);
+ }
+
+ .nav-links a {
+ color: var(--text);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .hero-content {
+ text-align: center;
+ margin-top: 10vh;
+ }
+
+ .glow {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: glow 2s ease-in-out infinite alternate;
+ }
+
+ .cta-buttons {
+ margin-top: 2rem;
+ }
+
+ .primary-btn, .secondary-btn {
+ padding: 1rem 2rem;
+ border-radius: 50px;
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: transform 0.3s;
+ }
+
+ .primary-btn {
+ background: var(--primary);
+ color: var(--text);
+ }
+
+ .secondary-btn {
+ border: 2px solid var(--primary);
+ color: var(--text);
+ }
+
+ .primary-btn:hover, .secondary-btn:hover {
+ transform: translateY(-3px);
+ }
+
+ .token-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .token-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ backdrop-filter: blur(10px);
+ transition: transform 0.3s;
+ }
+
+ .token-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .timeline {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .milestone {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ }
+
+ .social-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .social-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ text-decoration: none;
+ color: var(--text);
+ transition: transform 0.3s;
+ }
+
+ .social-card:hover {
+ transform: scale(1.05);
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ @keyframes glow {
+ from { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary); }
+ to { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .cta-buttons {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .primary-btn, .secondary-btn {
+ margin: 0.5rem 0;
+ }
+ }