body {font-family: Arial, sans-serif; margin:0; padding:0;}
.container {max-width: 1100px; margin: auto; padding: 20px;}
.flex {display:flex; align-items:center;}
.between {justify-content:space-between;}
.navbar {background:#fff; border-bottom:1px solid #ddd; padding:10px 0;}
.logo {font-weight:bold;}
.hero {background:#fce4ec; padding:60px 0;}
.hero h1 {font-size:2.5em;}
.buttons .btn {padding:10px 20px; margin-right:10px; text-decoration:none; border-radius:5px;}
.btn.primary {background:#e91e63; color:#fff;}
.btn.secondary {background:#fff; border:1px solid #e91e63; color:#e91e63;}
.section {padding:60px 0;}
.grid-2 {display:grid; grid-template-columns:repeat(2,1fr); gap:20px;}
.grid-3 {display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.card {background:#fff; padding:20px; border-radius:8px; box-shadow:0 2px 4px rgba(0,0,0,0.1);}
.faq details {margin-bottom:10px;}
.footer {background:#eee; padding:20px; text-align:center;}
.hero-media {
  max-width: 600px;   /* set a sensible max size on desktop */
  margin: 0 auto;
}

.hero-media img {
  width: 100%;        /* scale down to parent width */
  height: auto;       /* keep square ratio */
  object-fit: contain;
}
/* Make media scale fluidly */
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Let grid children shrink properly (prevents odd overflows) */
.container, .grid-2 > * { min-width: 0; }
.top-image {
  text-align: center;   /* centers inline content */
  margin: 20px 0;       /* space above/below */
}

.top-image img {
  max-width: 100%;      /* responsive scaling */
  height: auto;         /* keep proportions */
  max-height: 200px;    /* optional: cap height so it doesn’t get huge */
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #fce4ec;  /* soft pink everywhere */
}
.token-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #e91e63;   /* pink border */
  color: #333;
  font-weight: bold;
  padding: 12px 20px;
  margin: 20px auto;
  width: fit-content;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.token-bar span {
  font-family: monospace;
  font-size: 0.95rem;
  color: #000;
}

.token-bar button {
  padding: 6px 12px;
  border: none;
  background: #e91e63;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  
}

.token-bar button:hover {
  background: #c2185b;
}

.feature-gif {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically (optional if you want it in the middle of its section) */
  margin: 40px 0;          /* spacing above and below */
}

.feature-gif img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;          /* makes centering easier if not using flex */
}



/* Make it responsive */
@media (max-width: 600px) {
  .feature-gif img {
    width: 80vw;
    height: 80vw;          /* keep it square */
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fce4ec;  /* your pink background */
  font-family: 'Baloo 2', cursive, sans-serif; /* cute font everywhere */
}

h1, h2, h3 {
  font-family: 'Chewy', cursive;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row instead of 3 */
  gap: 20px;
}
h2 {
  text-align: center;
}
.tokenomics {
  list-style: none;      /* remove bullet points */
  padding: 0;
  margin: 0 auto;
  text-align: center;    /* center text */
}

.tokenomics li {
  margin: 8px 0;         /* space between items */
}
.token-gif {
  display: flex;
  justify-content: center;  /* horizontally center */
  margin: 20px 0 25px;
}

.token-gif img {
  width: 350px;          /* fixed width on desktop */
  max-width: 80%;        /* shrink on smaller screens */
  height: auto;
  border-radius: 12px;   /* optional */
}

body {
  margin: 0;
  padding: 0;
  background: #fce4ec;  /* your pink background */
  font-family: 'Baloo 2', cursive, sans-serif; /* your cute font */
  font-size: 18px;      /* increase from default (16px) */
  line-height: 1.6;     /* more readable spacing */
}

h1, h2, h3, h4, h5, h6 {
  color: #e59c59;
}
.tokenomics strong {
  color: #e59c59;   /* same as your headers */
}
/* About section layout */
.about-wrap {
  display: grid;
  gap: 20px;
  align-items: start;
}

@media (min-width: 900px) {
  .about-wrap {
    grid-template-columns: 1.3fr 1fr; /* text | social card */
  }
}

.about-text p {
  margin: 0 0 12px;
  font-size: 1.05em;
}

/* Social card */
.about-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.about-card h3 {
  margin: 0 0 12px;
}

.social-buttons {
  display: grid;
  gap: 10px;
}

.btn.social {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
}

/* Simple brand tints; tweak if you like */
.btn.social.tiktok    { background: #000; }
.btn.social.youtube   { background: #ff0033; }
.btn.social.instagram { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }

/* Story block */
.story {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.story h3 {
  margin-top: 0;
}

/* Optional: center the section heading (you already added .centered) */
.centered { text-align: center; }
/* Social icons row */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
}

.social-icons a {
  font-size: 2.5rem;     /* icon size */
  color: #333;           /* default color */
  transition: transform 0.2s, color 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* Brand-specific tints */
.social-icons a .fa-tiktok { color: #000; }
.social-icons a .fa-youtube { color: #ff0000; }
.social-icons a .fa-instagram {
  color: #e1306c; /* pink tone */
}

/* Heart rain */
.hearts {
  position: fixed;
  inset: 0;
  pointer-events: none; /* so hearts don’t block clicks */
  overflow: hidden;
  z-index: 9999;        /* show above all content */
}

.heart {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("heart.png") no-repeat center/contain; /* uses heart.png */
  animation: fall linear forwards;
  opacity: 0.9;
}

@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}
.footer {
  background: #fce4ec;   /* same as body background */
  padding: 20px;
  text-align: center;
  color: #333;
}

.footer-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-icons a {
  font-size: 1.8rem;
  color: #333;
  transition: transform 0.2s, color 0.2s;
}

.footer-icons a:hover {
  transform: scale(1.2);
  color: #e59c59; /* your cute header color */
}
