:root {
  --bg: #050510;
  --bg-alt: #09091a;
  --accent: #58ff9c;
  --accent-soft: rgba(88, 255, 156, 0.18);
  --accent-strong: #33f18a;
  --text-main: #f5f5ff;
  --text-muted: #9c9ccc;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --card-bg: rgba(8, 8, 24, 0.9);
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 60px rgba(88, 255, 156, 0.45);
  --transition-fast: 180ms ease-out;
  --transition-med: 260ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: transparent;
  border-bottom: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1.5rem;
}

.brand {
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 1rem;
  text-transform: uppercase;
}

.brand span {
  color: #b9a6ff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: transparent;
  transition: width var(--transition-fast);
}

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

.nav-links a:hover {
  color: var(--text-main);
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
}

/* BUTTONS */

.btn {
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.2rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: transparent;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
  color: #b9a6ff;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
}

.btn-secondary {
  border-color: var(--accent-soft);
  background: transparent;
}

.btn-secondary:hover {
  background: transparent;
}

.btn-outline {
  border-color: var(--border-subtle);
  background: transparent;
}

.btn-outline:hover {
  border-color: #b9a6ff;
}

/* HERO VIDEO */

.hero {
  position: relative;
  overflow: hidden;
}

.hero-video {
  height: min(80vh, 720px);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Big round button centered (can be visually aligned to the belly area in the video) */
.tickle-button {
  position: absolute;
  left: 52%;
  top: 82%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid #00e5ff;
  background: transparent;
  color: #00e5ff;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    background var(--transition-med),
    color var(--transition-med);
  z-index: 3;
  font-family: 'Luckiest Guy', cursive !important;
}


.tickle-button:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
  background: transparent;
  color: #b9a6ff;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: transparent;
}

.hero-overlay-content {
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  max-width: 34rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #b9a6ff;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.copy-status {
  font-size: 0.8rem;
  color: #b9a6ff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.copy-status.visible {
  opacity: 1;
  transform: translateY(0);
}

/* GENERIC SECTIONS */

.section {
  padding-block: 4.5rem;
}

.section-alt {
  background: transparent;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: #b9a6ff;
  margin-bottom: 0.4rem;
}

.section-title {
  margin: 0 0 1rem;
  font-size: 1.8rem;
}

.section p {
  color: var(--text-muted);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: center;
}

/* ABOUT MEDIA STACK */

.stacked-images {
  position: relative;
  height: 260px;
}

.card-ghost,
.card-main {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.card-ghost {
  transform: translate(18px, 18px);
  opacity: 0.3;
}

.card-main {
  padding: 1rem;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
}

.image-placeholder {
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* TOKENOMICS GRID */

.token-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.token-card {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.token-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.token-value {
  margin: 0.1rem 0 0.3rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.token-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* STEPS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.4rem;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
}

.step-number {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b9a6ff;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.step-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* LOGO STRIP */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
 filter: brightness(0) invert(1); }

.logo-pill {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  background: transparent;
 filter: brightness(0) invert(1); }

/* MEMES GRID */

.memes-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.meme-card {
  aspect-ratio: 1;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.22);
  background: transparent;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.meme-card:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.55);
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 2.5rem 2rem;
  background: transparent;
  margin-top: 3rem;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 0.65rem;
}

.footer-note {
  margin: 0;
  max-width: 22rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-actions {
  display: flex;
  gap: 0.6rem;
}

.footer-disclaimer {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-muted);

  font-size: 1.2rem;
  font-weight: 600;
}

/* ANIMATION HELPERS */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-video {
    height: 70vh;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .stacked-images {
    height: 220px;
  }

  .token-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .memes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, 520px);
  }

  .nav-cta {
    display: none;
  }

  .hero-video {
    height: 60vh;
  }

  .token-grid,
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .memes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.site-header { display: none !important; }

/* BUTTON VISUAL ENHANCEMENTS */
.tickle-button {
  animation: pulseGlow 2s infinite ease-in-out;
  background: radial-gradient(circle at center, rgba(255,120,180,0.45), rgba(255,120,180,0.15));
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.85), 0 0 120px rgba(255,120,180,0.55);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text','Inter', sans-serif;

  font-family: 'Luckiest Guy', cursive !important;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(0,229,255,0.7); }
  50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 85px rgba(255,120,180,0.9); }
  100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 40px rgba(0,229,255,0.7); }
}

