/* PACU INU Design System & Styling */

:root {
  /* Colors */
  --bg-gradient: linear-gradient(135deg, #FFF0F2 0%, #FFF5F7 30%, #F5ECFF 70%, #FFF0F2 100%);
  --card-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.45) 100%);

  --primary-pink: #FFCCD5;
  --primary-pink-light: #FFE5EC;
  --primary-pink-dark: #FF85A1;
  --primary-pink-deep: #F72585;

  --accent-purple: #E8DBFC;
  --accent-purple-dark: #B590E8;
  --accent-gold: #FFEAA7;
  --accent-gold-dark: #F3C63F;

  --text-main: #4A2E35;
  --text-muted: #7A5C64;
  --text-white: #FFFFFF;

  --shadow-sm: 0 4px 6px rgba(247, 37, 133, 0.05);
  --shadow-md: 0 8px 20px rgba(247, 37, 133, 0.08);
  --shadow-lg: 0 16px 36px rgba(247, 37, 133, 0.12);
  --shadow-pulse: 0 0 20px rgba(255, 133, 161, 0.6);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-slow: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);

  --border-radius-sm: 12px;
  --border-radius-md: 24px;
  --border-radius-lg: 40px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Go Panda', sans-serif;
  font-weight: bold;
  color: var(--text-main);
  background: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #FFF0F2;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-pink-dark);
  border-radius: 10px;
  border: 2px solid #FFF0F2;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink-deep);
}

/* Typography */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1,
h2,
h3,
h4,
.font-title {
  font-family: 'Mockind Easter', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-title {
  background: linear-gradient(120deg, var(--text-main), var(--primary-pink-deep), var(--accent-purple-dark), var(--text-main));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 8s linear infinite;
  display: inline-block;
  transition: transform var(--transition-normal);
}

.section-title:hover {
  transform: scale(1.03) rotate(-1deg);
}

.hero-title-gradient {
  background: linear-gradient(120deg, var(--primary-pink-deep), var(--primary-pink-dark), var(--accent-purple-dark), var(--primary-pink-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s linear infinite;
  display: inline-block;
}

.about-text h3, .narrative-quote {
  background: linear-gradient(120deg, var(--primary-pink-deep), var(--accent-purple-dark), var(--primary-pink-dark), var(--primary-pink-deep));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 7s linear infinite;
  display: inline-block;
}

.font-title-outline, .section-title-outline {
  font-family: 'Mockind Easter Outline', sans-serif;
  font-weight: normal;
  display: inline-block;
  transition: transform var(--transition-normal);
  color: var(--primary-pink-deep) !important;
  -webkit-text-fill-color: var(--primary-pink-deep) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.9);
}

.font-title-outline:hover, .section-title-outline:hover {
  transform: scale(1.08) rotate(2deg);
}

p {
  font-family: 'Go Panda', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

/* Reusable Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--card-gradient);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-md);
  padding: 40px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 133, 161, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Mockind Easter', sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease-out;
}

.btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-pink-dark) 0%, var(--primary-pink-deep) 100%);
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(255, 133, 161, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(255, 133, 161, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-pink-light) 100%);
  color: var(--primary-pink-deep);
  border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, var(--primary-pink-light) 0%, #FFFFFF 100%);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--text-main);
  box-shadow: 0 8px 20px rgba(243, 198, 63, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(243, 198, 63, 0.5);
}

/* Floating Animations */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }

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

@keyframes float-slow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(-3deg);
  }

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

@keyframes float-fast {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

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

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

.anim-float {
  animation: float 4s ease-in-out infinite;
}

.anim-float-slow {
  animation: float-slow 6s ease-in-out infinite;
}

.anim-float-fast {
  animation: float-fast 2.5s ease-in-out infinite;
}

@keyframes pulse-slow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.anim-pulse {
  animation: pulse-slow 3s ease-in-out infinite;
}

/* Sparkle background elements */
.sparkle-bg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* Nav Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 0;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

header.scrolled {
  background: rgba(255, 240, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.logo-img:hover {
  transform: scale(1.1) rotate(-3deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-family: 'Mockind Easter', sans-serif;
  font-size: 1.15rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-pink-dark);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-pink-deep);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-only-actions {
  display: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-main);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  clip-path: inset(0px);
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 240, 242, 0.4), rgba(255, 240, 242, 0.7)), url('images/background-hero.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

/* We also import background-hero.png inside a wrapper with absolute layout to create custom parallax or smooth overlay blending */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 240, 242, 0.85) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--primary-pink);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: 'Mockind Easter', sans-serif;
  color: var(--primary-pink-deep);
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
}

.badge-sparkle {
  margin-right: 8px;
  animation: pulse-slow 1.5s infinite;
}

.hero-title {
  font-size: 5rem;
  color: var(--text-main);
  line-height: 1.05;
  margin-bottom: 15px;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-main-img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 15px 30px rgba(255, 133, 161, 0.3));
}

.hero-ticker-float {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(247, 37, 133, 0.15));
  transition: transform var(--transition-normal);
}

