<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base styles */
:root {
  --background: #0a0a0a;
  --foreground: #f8f8f8;
  --primary: #0066ff;
  --primary-foreground: #ffffff;
  --secondary: #8b5cf6;
  --secondary-foreground: #ffffff;
  --accent: #00d4ff;
  --accent-foreground: #000000;
  --border: #333333;
  --muted: #1a1a1a;
  --muted-foreground: #a0a0a0;
  --radius: 0.5rem;

  font-size: 16px;
}

#connect-wallet.highlighted {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--background);
  color: var(--foreground);
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* Animations */
.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Reveal animation for scroll */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Glow effects */
.glow-blue {
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.glow-purple {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
}

.primary-button {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.primary-button:hover {
  background-color: #0052cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
}

.secondary-button {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.secondary-button:hover {
  background-color: rgba(0, 102, 255, 0.1);
  transform: translateY(-2px);
}

.connect-button {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.connect-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.5);
}

/* HEADER SECTION */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: rgb(0 0 0 / 0.8);
  border-bottom: none;
  backdrop-filter: none;
  padding: 0 1rem;
  box-sizing: border-box;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1f2937;
}

.max-w-7xl {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .sm\\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.h-16 {
  height: 5rem;
}

@media (min-width: 768px) {
  .md\\:h-20 {
    height: 5rem;
  }
}

.space-x-2&gt; :not(:last-child) {
  margin-right: 0.5rem;
}

.space-x-8&gt; :not(:last-child) {
  margin-right: 2rem;
}

.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.bg-gradient-to-r {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.flex.items-center.justify-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-xl {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .md\\:text-2xl {
    font-size: 1.5rem;
  }
}

nav {
  display: none;
}

@media (min-width: 768px) {
  nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

nav a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #60a5fa;
}

button {
  cursor: pointer;
  border: none;
  font-weight: 600;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
  color: white;
}

.bg-gradient-to-r-from-blue-600-to-purple-600 {
  background: linear-gradient(to right, #2563eb, #7c3aed);
}

.bg-gradient-to-r-from-blue-500-to-purple-600 {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

button.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

button.md\\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

button.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

button.text-sm {
  font-size: 0.875rem;
}

button.md\\:text-base {
  font-size: 1rem;
}

button:hover {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  transform: scale(1.05);
}

button svg {
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

button .w-4 {
  width: 1rem;
  height: 1rem;
}

button .md\\:w-5 {
  width: 1.25rem;
  height: 1.25rem;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 5rem 1rem 4rem;
  background-image: url('./coins/ethe1.png'), url('./coins/e3.png');
  background-size: 60px, 190px;
  background-position: 15% 65%, 80% 25%;
  background-repeat: no-repeat;
}

@media (max-width: 1120px) {
  .hero-section {
  background-position: 12% 70%, 90% 25%;
  }
}

@media (min-width: 720px) and (max-width: 1120px) {
  .hero-section {
  background-size: 50px, 165px;
  background-position: 12% 70%, 90% 25%;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .hero-section {
  background-size: 41px, 120px;
  background-position: 22% 64%, 90% 15%;
  }
}

@media (max-width: 480px) {
  .hero-section {
  background-size: 41px, 120px;
  background-position: 12% 67%, 90% 15%;
  }
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  background: linear-gradient(to right, #60a5fa, #c084fc, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease-in-out;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  max-width: 768px;
  margin: 1.5rem auto 2rem;
  animation: fadeIn 1s ease-in-out;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 1s ease-in-out;
}

.same-width-buttons {
  width: 190px;
}

#rocket {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: auto;
  transition: all 2s ease-in-out;
}

.hero-section.rocket-launched #rocket {
  bottom: 500px;
  left: 80%;
  transform: scale(0.2);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.btn-primary {
  background: linear-gradient(to right, #2563eb, #7c3aed);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: #d1d5db;
  border: 1px solid #4b5563;
}

.btn-secondary:hover {
  background-color: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

.icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Floating Circles */
.float-circle {
  position: absolute;
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: none;
}

@media (min-width: 1024px) {
  .float-circle {
    display: block;
  }
}

.blue-circle {
  top: 50%;
  left: 2.5rem;
  width: 8px;
  height: 8px;
  background-color: #60a5fa;
}

.purple-circle {
  top: 33%;
  right: 5rem;
  width: 12px;
  height: 12px;
  background-color: #c084fc;
}

.cyan-circle {
  bottom: 25%;
  left: 25%;
  width: 4px;
  height: 4px;
  background-color: #22d3ee;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* ABOUT SECTION */
section {
  padding: 4rem 1rem;
  background-color: rgb(17 24 39 / 0.5);
}

.about-section {
  background-color: rgb(17 24 39 / 0.5);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
  margin-bottom: 4rem;
}

.heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  color: transparent;
}

.subtext {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 768px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: linear-gradient(to bottom right, #1f2937, #111827);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-0.5rem);
}

.icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-right {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 0px;
}

.icon-blue {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.icon-purple {
  background: linear-gradient(to right, #a855f7, #ec4899);
}

.icon-cyan {
  background: linear-gradient(to right, #06b6d4, #3b82f6);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.text-blue-400 {
  color: #60a5fa;
}

.text-purple-400 {
  color: #c084fc;
}

.text-cyan-400 {
  color: #22d3ee;
}

.card p {
  color: #d1d5db;
}

/* ROADMAP */

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #000, #1a1a1a);
  color: #ccc;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(to right, #a855f7, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #aaa;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #06b6d4);
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item .content {
  background: rgba(31, 41, 55, 0.8);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #374151;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.timeline-item .content:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
}

.timeline-item .content h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-item .content ul {
  list-style: none;
  padding-left: 0;
}

.timeline-item .content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.timeline-item .content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #3b82f6;
  border-radius: 50%;
}

/* Timeline Nav */
.timeline-nav {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.timeline-nav button {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #4b5563;
  border: none;
  border-radius: 50%;
  margin: 0 0.5rem;
  transition: background-color 0.3s, transform 0.3s;
}

.timeline-nav button.active {
  background-color: #3b82f6;
  transform: scale(1.5);
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
    margin-bottom: 2rem;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
  }
}


.roadmap-card {
  background: rgba(31, 41, 55, 0.9);
  border: 1px solid #4b5563;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
  padding: 2rem;
}

.roadmap-card:hover {
  transform: translateY(-5px);
  border-color: #60a5fa;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.roadmap-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.roadmap-card ul {
  list-style: none;
  padding-left: 0;
}

.roadmap-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.roadmap-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #3b82f6;
  border-radius: 50%;
}


/* TOKENOMICS */

.total-supply {
  display: flex;
  justify-content: center;
  align-items: center;
}

.token-section {
  background-color: rgb(17 24 39 / 0.5);
}

.text-center {
  text-align: center;
}

.title {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .title {
    font-size: 3rem;
  }
}

.subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 768px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: linear-gradient(to bottom right, #1f2937, #111827);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #374151;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-blue {
  color: #60a5fa;
}

.stat-purple {
  color: #c084fc;
}

.stat-cyan {
  color: #22d3ee;
}

.stat-green {
  color: #34d399;
}

.text-gray {
  color: #d1d5db;
}

.distribution-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  background-color: #374151;
  border-radius: 9999px;
  height: 0.5rem;
}

.progress-inner {
  height: 0.5rem;
  border-radius: 9999px;
  transition: width 1s ease-out;
}

.fill-cyan {
  background-color: #22d3ee;
}

.fill-purple {
  background-color: #c084fc;
}

.fill-blue {
  background-color: #60a5fa;
}

.fill-green {
  background-color: #34d399;
}

.fill-yellow {
  background-color: #facc15;
}

.token-chart {
  width: 20rem;
  height: 20rem;
  position: relative;
}

.token-chart svg {
  transform: rotate(-90deg);
}

.chart-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.chart-center .supply {
  font-size: 1.5rem;
  font-weight: bold;
}

.chart-center .label {
  font-size: 0.875rem;
  color: #9ca3af;
}



/* FOOTER SECTION */
.footer {
  background-color: #000;
  border-top: 1px solid #2d2d2d;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-logo-section {
  text-align: left;
  grid-column: span 2;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 0.5rem;
}

.description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-button {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #1f2937;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-button:hover {
  background-color: #3b82f6;
}

.footer-links {
  text-align: left;
}

.footer-links h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #60a5fa;
}

.footer-bottom {
  border-top: 1px solid #2d2d2d;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}
</pre></body></html>