/* ABOUT SECTION LAYOUT */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
}

.about-image-frame {
  border-radius: 32px;
  padding: 0.9rem;
  background: radial-gradient(circle at top left, rgba(255,120,180,0.28), rgba(5,5,20,0.95));
  box-shadow: 0 22px 60px rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.08);
}

.about-image {
  display: block;
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
}

.about-text p {
  max-width: 32rem;
}

.about-quote {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b9a6ff;
}

/* Responsive About */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .about-image-frame {
    max-width: 440px;
  }
}



.hero {
  background: linear-gradient(to bottom, rgba(0, 220, 255, 0.35), rgba(0, 150, 180, 0.25), rgba(5,5,16,1));
}


/* Matte Pink Background */

html, body {
  background: #f5b6d1 !important;
  background-image: none !important;
}




}



/* Strong Comic Font */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

body, html, p, h1, h2, h3, h4, h5, h6, button, a, span, div {
    font-family: 'Luckiest Guy', cursive !important;
}



/* ABOUT SECTION COMIC FONT */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

#about, 
#about p, 
#about h1, 
#about h2, 
#about h3, 
#about h4, 
#about div, 
#about span {
    font-family: 'Luckiest Guy', cursive !important;
}


/* Larger ABOUT text */


#about .section-title {
    font-size: 3rem !important;
}

#about p {
    font-size: 1.6rem !important;
    line-height: 1.55 !important;
}


/* TOKENOMICS COMIC FONT & SIZE */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

#tokenomics, 
#tokenomics p,
#tokenomics h1,
#tokenomics h2,
#tokenomics h3,
#tokenomics h4,
#tokenomics div,
#tokenomics span {
    font-family: 'Luckiest Guy', cursive !important;
}



#tokenomics .section-title {
    font-size: 3rem !important;
}

#tokenomics p {
    font-size: 1.5rem !important;
    line-height: 1.5 !important;
}


/* TOKENOMICS CARD COLOR UPDATE */
.token-card {
    background: #00e5ff !important;
    border: 2px solid rgba(255,120,180,0.6) !important;
    box-shadow: 0 0 40px rgba(0,229,255,0.6) !important;
}

.token-card h3,
.token-card p,
.token-card .token-value,
.token-card .token-note {
    color: #ff78b4 !important;
}


/* HOW TO BUY — COMIC FONT, BIGGER TEXT, TURQUOISE CARDS, PINK TEXT */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

#how-to-buy,
#how-to-buy p,
#how-to-buy h1,
#how-to-buy h2,
#how-to-buy h3,
#how-to-buy h4,
#how-to-buy div,
#how-to-buy span {
    font-family: 'Luckiest+Guy', cursive !important;
     /* pink text */
}

/* Section title sizes */


#how-to-buy .section-title {
    font-size: 3rem !important;
}

/* Paragraph text size */
#how-to-buy p {
    font-size: 1.5rem !important;
    line-height: 1.55 !important;
}

/* How to Buy cards turquoise */
.step-card {
    background: #00e5ff !important;               /* turquoise */
    border: 2px solid rgba(255,120,180,0.6) !important; /* pink border */
    box-shadow: 0 0 40px rgba(0,229,255,0.6) !important;
}

/* Text inside cards stays pink */
.step-card h3,
.step-card p,
.step-card .step-number {
    color: #ff78b4 !important;
}

/* Step number bigger */
.step-card .step-number {
    font-size: 1.8rem !important;
}


/* FIX COLORS FOR HOW TO BUY TITLES */
#how-to-buy .section-title {
     /* turquoise */
    font-size: 3rem !important;
}




/* FINAL COLOR FIX FOR HOW TO BUY */
#how-to-buy .section-title {
      /* Four quick steps -> white */
}




/* MATCH 'HOW TO BUY' TITLE COLOR WITH 'TOKENOMICS' COLOR */



/* FINAL FIX — MAKE 'HOW TO BUY' COLOR IDENTICAL TO 'TOKENOMICS' */



/* MATCH 'HOW TO BUY' COLOR TO 'ABOUT' TITLE COLOR */