.hero-ticker-float:hover {
  transform: scale(1.15) rotate(15deg);
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-tag {
  font-family: 'Mockind Easter', sans-serif;
  color: var(--primary-pink-deep);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 3.5rem;
  color: var(--text-main);
}

.section-title-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-main);
}

/* About Section */
.about {
  background: radial-gradient(circle at 10% 10%, rgba(255, 235, 238, 0.6) 0%, transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.about-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.about-img-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--primary-pink-light) 0%, var(--accent-purple) 100%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  animation: morph 8s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  50% {
    border-radius: 70% 30% 50% 50% / 50% 70% 30% 50%;
  }

  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

.about-img {
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 15px 25px rgba(247, 37, 133, 0.2));
}

.about-decor {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  z-index: 3;
  filter: drop-shadow(0 8px 16px rgba(247, 37, 133, 0.15));
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-pink-deep);
}

.about-text p {
  margin-bottom: 25px;
  color: var(--text-muted);
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  background: var(--primary-pink-light);
  color: var(--primary-pink-deep);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-title {
  font-family: 'Mockind Easter', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Tokenomics Section */
.tokenomics {
  background: radial-gradient(circle at 90% 90%, rgba(232, 219, 252, 0.5) 0%, transparent 60%);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.tokenomics-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.token-stat-card {
  text-align: center;
  padding: 30px 20px;
}

.token-stat-val {
  font-family: 'Mockind Easter', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-pink-deep);
  margin-bottom: 8px;
  line-height: 1.1;
}

.token-stat-label {
  font-family: 'Mockind Easter Outline', sans-serif;
  font-size: 1.35rem;
  color: var(--text-main);
  letter-spacing: 1px;
}

.token-stat-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.ca-box {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.9);
  border: 2px dashed var(--primary-pink-dark);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.ca-title {
  font-family: 'Mockind Easter', sans-serif;
  font-size: 1.3rem;
  color: var(--text-main);
}

.ca-input-wrapper {
  display: flex;
  background: #FFF0F2;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  width: 100%;
  max-width: 480px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--primary-pink);
  box-shadow: inset 0 2px 4px rgba(247, 37, 133, 0.05);
}

.ca-text {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 15px;
}

.btn-copy {
  padding: 8px 20px;
  font-size: 1rem;
  background: var(--primary-pink-dark);
  color: white;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: 'Mockind Easter', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-copy:hover {
  background: var(--primary-pink-deep);
  transform: scale(1.05);
}

.tokenomics-img-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.tokenomics-img {
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(0 15px 30px rgba(247, 37, 133, 0.25));
}

/* Narrative Section */
.narrative {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 240, 242, 0.8) 100%);
  position: relative;
}

.narrative-card {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.narrative-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.narrative-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.narrative-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(247, 37, 133, 0.15));
}

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

.narrative-quote {
  font-family: 'Mockind Easter', sans-serif;
  font-size: 2.2rem;
  color: var(--primary-pink-deep);
  line-height: 1.3;
  margin-bottom: 25px;
  position: relative;
}

.narrative-body {
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 35px auto;
  text-align: left;
}

.narrative-body p {
  margin-bottom: 20px;
  position: relative;
}

.narrative-highlight {
  font-weight: bold;
  color: var(--text-main);
  background: linear-gradient(120deg, rgba(255, 204, 213, 0.4) 0%, rgba(255, 204, 213, 0.8) 100%);
  padding: 2px 8px;
  border-radius: 4px;
}

.narrative-btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.vibes-counter {
  margin-top: 15px;
  font-size: 1.15rem;
  color: var(--primary-pink-deep);
  font-family: 'Mockind Easter', sans-serif;
}

