/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap");

:root {
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --accent-color: #ffd166;
  --dark-color: #1a535c;
  --light-color: #f7fff7;
  --purple-color: #6a0572;
  --text-color: #2f2e41;
  --background-color: #f9f9f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-header h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 0.5rem;
}

/* Custom Cursor */
.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 107, 107, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  display: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.btn-connect {
  background-color: var(--purple-color);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-connect:hover {
  background-color: #8a2387;
  transform: translateY(-2px);
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(249, 249, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
}

.logo-placeholder {
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  animation: pulse 2s infinite;
}

.logo-placeholder img {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-placeholder img:hover {
  transform: rotate(10deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.bar.active:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.bar.active:nth-child(2) {
  opacity: 0;
}

.bar.active:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
  position: relative;
}

.glitch {
  position: relative;
  animation: glitch 5s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch::before {
  color: var(--primary-color);
  z-index: -1;
  animation: glitch-effect 3s infinite;
}

.glitch::after {
  color: var(--secondary-color);
  z-index: -2;
  animation: glitch-effect 2s infinite reverse;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.meme-placeholder {
  background-color: #e0e0e0;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  color: #666;
  display: inline-block;
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* About Section */
.about {
  background-color: white;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-content p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.character-showcase {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.character {
  text-align: center;
  width: 200px;
  transition: transform 0.3s ease;
}

.character:hover {
  transform: translateY(-10px);
}

.character-placeholder img {
  width: 150px;
  height: 150px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  color: #666;
  transition: all 0.3s ease;
}

.character:hover .character-placeholder {
  color: white;
  transform: scale(1.1);
  transition: 1s;
}

.character h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* Animation Section */
.animation {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.animation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.animation video {
  height: 360px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-content {
  text-align: center;
  max-width: 800px;
}

.video-placeholder {
  width: 100%;
  max-width: 600px;
  height: 350px;
  background-color: #e0e0e0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button i {
  color: white;
  font-size: 2rem;
}

.play-button:hover {
  transform: scale(1.1);
  background-color: var(--secondary-color);
}

/* Shop Section */
.shop {
  background-color: white;
}

.shop-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.products-showcase {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.product img {
  width: 200px;
  text-align: center;
  transition: all 0.3s ease;
}

.product img:hover {
  transform: translateY(-10px);
}

.product-placeholder {
  width: 180px;
  height: 180px;
  background-color: #e0e0e0;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product:hover .product-placeholder {
  background-color: var(--secondary-color);
  color: white;
}

.product-placeholder:not(:has(img)) {
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  border: 2px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #666;
}

.product h4 {
  color: var(--dark-color);
  margin-top: 1rem;
}

.shop-btn {
  margin-top: 2rem;
}

/* Coming Soon Animation */
.coming-soon-container {
  position: relative;
  overflow: hidden;
}

.coming-soon-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 107, 107, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  transition: bottom 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: inherit;
}

.coming-soon-container:hover .coming-soon-overlay {
  bottom: 0;
}

.coming-soon-text {
  font-size: 1.2rem;
  text-align: center;
  animation: pulse 1.5s infinite;
}

/* Coming Soon Modal */
.coming-soon-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.coming-soon-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
}

.coming-soon-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  transform: rotate(90deg);
  background-color: var(--dark-color);
}

.modal-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.modal-bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.modal-circle-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-color);
  top: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite;
}

.modal-circle-2 {
  width: 150px;
  height: 150px;
  background-color: var(--secondary-color);
  bottom: -50px;
  right: -50px;
  animation: float 12s ease-in-out infinite reverse;
}

.modal-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  animation: pulse 2s infinite;
  position: relative;
  z-index: 1;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
  position: relative;
  z-index: 1;
}

.modal-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  margin-bottom: 0.5rem;
}

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  background-color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.countdown-value::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
  animation: countdown-progress 1s linear infinite;
}

.countdown-label {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.modal-social-link {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.modal-social-link:hover {
  transform: translateY(-5px);
  color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.modal-social-link i {
  font-size: 1.2rem;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes countdown-progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Why Join Section */
.why-join {
  background-color: var(--light-color);
  position: relative;
}

.why-join-meme {
  position: absolute;
  top: -20px;
  left: 10%;
  transform: rotate(-10deg);
  z-index: 1;
}

.benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.benefit {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.benefit h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
}

/* Tokenomics Section */
.tokenomics {
  background-color: white;
  padding: 5rem 0;
}

.tokenomics-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.tokenomics-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.color-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Roadmap Section */
.roadmap {
  background-color: var(--light-color);
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 4px;
  height: 100%;
  background-color: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
}

.timeline-content {
  position: relative;
  width: calc(100% - 40px);
  padding: 1.5rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-left: 40px;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: white;
  transform: rotate(45deg);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.timeline-content ul {
  padding-left: 1.5rem;
}

.timeline-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.timeline-content ul li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: -1rem;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

/* Social Media Section */
.social-media {
  background-color: white;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.social-link i {
  font-size: 2.5rem;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
}

.social-link:hover i {
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo .logo-placeholder {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes glitch {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-5px, 5px);
  }
  40% {
    transform: translate(-5px, -5px);
  }
  60% {
    transform: translate(5px, 5px);
  }
  80% {
    transform: translate(5px, -5px);
  }
}

@keyframes glitch-effect {
  0% {
    clip-path: inset(71% 0 10% 0);
    transform: translate(-5px, 0);
  }
  5% {
    clip-path: inset(24% 0 61% 0);
    transform: translate(5px, 0);
  }
  10% {
    clip-path: inset(77% 0 18% 0);
    transform: translate(-5px, 0);
  }
  15% {
    clip-path: inset(46% 0 14% 0);
    transform: translate(5px, 0);
  }
  20% {
    clip-path: inset(3% 0 46% 0);
    transform: translate(-5px, 0);
  }
  25% {
    clip-path: inset(82% 0 2% 0);
    transform: translate(5px, 0);
  }
  30% {
    clip-path: inset(95% 0 4% 0);
    transform: translate(-5px, 0);
  }
  35% {
    clip-path: inset(43% 0 22% 0);
    transform: translate(5px, 0);
  }
  40% {
    clip-path: inset(58% 0 14% 0);
    transform: translate(-5px, 0);
  }
  45% {
    clip-path: inset(3% 0 83% 0);
    transform: translate(5px, 0);
  }
  50% {
    clip-path: inset(63% 0 22% 0);
    transform: translate(-5px, 0);
  }
  55% {
    clip-path: inset(83% 0 1% 0);
    transform: translate(5px, 0);
  }
  60% {
    clip-path: inset(13% 0 75% 0);
    transform: translate(-5px, 0);
  }
  65% {
    clip-path: inset(70% 0 13% 0);
    transform: translate(5px, 0);
  }
  70% {
    clip-path: inset(40% 0 46% 0);
    transform: translate(-5px, 0);
  }
  75% {
    clip-path: inset(5% 0 69% 0);
    transform: translate(5px, 0);
  }
  80% {
    clip-path: inset(89% 0 4% 0);
    transform: translate(-5px, 0);
  }
  85% {
    clip-path: inset(30% 0 37% 0);
    transform: translate(5px, 0);
  }
  90% {
    clip-path: inset(95% 0 3% 0);
    transform: translate(-5px, 0);
  }
  95% {
    clip-path: inset(70% 0 26% 0);
    transform: translate(5px, 0);
  }
  100% {
    clip-path: inset(57% 0 16% 0);
    transform: translate(-5px, 0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .timeline-content {
    width: calc(100% - 40px);
    margin-left: 40px !important;
  }

  .tokenomics-chart {
    max-width: 450px;
  }

  .tokenomics-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: center;
    text-align: left;
  }

  .legend-item {
    margin: 0;
  }

  .character-showcase {
    gap: 1rem;
  }

  .products-showcase {
    gap: 1.5rem;
  }

  .benefits {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(249, 249, 249, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 0.8rem 0;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links.active li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 90%;
    margin: 2rem auto 0;
  }

  .benefit {
    width: 100%;
  }

  .tokenomics-chart {
    max-width: 100%;
  }

  .tokenomics-legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    justify-content: center;
    text-align: left;
    width: 100%;
    padding: 0 1rem;
    margin-right: 0;
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
  }

  .footer-content {
    flex-direction: column;
  }

  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }

  .modal-title {
    font-size: 2rem;
  }

  .countdown {
    gap: 0.5rem;
  }

  .countdown-value {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .character {
    width: 160px;
  }

  .character-placeholder img {
    width: 120px;
    height: 120px;
  }

  .product-placeholder {
    width: 150px;
    height: 150px;
  }

  .product img {
    width: 150px;
  }

  section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header h3 {
    font-size: 1.3rem;
  }

  .video-placeholder {
    height: 300px;
  }

  .animation video {
    height: 280px;
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header h3 {
    font-size: 1.1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .countdown {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .countdown-item {
    margin-bottom: 0.5rem;
    min-width: 60px;
  }

  .countdown-value {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }

  .modal-logo {
    width: 80px;
    height: 80px;
  }

  .modal-title {
    font-size: 1.8rem;
  }

  .modal-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .modal-social-links {
    gap: 0.8rem;
  }

  .modal-social-link {
    width: 35px;
    height: 35px;
  }

  .character-showcase {
    gap: 0.5rem;
  }

  .character {
    width: 140px;
  }

  .character-placeholder img {
    width: 100px;
    height: 100px;
  }

  .character h3 {
    font-size: 1rem;
  }

  .character p {
    font-size: 0.8rem;
  }

  .products-showcase {
    gap: 1rem;
  }

  .product-placeholder {
    width: 130px;
    height: 130px;
  }

  .product img {
    width: 130px;
  }

  .product h4 {
    font-size: 0.9rem;
  }

  .video-placeholder {
    height: 250px;
  }

  .animation video {
    height: 230px;
  }

  .footer-column {
    min-width: 100%;
    margin-bottom: 1.5rem;
  }

  .footer-links {
    gap: 0;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header h2::after {
    width: 60px;
    height: 3px;
  }

  .character {
    width: 120px;
  }

  .character-placeholder img {
    width: 90px;
    height: 90px;
  }

  .product-placeholder {
    width: 120px;
    height: 120px;
  }

  .product img {
    width: 120px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon i {
    font-size: 1.5rem;
  }

  .benefit h3 {
    font-size: 1.1rem;
  }

  .benefit p {
    font-size: 0.9rem;
  }

  .modal-content {
    padding: 1.2rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .countdown-value {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .countdown-label {
    font-size: 0.6rem;
  }

  .video-placeholder {
    height: 200px;
  }

  .animation video {
    height: 180px;
  }
}