#about .section-label,
#tokenomics .section-label,
#how-to-buy .section-label {
    font-size: 2.4rem !important;
}

/* Keep their specific colors */
#about .section-label { color: #a39ecc !important; }
#tokenomics .section-label { color: #a39ecc !important; }
#how-to-buy .section-label { color: #a39ecc !important; }

#memes .section-title,


/* Unified styles for Memes & Community to match Tokenomics */
#memes .section-label,
#community .section-label {
    font-size: 2.4rem !important;
    color: #a39ecc !important;
    font-family: 'Luckiest Guy', cursive !important;
}

#memes .section-title,


#community .section-title {
    color: #ffffff !important;
    font-size: 3rem !important;
    font-family: 'Luckiest Guy', cursive !important;
}


/* === ABOUT SECTION 2-IMAGE LAYOUT (VARIANTA 1) === */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image-frame {
  width: 100%;
  max-width: 440px;
}

.about-image-frame-secondary {
  margin-top: 20px;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
}


}

.meme-img { width:100%; height:auto; border-radius:16px; }

/* Shaky jelly effect for Tickle Me button */

.tickle-button:hover {
  animation: jelly-wobble 0.7s ease-in-out;
  background: rgba(0, 229, 255, 0.16);
  box-shadow: 0 0 55px rgba(0, 229, 255, 0.9);
}

.tickle-button:active {
  animation: jelly-press 0.4s ease-in-out;
  transform: translate(-50%, -50%) scale(0.96);
}

@keyframes jelly-wobble {
  0% { transform: translate(-50%, -50%) scale(1, 1); }
  15% { transform: translate(-50%, -50%) scale(1.05, 0.95) rotate(-1.5deg); }
  30% { transform: translate(-50%, -50%) scale(0.96, 1.06) rotate(1.25deg); }
  45% { transform: translate(-50%, -50%) scale(1.03, 0.97) rotate(-1deg); }
  60% { transform: translate(-50%, -50%) scale(0.99, 1.02) rotate(0.75deg); }
  75% { transform: translate(-50%, -50%) scale(1.01, 0.99) rotate(-0.5deg); }
  100% { transform: translate(-50%, -50%) scale(1, 1) rotate(0deg); }
}

@keyframes jelly-press {
  0% { transform: translate(-50%, -50%) scale(1); }
  40% { transform: translate(-50%, -50%) scale(0.9, 1.05); }
  100% { transform: translate(-50%, -50%) scale(1); }
}


/* Hero social buttons over video (X & Telegram) */
.hero-socials { right: 4rem;
  position: absolute;
  top: 1.5rem;
  
  display: flex;
  gap: 0.75rem;
  z-index: 5;
}

.hero-social-btn {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 3px solid #00e5ff;
  background: #ff78b4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.7);
  cursor: pointer;
  transition:
    transform 0.2s ease-out,
    box-shadow 0.2s ease-out,
    background 0.2s ease-out,
    border-color 0.2s ease-out;
}


.hero-social-btn span {
  font-size: 1.7rem;
  line-height: 1;
  color: #b9a6ff;
}

.hero-social-btn svg.hero-social-icon { width: 30px; height: 30px; }

.hero-social-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: #00e5ff;
  border-color: #b9a6ff;
  box-shadow: 0 0 26px rgba(255, 120, 180, 0.95);
}

.hero-social-btn:active {
  transform: translateY(0) scale(0.96);
}

/* optional subtle variant-specific tweaks */
.hero-social-x span {
  color:#ffffff;

  font-weight: 700;
}



.scroll-banner {
  width: 100%;
  overflow: hidden;
  background: #ff78b4;
  border-top: 3px solid #00e5ff;
  border-bottom: 3px solid #00e5ff;
}

