@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Fredoka+One&display=swap');

:root {
  --main-blue: #4DA2FF;
  --accent-dark: #011829;
  --anim-light: #C0E6FF;
  --white: #ffffff;
  --text-dark: #022c4b;
  --text-light: #f0f8ff;
  --shadow: rgba(77, 162, 255, 0.25);
  --bg-start: #020a1A;
  --bg-end: #011829;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(320deg, var(--bg-start), var(--bg-end), var(--bg-start));
  background-size: 200% 200%;
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  animation: gradient-flow 15s ease infinite;
}

@keyframes gradient-flow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: rgba(1, 24, 41, 0.6);
  backdrop-filter: blur(12px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(77, 162, 255, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  text-decoration: none;
  background: linear-gradient(45deg, var(--main-blue), var(--anim-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--main-blue);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 1s ease-out;
  position: relative;
  z-index: 2;
}

.hero img.main-logo {
  width: 250px;
  border-radius: 50%;
  border: 4px solid var(--main-blue);
  margin-bottom: 20px;
  box-shadow: 0 0 40px var(--shadow), 0 0 80px var(--accent-dark);
  transition: transform 0.3s ease;
}

.hero img.main-logo:hover {
    transform: scale(1.05);
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 4.5rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, var(--white), var(--anim-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(192, 230, 255, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: linear-gradient(45deg, var(--main-blue), #6db9ff);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  border: none;
  box-shadow: 0 5px 20px var(--shadow);
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px var(--shadow);
}

.btn i {
    margin-right: 8px;
}

.btn-secondary {
  background: transparent;
  color: var(--main-blue);
  border: 2px solid var(--main-blue);
}

.btn-secondary:hover {
  background: var(--main-blue);
  color: var(--white);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(77, 162, 255, 0.1);
}

.section-title {
  text-align: center;
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  margin-bottom: 60px;
  background: linear-gradient(45deg, var(--main-blue), var(--anim-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

#about img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  justify-self: center;
  transition: transform 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

#about img:hover {
    transform: scale(1.05);
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0px);
	}
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--main-blue);
}

#tokenomics {
  background: rgba(77, 162, 255, 0.05);
}

.token-card {
  background: linear-gradient(145deg, var(--accent-dark), #03223f);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(77, 162, 255, 0.2);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(145deg, var(--main-blue), var(--anim-light)) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.4s;
}

.token-card:hover::before {
    opacity: 1;
}

.token-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow);
}

.token-card i {
  font-size: 3rem;
  color: var(--main-blue);
  margin-bottom: 20px;
}

.token-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contract-address {
  margin-top: 30px;
  padding: 20px;
  background: #000;
  border-radius: 10px;
  word-wrap: break-word;
  font-family: 'Courier New', Courier, monospace;
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: var(--main-blue);
  color: var(--white);
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.copy-btn:hover {
  background: var(--white);
  color: var(--main-blue);
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--main-blue);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.5s ease-out;
}

.roadmap-timeline.in-view::after {
    transform: scaleY(1);
}

.roadmap-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.roadmap-item:nth-child(odd) {
  left: 0;
}

.roadmap-item:nth-child(even) {
  left: 50%;
}

.roadmap-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-dark);
  border: 4px solid var(--main-blue);
  top: 20px;
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.3s;
}

.roadmap-item.in-view::after {
    transform: scale(1.2);
}

.roadmap-item:nth-child(odd)::after {
  right: -10px;
}

.roadmap-item:nth-child(even)::after {
  left: -10px;
}

.roadmap-content {
  padding: 20px 30px;
  background: rgba(77, 162, 255, 0.1);
  border-radius: 10px;
  position: relative;
}

.roadmap-content h3 {
  font-size: 1.3rem;
  color: var(--main-blue);
}

#how-to-buy .grid {
  gap: 20px;
}

.step {
  background: linear-gradient(145deg, var(--accent-dark), #03223f);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(77, 162, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.step::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0s 0.5s;
}

.step:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(20%, 20%);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}

.step h3 {
  color: var(--main-blue);
  margin-bottom: 10px;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(77, 162, 255, 0.3);
  margin-bottom: 10px;
}

footer {
  padding: 50px 0 20px 0;
  text-align: center;
  background: #000;
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.8rem;
  margin: 0 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--main-blue);
}

.disclaimer {
  font-size: 0.9rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto;
}

.sui-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    padding: 15px 25px;
    background: rgba(77, 162, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(77, 162, 255, 0.2);
    transition: all 0.3s ease;
}

.sui-feature:hover {
    transform: scale(1.05);
    background: rgba(77, 162, 255, 0.2);
    box-shadow: 0 0 20px var(--shadow);
}

.sui-feature img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sui-feature:hover img {
    transform: scale(1.1);
}

.sui-feature p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--main-blue);
}

.ticker-section {
    margin-top: 30px;
    text-align: center;
}

.ticker-sparkle {
    font-family: 'Fredoka One', cursive;
    font-size: 3.75rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--main-blue), var(--anim-light), var(--white), var(--main-blue));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 5s ease infinite, sparkle-text 2s infinite alternate;
    text-shadow: 0 0 10px var(--shadow), 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    display: inline-block;
}

@keyframes sparkle-text {
    0% {
        text-shadow: 0 0 10px var(--shadow), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px var(--shadow), 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

/* Sparkle CSS */
.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--anim-light);
    border-radius: 50%;
    box-shadow: 0 0 10px 2px var(--white);
    opacity: 0;
    animation: sparkle-anim 5s linear infinite;
    z-index: 1;
}

@keyframes sparkle-anim {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0); opacity: 0; transform: translateY(-50px); }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s, transform 0.8s;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.step a {
    color: var(--main-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.step a:hover {
    color: var(--anim-light);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .nav-links {
    display: none; /* Simplification for this example. A burger menu would be needed for a real site. */
  }
  .roadmap-timeline::after {
    left: 20px;
  }
  .roadmap-item, .roadmap-item:nth-child(even) {
    width: 100%;
    left: 0;
    padding-left: 60px;
    padding-right: 10px;
  }
  .roadmap-item::after, .roadmap-item:nth-child(even)::after {
    left: 10px;
  }
} 