Changed around line 1
+ :root {
+ --primary: #6c5ce7;
+ --secondary: #a29bfe;
+ --background: #0f0f1f;
+ --text: #ffffff;
+ --card-bg: rgba(255, 255, 255, 0.05);
+ }
+
+ * {
+ 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 {
+ min-height: 100vh;
+ background: linear-gradient(45deg, #6c5ce7, #a29bfe);
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::before {
+ content: '';
+ position: absolute;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, transparent 20%, var(--background) 70%);
+ animation: pulse 15s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.1); }
+ 100% { transform: scale(1); }
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 2rem;
+ position: relative;
+ z-index: 1;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, #fff, #a29bfe);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--text);
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .cta-button {
+ background: rgba(255, 255, 255, 0.1);
+ padding: 0.5rem 1rem;
+ border-radius: 20px;
+ backdrop-filter: blur(5px);
+ }
+
+ .hero-content {
+ text-align: center;
+ padding: 4rem 2rem;
+ position: relative;
+ z-index: 1;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-buttons {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-top: 2rem;
+ }
+
+ .primary-button, .secondary-button {
+ padding: 1rem 2rem;
+ border-radius: 25px;
+ text-decoration: none;
+ font-weight: bold;
+ transition: transform 0.3s;
+ }
+
+ .primary-button {
+ background: var(--primary);
+ color: var(--text);
+ }
+
+ .secondary-button {
+ background: rgba(255, 255, 255, 0.1);
+ color: var(--text);
+ backdrop-filter: blur(5px);
+ }
+
+ .features-grid, .tokenomics-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .feature-card, .tokenomics-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 20px;
+ backdrop-filter: blur(5px);
+ text-align: center;
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover, .tokenomics-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .roadmap-timeline {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .roadmap-item {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 20px;
+ text-align: center;
+ }
+
+ footer {
+ background: rgba(255, 255, 255, 0.05);
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-buttons {
+ flex-direction: column;
+ align-items: center;
+ }
+ }