.scroll-text {
  white-space: nowrap;
  display: inline-block;
  padding: 12px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #00eaff;
  animation: scroll-left 300s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.hero-social-pump .hero-social-icon rect {
  fill: #ffffff;
}

.hero-social-pump .hero-social-icon path {
  fill: #ff78b4;
}

.hero-social-icon { width:32px; height:32px; }

.hero-social-telegram path,
.hero-social-telegram svg path {
  fill:#ffffff !important;
  stroke:none !important;
}

/* Uniform icon sizing for social buttons */
.hero-social-icon {
  width: 30px;
  height: 30px;
  display: block;
}

/* Pump.fun pill image – keep it clean, white, centered */
.pump-icon {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

/* Force Telegram logo to be pure white */
.hero-social-telegram svg path,
.hero-social-telegram svg {
  fill: #ffffff !important;
  stroke: none !important;
}

.pump-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.footer-disclaimer {
  text-align:center;
}


/* Community Art Wall animations */
.community-grid img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floaty 6s ease-in-out infinite;
  border-radius: 12px;
}

.community-grid img:hover {
  transform: scale(1.06) rotate(1deg);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}


/* Enhanced Community Art Wall animations */
.community-grid img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s ease,
              filter 0.6s ease;
  animation: floaty2 8s ease-in-out infinite;
  border-radius: 14px;
  filter: brightness(0.92);
}

@keyframes floaty2 {
  0%   { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-12px) rotate(1deg); }
  50%  { transform: translateY(0px) rotate(0deg); }
  75%  { transform: translateY(10px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.community-grid img:hover {
  transform: scale(1.12) rotate(3deg) translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 120, 180, 0.8), 0 0 25px rgba(0, 229, 255, 0.8);
  filter: brightness(1.08) saturate(1.3);
}


/* Community Art Wall visible animations */
.meme-card {
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  animation: memeFloat 10s ease-in-out infinite;
}

.meme-card:hover {
  transform: translateY(-10px) scale(1.05) rotate(1.5deg);
  box-shadow: 0 0 45px rgba(255, 120, 180, 0.9), 0 0 30px rgba(0, 229, 255, 0.85);
}

.meme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,120,180,0.4), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.meme-card:hover::after {
  opacity: 1;
}

@keyframes memeFloat {
  0%   { transform: translateY(0px) scale(1); }
  25%  { transform: translateY(-6px) scale(1.02); }
  50%  { transform: translateY(0px) scale(1); }
  75%  { transform: translateY(6px) scale(0.99); }
  100% { transform: translateY(0px) scale(1); }
}


/* Highlight arrows pointing to Tickle button */








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

/* Hide arrows when dismissed */
.tickle-arrows.hidden {
  display: none;
}


/* BIG angled arrows upgrade */








@keyframes arrow-bounce-angled {
  0%, 100% { transform: translateY(0) rotate(var(--angle,0deg)); }
  50%      { transform: translateY(18px) rotate(var(--angle,0deg)); }
}


/* VARIANTA C – big diagonal arrows clearly pointing at the button */




/* Left arrow: points down-right toward center */


/* Right arrow: points down-left toward center */


@keyframes arrow-bounce-diag {
  0%, 100% { transform: translateY(0) rotate(var(--angle)); }
  50%      { transform: translateY(18px) rotate(var(--angle)); }
}

/* FINAL VARIANTA C — GIANT inward-angled arrows */




/* LEFT arrow rotated +45° toward button */


/* RIGHT arrow rotated -45° toward button */


@keyframes arrowBounceFinal {
  0%, 100% { transform: translateY(0) rotate(var(--rot)); }
  50%      { transform: translateY(22px) rotate(var(--rot)); }
}


/* FINAL FIXED ARROWS – EXACT pointing toward button */


/* Big arrows */


/* LEFT arrow pointing DOWN-RIGHT */


/* RIGHT arrow pointing DOWN-LEFT */


@keyframes arrowBounceFinal {
  0%, 100% { transform: translateY(0) rotate(var(--fixed-angle)); }
  50%      { transform: translateY(22px) rotate(var(--fixed-angle)); }
}

/* Apply correct fixed rotation */
.tickle-arrow-left { --fixed-angle: 65deg; }
.tickle-arrow-right { --fixed-angle: -65deg; }


/* SVG precise arrows */
.tickle-arrows {
  position:absolute;
  top:55%;
  left: calc(50% + 43px);
  transform:translateX(-50%);
  width:600px;
  display:flex;
  justify-content:space-between;
  pointer-events:none;
  z-index:999;
}
.tickle-arrow {
  width:140px;
  height:140px;
  filter: drop-shadow(0 0 25px #ff78b4) drop-shadow(0 0 25px #00e5ff);
  animation: arrow-bounce 1.2s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(22px); }
}


