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

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.5)); }
  50% { filter: drop-shadow(0 0 40px rgba(255, 165, 0, 0.8)); }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 25%, #FFB347 50%, #FFDB58 75%, #FFE66D 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #3D2A1F;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Cursor Canvas */
#cursorCanvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

/* Floating particles */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  font-size: 2em;
  opacity: 0.6;
  animation: floatParticle 6s infinite;
}

header {
  padding: 60px 20px 40px;
  text-align: center;
  position: relative;
  animation: fadeInUp 1s ease;
  z-index: 10;
}

.logo {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(10deg);
}

.scroll-indicator {
  margin-top: 30px;
  font-size: 2em;
  animation: scrollDown 2s ease-in-out infinite;
  cursor: pointer;
}

header h1 {
  font-size: 5em;
  background: linear-gradient(45deg, #8B4513, #D2691E, #8B4513);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite, pulse 2s ease-in-out infinite;
  font-weight: 900;
  letter-spacing: 5px;
  text-shadow: 2px 2px 20px rgba(139, 69, 19, 0.5);
}

header p {
  font-size: 1.5em;
  margin-top: 15px;
  color: #5D4037;
  text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
  animation: fadeInUp 1s ease 0.3s both;
}

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

section {
  padding: 60px 20px;
  animation: fadeInUp 1s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  margin: 40px 20px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

section:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

h2 {
  font-size: 3em;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #D2691E, #8B4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 2px 2px 20px rgba(210, 105, 30, 0.3);
  text-align: center;
}

/* About Section */
.about p {
  font-size: 1.3em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #4A3728;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.3);
  text-align: center;
}

.meow-counter {
  text-align: center;
  margin-top: 40px;
}

.counter-label {
  font-size: 1.2em;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 10px;
}

.counter-value {
  font-size: 4em;
  font-weight: 900;
  color: #FF4500;
  text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
  margin-bottom: 20px;
}

.meow-btn {
  background: linear-gradient(135deg, #FF4500, #FF6347);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.meow-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

.meow-btn:active {
  transform: scale(0.95);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: slideIn 0.6s ease;
  text-align: center;
  cursor: pointer;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
  transform: scale(1.05) rotate(2deg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 15px;
  display: block;
  animation: float 2s ease-in-out infinite;
}

.feature-card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #D2691E;
}

.feature-card p {
  color: #5D4037;
}

/* Roadmap */
.roadmap-timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 100px);
  background: linear-gradient(to bottom, #FF4500, #FFA500);
  display: none;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.roadmap-phase {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
  padding: 35px 30px;
  border-radius: 25px;
  border: 3px solid rgba(210, 105, 30, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: slideIn 0.6s ease;
  cursor: pointer;
}

.roadmap-phase:nth-child(1) { animation-delay: 0.1s; }
.roadmap-phase:nth-child(2) { animation-delay: 0.2s; }
.roadmap-phase:nth-child(3) { animation-delay: 0.3s; }
.roadmap-phase:nth-child(4) { animation-delay: 0.4s; }
.roadmap-phase:nth-child(5) { animation-delay: 0.5s; }

.roadmap-phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF4500, #FF6347, #FFA500);
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.roadmap-phase:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 69, 0, 0.5);
  box-shadow: 0 20px 50px rgba(255, 69, 0, 0.3);
}

.phase-number {
  display: inline-block;
  background: linear-gradient(135deg, #FF4500, #FF6347);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.roadmap-phase h3 {
  font-size: 1.8em;
  color: #D2691E;
  margin-bottom: 10px;
  font-weight: 800;
}

.phase-timeline {
  font-size: 1.1em;
  color: #8B4513;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.8;
}

.phase-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.phase-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #4A3728;
  font-size: 1.05em;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.phase-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF4500;
  font-weight: bold;
  font-size: 1.2em;
}

.phase-list li:hover {
  transform: translateX(10px);
  color: #FF4500;
}

/* Tokenomics */
.tokenomics {
  text-align: center;
}

.token-chart {
  max-width: 400px;
  margin: 0 auto 40px;
}

#tokenChart {
  max-width: 100%;
  height: auto;
}

.token-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.token-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid rgba(210, 105, 30, 0.3);
}

.token-label {
  font-size: 1.1em;
  color: #8B4513;
  font-weight: 600;
}

.token-value {
  font-size: 1.5em;
  color: #FF4500;
  font-weight: 800;
}

/* CTA Section */
.cta {
  text-align: center;
}

.btn-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(135deg, #FF4500, #FF6347, #FF4500);
  background-size: 200% auto;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2em;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 69, 0, 0.6);
  background-position: right center;
}

.btn span {
  position: relative;
  z-index: 1;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(210, 105, 30, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.5em;
  font-weight: 900;
  color: #D2691E;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1em;
  color: #5D4037;
  opacity: 0.9;
}

/* Footer */
footer {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 60px;
  text-align: center;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

footer p {
  font-size: 1.1em;
  color: #5D4037;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 2em;
  }

  .logo {
    width: 150px;
    height: 150px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .btn-container {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    max-width: 300px;
  }

  .counter-value {
    font-size: 3em;
  }
}