/* Falling Heart Canvas */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Footer Section */
footer {
  background: var(--text-main);
  color: #FFE5EC;
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-wrapper {
  background: #FFFFFF;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(247, 37, 133, 0.15);
  border: 2px dashed var(--primary-pink);
  margin-bottom: 10px;
  align-self: start;
  transition: transform var(--transition-normal);
}

.footer-logo-wrapper:hover {
  transform: scale(1.05) rotate(-2deg);
}

.footer-logo {
  height: 42px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 1.15rem;
  color: rgba(255, 229, 236, 0.75);
}

.footer-links-title {
  font-family: 'Mockind Easter', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: var(--primary-pink);
  position: relative;
  display: inline-block;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: rgba(255, 229, 236, 0.75);
  font-size: 1.15rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-pink);
  transform: translateX(5px);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.socials-row {
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all var(--transition-normal);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.social-icon-btn:hover {
  background: var(--primary-pink-dark);
  color: var(--text-main);
  transform: translateY(-5px) scale(1.1);
  border-color: var(--primary-pink);
  box-shadow: 0 5px 15px rgba(255, 133, 161, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 229, 236, 0.15);
  padding-top: 30px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 1.05rem;
  color: rgba(255, 229, 236, 0.5);
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 229, 236, 0.65);
  font-size: 1.1rem;
}

.heart-beat-footer {
  color: var(--primary-pink-dark);
  animation: pulse-slow 1.2s infinite;
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero-grid,
  .about-grid,
  .tokenomics-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image-container {
    order: 1;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    justify-self: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .about-img-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-text {
    text-align: left;
  }

  .tokenomics-img-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-brand,
  .footer-logo-wrapper,
  .footer-links-title::after {
    align-self: center;
  }

  .footer-links-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .socials-row {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .mobile-only-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 24px;
    margin-top: 10px;
  }

  /* Navigation mobile menu */
  .mobile-nav-toggle {
    display: block;
    z-index: 101;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #FFF0F2;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: right var(--transition-normal);
    z-index: 100;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-actions {
    display: none;
    /* inside hamburger or clean layout */
  }

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

  .tokenomics-info {
    grid-template-columns: 1fr;
  }

  .ca-box {
    grid-column: span 1;
  }

  .ca-input-wrapper {
    flex-direction: column;
    border-radius: 18px;
    padding: 12px;
    gap: 10px;
  }

  .ca-text {
    margin-right: 0;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }

  .btn-copy {
    width: 100%;
    justify-content: center;
  }

  /* Mobile Hamburger Animation */
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* Custom Cursor & Bouncy Interactive Animations */

/* Custom Cursor container */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10000;
  display: none;
}

/* Minimalist center dot */
.cursor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--primary-pink-deep);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Fluid outer trailing ring */
.cursor-ring {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--primary-pink-deep);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 10px rgba(247, 37, 133, 0.15);
  transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
              height 0.3s cubic-bezier(0.19, 1, 0.22, 1), 
              border-color 0.3s ease, 
              background-color 0.3s ease;
}

/* Hover highlights: ring swells and turns semi-translucent pink lens */
.custom-cursor.hover .cursor-ring {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 133, 161, 0.12);
  border-color: var(--primary-pink-deep);
  border-width: 2px;
  box-shadow: 0 0 15px rgba(247, 37, 133, 0.25);
}

.custom-cursor.hover .cursor-dot {
  transform: translate(-50%, -50%) scale(0); /* Hide dot on hover */
}

/* Active click state: ring snaps down tightly with a solid-looking fill */
.custom-cursor.active .cursor-ring {
  width: 20px;
  height: 20px;
  background-color: rgba(247, 37, 133, 0.3);
  border-color: var(--primary-pink-deep);
  border-width: 2px;
}

.custom-cursor.active .cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: var(--primary-pink-deep);
}

/* Hide default cursor on desktop */
@media (pointer: fine) {
  html, body {
    cursor: none;
  }
  a, button, .btn, .btn-copy, .social-icon-btn, .logo-link, .nav-link, .ca-input-wrapper {
    cursor: none !important;
  }
}

/* Bouncy Hover Animations */
.logo-img {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-img:hover {
  transform: scale(1.15) rotate(-5deg);
}

.hero-main-img, .about-img, .tokenomics-img, .narrative-img {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
}

.hero-main-img:hover {
  transform: scale(1.05) translateY(-5px) rotate(2deg);
  filter: drop-shadow(0 20px 40px rgba(255, 133, 161, 0.5));
}

.about-img:hover {
  transform: scale(1.06) rotate(-3deg);
  filter: drop-shadow(0 20px 40px rgba(255, 133, 161, 0.5));
}

.tokenomics-img:hover {
  transform: scale(1.05) rotate(3deg);
  filter: drop-shadow(0 20px 40px rgba(247, 37, 133, 0.4));
}

.narrative-img:hover {
  transform: scale(1.08) rotate(4deg);
  filter: drop-shadow(0 15px 30px rgba(247, 37, 133, 0.35));
}

.nav-link {
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover {
  transform: translateY(-2px) scale(1.08);
}

/* Wiggle Keyframes for Hovering Interactive Items */
@keyframes cute-wiggle {
  0% { transform: translateY(-5px) scale(1.06) rotate(0deg); }
  25% { transform: translateY(-5px) scale(1.06) rotate(-2deg); }
  75% { transform: translateY(-5px) scale(1.06) rotate(2deg); }
  100% { transform: translateY(-5px) scale(1.06) rotate(0deg); }
}

.btn:hover {
  animation: cute-wiggle 0.5s ease-in-out infinite;
}

.btn-copy:hover {
  animation: cute-wiggle 0.5s ease-in-out infinite;
}

.social-icon-btn:hover {
  animation: cute-wiggle 0.5s ease-in-out infinite;
}

/* Small Mobile Screen Adjustments */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .section-title {
    font-size: 2.0rem !important;
  }

  .about-text h3, 
  .narrative-quote {
    font-size: 1.6rem !important;
  }

  .token-stat-val {
    font-size: 2.0rem !important;
  }

  .hero-ticker-float {
    width: 95px !important;
    bottom: -15px !important;
    left: 10px !important;
  }

  .glass-card {
    padding: 24px 20px !important;
  }

  .logo-img {
    height: 45px !important;
  }
}