/* Pirate sticker floating on left after video ends */
.pirate-sticker {
  position: absolute;
  left: -300px;
  bottom: 320px;
  width: 150px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  animation: pirateFloat 3s ease-in-out infinite;
  transition: opacity 0.6s ease;
}

@keyframes pirateFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.pirate-sticker.show {
  opacity: 1;
}


/* Right floating coin bear */
.coin-sticker {
  position: absolute;
  right: 100px;
  bottom: 320px;
  width: 150px;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  animation: coinFloat 3s ease-in-out infinite;
  transition: opacity 0.6s ease;
}

@keyframes coinFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.coin-sticker.show {
  opacity: 1;
}


.right-middle-sticker {
  position: absolute;
  width:150px;
  bottom:320px;
  right: calc(100px + 150px + 50px); /* coinSticker right + width + 50px gap */
  opacity:0;
  pointer-events:none;
  animation: coinFloat 3s ease-in-out infinite;
  transition: opacity 0.6s ease;
}

.right-middle-sticker.show { opacity:1; }

.left-middle-sticker {
  position:absolute;
  width:165px;
  bottom:320px;
  left: calc(100px + 150px + 50px); /* pirateSticker left + width + 50px gap */
  opacity:0;
  pointer-events:none;
  animation: pirateFloat 3s ease-in-out infinite;
  transition: opacity 0.6s ease;
}

.left-middle-sticker.show { opacity:1; }


.top-left-sticker-1 {
  position:absolute;
  left: -300px;
  top:50px;
  width:150px;
  opacity:0;
  z-index:3000;
  pointer-events:none;
  animation: pirateFloat 3s ease-in-out infinite;
  transition: opacity 0.6s ease;
}
.top-left-sticker-1.show { opacity:1; }

.top-left-sticker-2 {
  position:absolute;
  left: calc(100px + 150px + 50px); /* next to first with 50px gap */
  top:50px;
  width:150px;
  opacity:0;
  z-index:3000;
  pointer-events:none;
  animation: pirateFloat 3s ease-in-out infinite;
  transition: opacity 0.6s ease;
}
.top-left-sticker-2.show { opacity:1; }





.about-layout { position: relative; }

.about-sticker-right {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -300px;
  width: 260px;
  z-index: 5;
  animation: levitate 3s ease-in-out infinite alternate;
}


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


.about-sticker-left {
  position: absolute;
  left: -300px;
  top: 450px;
  width: 260px;
  z-index: 6;
  animation: levitate 3s ease-in-out infinite alternate;
}


.about-sticker-car {
  position: absolute;
  right: 80px;
  top: 980px;
  width: 320px;
  z-index: 4;
  animation: levitate 3s ease-in-out infinite alternate;
}

.cloud-sticker-container {
  display:flex;
  justify-content:center;
}
.cloud-sticker {
  position: relative;
  left: 60px;
  margin-left: 0px;
  margin-top: 60px;
  width:260px;
  animation: levitate 3s ease-in-out infinite alternate;
}
.cloud-sticker-section {
  padding:0px;
  margin:0px;
}

#how-to-buy {
  margin-top: -420px;
}


.memes-sticker {
  display:block;
  margin: 0 auto;
  width:260px;
  animation: levitate 3s ease-in-out infinite alternate;
  margin-top: 100px;
  margin-bottom: 20px;
}

#memes {
  margin-top: -300px !important;
}





.footer-sticker-wrapper {
  width:100%;
  position:relative;
  margin-top:40px;
}
.footer-pirate-sticker {
  position:absolute;
  left:70px;
  bottom:-230px;
  width:200px;
  animation: levitate 3s ease-in-out infinite alternate;
}


.footer-sticker-right-wrapper {
  width: 100%;
  position: relative;
}

.footer-coin-sticker {
  position:absolute;
  right:70px;
  bottom:-80px;
  width:220px;
  animation: levitate 3s ease-in-out infinite alternate;
  z-index:50;
}

.funny-text {
  position: absolute;
  top: 120px;
  left: 60px;
  font-size: 96px;
  font-family: 'Chewy', cursive;
  color: #FFD200;
  text-shadow: 4px 4px 0px #000;
  z-index: 9999;
}
.hidden { display: none; }

.contract-section {
  margin-top: 100px;
  text-align: center;
}

.contract-title {
  font-size:64px;
  color: #b9a6ff;
  margin:0 0 30px 0;
  text-shadow:3px 3px #004c5c;
  font-family:'Chewy',cursive;
}

.contract-bar {
  height: 70px;
  background: #00e5ff;
  border-radius: 999px;
  width: calc(70% - 150px);
  margin: 0 auto;
  box-shadow: 0 8px 0 #009bb0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: 'Chewy', cursive;
  color: #b9a6ff;
}



#about { margin-top: 100px !important; }


/* ===== MOBILE MERGED FROM APPROVED MOBILE VERSION ===== */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    text-align: left;
  }

@media (max-width: 768px) {
  .mobile-sticker-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }

@media (max-width: 768px) {
  .mobile-sticker-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }

@media (max-width: 768px) {
  .mobile-sticker-spaceship {
    margin-top: 67px;
    margin-bottom: 32px;
  }

@media (max-width: 768px) {

  .section-label {
    text-align: center;
    font-size: 14px;
    margin-bottom: 8px;
  }

@media (max-width: 768px) {
  #tokenomics .section-title {
    font-size: 24px;
    line-height: 1.2;
  }

@media (max-width: 768px) {
  #tokenomics .section-title {
    font-size: 22px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
  }

@media (max-width: 768px) {
  #tokenomics .section-title {
    font-size: 20px;
    line-height: 1.25;
    padding: 0 12px;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
  }

@media (max-width: 768px) {
  .contract-section {
    margin-top: 64px;
    padding: 0 16px;
    text-align: center;
  }

@media (max-width: 768px) {
  #about .about-image-wrapper {
    margin-top: -40px;
  }

@media (max-width: 768px) {
  .mobile-sticker-wrapper.mobile-sticker-spaceship {
    transform: translateY(40px) !important;
  }

@media (max-width: 768px) {
  #tokenomics .section-label {
    font-size: 14px;
    text-align: center;
    letter-spacing: 2px;
  }

@media (max-width: 768px) {
  #how-to-buy {
    margin-top: 40px;
  }

@media (max-width: 768px) {
  .cloud-sticker-container {
    display: flex;
    justify-content: center;
  }

@media (max-width: 768px) {
  #how-to-buy {
    padding-top: 0;
    margin-top: -125px;
  }

@media (max-width: 768px) {
  #memes .container {
    padding-top: 30px !important;
    position: relative;
    z-index: 2;
  }

@media (max-width: 768px) {
  #memes .section-label,
  #memes .section-title {
    transform: translateY(85px) !important;
    position: relative;
    z-index: 3;
  }

@media (max-width: 768px) {
  #memes .memes-grid {
    margin-top: 120px !important;
  }

@media (max-width: 768px) {
  .footer-actions {
    margin-top: 90px !important;
  }

@media (max-width: 768px) {
  .footer-pirate-sticker {
    left: 30px !important;
  }


/* MOBILE FIX: hide coin bear sticker on mobile only */
@media (max-width: 768px) {
  .footer-coin-sticker,
  .coin-bear,
  .footer-sticker-right-wrapper {
    display: none !important;
  }
}

/* MOBILE FORCE FIX: move cloud bear sticker LEFT 50px (no guessing, src-based) */
@media (max-width: 768px) {
  
}

/* MOBILE FIX: center cloud bear sticker (NO transform, levitation safe) */
@media (max-width: 768px) {
  img[src*="cloud"] {
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 768px) {
  .about-sticker-car {
    position: relative;
    top: auto;
    right: auto;
    margin: 2rem auto 1.5rem;
    width: 220px;
    display: block;
  }

  #about {
    overflow: visible;
  }

  #tokenomics {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .contract-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
  }

  .contract-bar {
    width: 100%;
    max-width: 100%;
    height: 64px;
    padding: 0 16px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .about-sticker-right {
    top: calc(100% + 360px);
    left: 15px;
  }
}

/* HIDE FUNNY TEXT ON MOBILE */
@media (max-width: 768px) {
  #funny-text {
    display: none !important;
  }
}
