@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Bangers&display=swap');

@font-face {
  font-family: 'Grandstander';
  src: url('bingus-images/Grandstander-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Comicy';
  src: url('bingus-images/Comicy.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #7eb8e0;
  --primary-dark: #5a9bc7;
  --primary-light: #a8d4f0;
  --secondary: #e8b8c0;
  --secondary-dark: #d4a0a8;
  --secondary-light: #f0d0d8;
  --bg-color: #7eb8e0;
  --accent-pink: #e8b8c0;
  --theme-color-1: #ffd700;
  --white: white;
  --black: #000;
  --main-radius: 12rem;
  --main-off-white: #f5eee7;
  --glass: #0000005c;
  --10-white: #ffffff80;
  --s2-top-overlap: -7.7vw;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}
@media screen and (max-width:1600px) { html { font-size: calc(0.34rem + 0.66vw); } }
@media screen and (max-width:991px) { html { font-size: calc(0.45rem + 0.89vw); } }
@media screen and (max-width:767px) { html { font-size: calc(0.33rem + 1.39vw); } }
@media screen and (max-width:479px) { html { font-size: calc(0.87rem + 0.31vw); } }

body {
  background-color: var(--black);
  color: var(--main-off-white);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.5;
}

a { color: inherit; text-decoration: inherit; font-size: inherit; }
img { max-width: 100%; display: inline-block; }
h1,h2,h3,h4,h5,h6,p { margin: 0; }

.page-wrapper { overflow: hidden; display: flex; flex-direction: column; align-items: center; }

/* Ambient glows — blue and pink for dual-tone theme */
.pink-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,184,224,0.3) 0%, rgba(232,184,192,0.15) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
}
@keyframes glowFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.1); }
  66%  { transform: translate(-30px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes glowFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-35px, 25px) scale(0.92); }
  66%  { transform: translate(25px, -35px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes glowFloat3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, 30px) scale(1.12); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ============ NAVBAR ============ */
.navbar13_component {
  z-index: 999;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.navbar13_container {
  gap: 0;
  border-radius: 100px;
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  backdrop-filter: saturate(200%) blur(24px);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(126,184,224,0.2);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: .4rem .5rem;
  font-family: 'Archivo', sans-serif;
  display: flex;
  width: auto;
  max-width: none;
  transition: border-color .4s, box-shadow .4s, transform .3s;
}
.navbar13_container:hover {
  border-color: rgba(126,184,224,0.4);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(126,184,224,0.1),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}
.navbar13_logo-link {
  background: none;
  border: none;
  padding: .6rem 1.2rem;
  font-family: 'Comicy', cursive;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bg-color);
  min-width: auto;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color .3s, transform .3s, text-shadow .3s;
  text-shadow: 0 0 20px rgba(126,184,224,0.4);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.navbar13_logo-link:hover {
  color: var(--secondary);
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(232,184,192,0.6);
}
.navbar13_menu-desktop {
  display: flex;
  align-items: center;
  gap: 0;
}
.navbar13_socials-desktop {
  display: flex;
  gap: 2px;
  padding: 0;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  margin-left: 0;
  padding-left: .3rem;
}

/* Mobile fullscreen menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #000;
  padding: 120px 2rem 2rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-link {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 1.2rem 2rem;
  background: rgba(126,184,224,0.08);
  border: 1px solid rgba(126,184,224,0.15);
  border-radius: 16px;
  text-align: center;
  color: var(--main-off-white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .1ch;
  text-decoration: none;
  transition: background .2s, transform .2s, color .2s, border-color .2s;
}
.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: rgba(126,184,224,0.2);
  border-color: rgba(126,184,224,0.3);
  color: var(--bg-color);
  transform: scale(1.02);
}
.mobile-menu-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  max-width: 320px;
}
.mobile-social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(126,184,224,0.1);
  border: 1px solid rgba(126,184,224,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s, border-color .2s;
  text-decoration: none;
}
.mobile-social-btn:hover,
.mobile-social-btn:active {
  background: rgba(126,184,224,0.25);
  border-color: rgba(126,184,224,0.4);
  transform: scale(1.1);
}
.mobile-social-btn img {
  width: 22px;
  height: 22px;
  opacity: 0.9;
  filter: invert(1);
}
.mobile-social-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--main-off-white);
  opacity: 0.9;
}
.navbar13_link {
  color: rgba(245,238,231,0.6);
  font-weight: 500;
  letter-spacing: .05ch;
  padding: .7rem 1.1rem;
  font-size: .7rem;
  text-decoration: none;
  transition: color .3s, background .3s;
  border-radius: 0;
  position: relative;
}
.navbar13_link::after {
  content: '';
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--secondary);
  transition: transform .3s;
}
.navbar13_link:hover {
  color: #fff;
  background: transparent;
}
.navbar13_link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.navbar13_socials {
  display: flex;
  gap: 2px;
  padding: 0;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  margin-left: 0;
  padding-left: .3rem;
}
.nav-icon-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  transition: background-color .3s, transform .3s;
  text-decoration: none;
}
.nav-icon-btn:hover {
  background-color: rgba(126,184,224,0.15);
  transform: scale(1.15) rotate(5deg);
}
.nav-icon-btn img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity .3s;
}
.nav-icon-btn:hover img { opacity: 1; }
.nav-icon-btn.icon-dexscreener img { filter: invert(1); }
.nav-icon-btn.icon-x svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  color: var(--main-off-white);
  opacity: 0.6;
  transition: opacity .3s;
}
.nav-icon-btn:hover .icon-x svg,
.nav-icon-btn.icon-x:hover svg { opacity: 1; }
.nav-icon-btn.icon-telegram img { filter: invert(1); }
.navbar13_button-wrapper {
  display: none;
}
.nav-buy-btn {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  padding: .6rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border-radius: 10px;
  transition: background .3s;
  margin-left: .5rem;
  width: 44px;
  height: 44px;
}
.menu-toggle:hover {
  background: rgba(126,184,224,0.15);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--bg-color);
  transition: transform .3s, opacity .3s, width .3s;
  border-radius: 2px;
  transform-origin: center;
}
/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ============ HERO ============ */
.hero { z-index: 0; width: 100%; position: relative; flex-shrink: 0; }
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25vh;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 50%, #000 100%);
  z-index: 5;
  pointer-events: none;
}
.section-hero {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Title layer — centered in upper portion */
.hero-title-layer {
  z-index: 4;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  width: 100%; height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
}
.hero-title-content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  padding-bottom: 30vh;
  padding-top: 10vh;
}
.hero-title {
  color: var(--bg-color);
  font-family: 'Comicy', cursive;
  font-size: 18vw;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 80px rgba(126,184,224,0.5),
    0 0 160px rgba(126,184,224,0.2),
    0 4px 0 rgba(0,0,0,0.4);
  text-transform: uppercase;
}
.hero-subtitle {
  font-family: 'Archivo', sans-serif;
  font-variation-settings: "wght" 800, "wdth" 125;
  font-size: 1rem;
  color: rgba(245,238,231,0.5);
  letter-spacing: .4ch;
  margin-top: .75rem;
  text-transform: uppercase;
}

/* Character layer — positioned at bottom */
.hero-characters {
  z-index: 3;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 500px;
  padding: 0 5%;
}
.hero-character-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  filter:
    drop-shadow(0 0 60px rgba(126,184,224,0.45))
    drop-shadow(0 0 120px rgba(126,184,224,0.15))
    drop-shadow(0 20px 80px rgba(0,0,0,0.6));
  animation: floatHero 6s ease-in-out infinite;
}
@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-bg-layer {
  z-index: 0;
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 80%, rgba(20,40,60,0.6) 0%, transparent 60%);
}
.hero-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 15%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 40%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 40% 10%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 55%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 20%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 45%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 15% 70%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 30% 85%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 75%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 65% 90%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 65%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 95% 80%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 5% 50%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 20% 25%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 60%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 48% 35%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 50%, #fff 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 75%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 8% 88%, #fff 50%, transparent 100%);
  opacity: 0.7;
  animation: starsTwinkle 8s ease-in-out infinite alternate;
}
@keyframes starsTwinkle {
  0% { opacity: 0.5; }
  50% { opacity: 0.8; }
  100% { opacity: 0.5; }
}

/* Coin accent above Launched On */
.launched-on-coin {
  display: flex;
  justify-content: center;
  margin-bottom: -0.5rem;
}
.launched-on-coin img {
  width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(126,184,224,0.4)) drop-shadow(0 0 60px rgba(232,184,192,0.2));
}

/* Floating boxes — hidden in redesign */
.hero-boxes { display: none; }
.hero-boxes-inner,
.floating-box,
.floating-box img,
.box-left,
.box-right { display: none; }

/* Dark overlay — hidden (was causing overlay bug) */
.hero-dark-overlay { display: none; }

/* ============ SECTION 2: ABOUT ============ */
.s2-section {
  z-index: 1;
  width: 100%;
  position: relative;
}
.s2-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: visible;
}
.s2-foreground {
  z-index: 4;
  pointer-events: none;
  width: 100%; height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
}
.s2-top-img-wrap {
  left: 0;
  top: var(--s2-top-overlap);
  z-index: 0;
  width: 100%;
  margin-bottom: -4%;
  position: absolute;
}
.s2-top-img-wrap svg { width: 100%; height: auto; display: block; }
.s2-middle-layer {
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}
.s2-middle-content {
  justify-content: center;
  align-items: center;
  max-width: 700px;
  height: 100%;
  padding-top: 25%;
  padding-bottom: 25%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}
.s2-text {
  color: var(--bg-color);
  font-variation-settings: "wght" 900, "wdth" 124;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
}
.s2-bg-layer {
  z-index: 0;
  background-color: #000;
  width: 100%; height: 100%;
  position: absolute;
}
.s2-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 15%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 30% 40%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 50% 20%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 30%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 45% 70%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 75% 85%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 85% 50%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 25% 55%, #fff 50%, transparent 100%);
  opacity: 0.5;
}

/* ============ LORE SECTION ============ */
.lore-section {
  z-index: 3;
  width: 100%;
  position: relative;
  overflow: visible;
}
.lore-container {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: auto;
  position: relative;
  overflow: visible;
  padding: 10vh 0 20vh;
}
.lore-content {
  z-index: 10;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.lore-title {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: 3.5rem;
  color: var(--bg-color);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 60px rgba(126,184,224,0.4);
}
.lore-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}
.lore-story {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lore-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.lore-card:hover {
  border-color: rgba(126,184,224,0.3);
  transform: translateY(-4px);
}
.lore-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(126,184,224,0.05) 0%, rgba(232,184,192,0.05) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.lore-card-inner {
  position: relative;
  z-index: 2;
  padding: 1.75rem 2rem;
}
.lore-subtitle {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.lore-text {
  font-variation-settings: "wght" 500, "wdth" 105;
  font-size: .95rem;
  color: var(--main-off-white);
  opacity: 0.85;
  line-height: 1.7;
  text-transform: none;
  margin-bottom: .75rem;
}
.lore-text:last-child {
  margin-bottom: 0;
}
.lore-media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lore-video-card {
  position: relative;
  border: 2px solid var(--secondary);
  border-radius: 20px;
  overflow: hidden;
}
.lore-video-inner {
  position: relative;
  z-index: 2;
}
.lore-video-placeholder {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(232,184,192,0.15) 0%, rgba(126,184,224,0.15) 100%);
}
.lore-video-img {
  width: 70%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(232,184,192,0.4));
  animation: floatBingus 4s ease-in-out infinite;
}
@keyframes floatBingus {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.lore-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  text-align: center;
}
.lore-instagram-embed {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(232,184,192,0.1) 0%, rgba(126,184,224,0.1) 100%);
  min-height: 450px;
}
.lore-instagram-embed .instagram-media {
  margin: 0 auto !important;
  border-radius: 12px !important;
}
.lore-video-inner .lore-video-label {
  display: block;
  text-align: center;
  padding: 1rem;
  background: rgba(0,0,0,0.5);
}
.lore-video-label {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--main-off-white);
}
.lore-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .3s;
}
.timeline-item:last-child {
  border-bottom: none;
}
.timeline-item:hover {
  background: rgba(126,184,224,0.05);
}
.timeline-item.active {
  background: linear-gradient(90deg, rgba(126,184,224,0.15) 0%, rgba(232,184,192,0.1) 100%);
}
.timeline-date {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: .85rem;
  color: var(--bg-color);
  min-width: 80px;
}
.timeline-event {
  font-variation-settings: "wght" 500;
  font-size: .85rem;
  color: var(--main-off-white);
  opacity: 0.8;
  text-transform: none;
}
.timeline-item.active .timeline-event {
  color: var(--secondary);
  opacity: 1;
  font-weight: 600;
}
.lore-bg-layer {
  z-index: 0;
  background-color: #000;
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
}
.lore-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 12% 18%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 38% 45%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 62% 28%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 78% 65%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 22% 75%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 88% 42%, #fff 50%, transparent 100%);
  opacity: 0.4;
}

/* ============ SECTION 3: TOKENOMICS (REDESIGNED) ============ */
.s3-section {
  z-index: 2;
  width: 100%;
  position: relative;
}
.s3-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: visible;
}
.s3-top-wrap {
  left: 0;
  top: var(--s2-top-overlap);
  z-index: 2;
  pointer-events: none;
  width: 100%;
  margin-top: -4%;
  position: absolute;
}
.s3-top-wrap svg { width: 100%; height: auto; display: block; }
.s3-middle-layer {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%; height: 100%;
  padding-top: 20vh;
  padding-bottom: 10vh;
  display: flex;
  position: relative;
}
.s3-middle-content {
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 5%;
  display: flex;
  gap: 3rem;
}
.s3-bg-layer {
  z-index: 0;
  background-color: #000;
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
}
.s3-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 12% 18%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 33% 42%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 55% 25%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 72% 62%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 88% 35%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 18% 78%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 42% 68%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 78% 88%, #fff 50%, transparent 100%);
  opacity: 0.5;
}

/* Launched On pairs */
.launched-on-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.launched-on-label {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: 3rem;
  color: var(--bg-color);
  letter-spacing: 0.04em;
  text-align: center;
}
.launched-on-pairs {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  justify-content: center;
}
.launched-on-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid var(--10-white);
  border-radius: var(--main-radius);
  padding: 1.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  flex: 1;
  max-width: 380px;
}
.launched-on-card:hover {
  border-color: var(--bg-color);
  transform: translateY(-4px);
}
.launched-on-card:hover .launched-on-card-bg { margin: 2%; }
.launched-on-card-bg {
  position: absolute;
  inset: 0;
  background: var(--glass);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--main-radius);
  margin: 4%;
  transition: margin .3s;
}
.launched-on-logo {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.launched-on-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.launched-on-logo svg {
  width: 100%;
  height: 100%;
}
.launched-on-info {
  position: relative;
  z-index: 2;
  text-align: left;
}
.launched-on-pair-name {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--main-off-white);
  line-height: 1.2;
}
.launched-on-pair-label {
  font-variation-settings: "wght" 600, "wdth" 125;
  font-size: .75rem;
  color: var(--bg-color);
  letter-spacing: .15ch;
  margin-top: .25rem;
}

/* CA Section */
.ca-section {
  width: 100%;
  margin-top: 2rem;
  border: 2px solid var(--bg-color);
  border-radius: 1.5rem;
  position: relative;
  overflow: visible;
  transition: border-color .3s, box-shadow .3s;
  min-height: 100px;
}
.ca-section:hover {
  box-shadow: 0 0 30px rgba(126,184,224,0.2);
}
.ca-section-bg {
  position: absolute;
  inset: 0;
  background: var(--glass);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-radius: 1.5rem;
  overflow: hidden;
}
.ca-section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem 1.5rem 160px;
  min-height: 100px;
}
.ca-character {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 140px;
  height: 180px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(126,184,224,0.3));
}
.ca-character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.ca-content {
  flex: 1;
  min-width: 0;
}
.ca-label {
  font-variation-settings: "wght" 700, "wdth" 125;
  font-size: .85rem;
  color: var(--bg-color);
  letter-spacing: .2ch;
  margin-bottom: .4rem;
}
.ca-address {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1rem;
  color: var(--main-off-white);
  word-break: break-all;
  line-height: 1.4;
  opacity: 0.85;
}
.ca-copy-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--black);
  cursor: pointer;
  transition: background-color .2s, transform .2s;
}
.ca-copy-btn svg {
  width: 22px;
  height: 22px;
}
.ca-copy-btn:hover {
  background-color: var(--primary-light);
  transform: scale(1.1);
}
.ca-copy-btn.copied {
  background-color: #4ade80;
}
.ca-copy-btn.copied svg {
  stroke: #fff;
}

/* Chart embed */
.chart-section {
  width: 100%;
  margin-top: 2rem;
  border: 1px solid var(--10-white);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.chart-section:hover {
  border-color: var(--bg-color);
}
.chart-section-bg {
  position: absolute;
  inset: 0;
  background: var(--glass);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-radius: 1.5rem;
}
.chart-section-inner {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}
.chart-label {
  font-variation-settings: "wght" 700, "wdth" 125;
  font-size: .85rem;
  color: var(--bg-color);
  letter-spacing: .2ch;
  margin-bottom: 1rem;
  text-align: center;
}
.chart-embed {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 1rem;
  background: rgba(0,0,0,0.4);
}

/* ============ BLOCK DIVIDER ============ */
.block-divider {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.block-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ SECTION 4: HOW TO BUY (REDESIGNED) ============ */
.s4-section {
  z-index: 2;
  width: 100%;
  position: relative;
}
.s4-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.s4-bg-layer {
  z-index: -1;
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
  background-color: #000;
}
.s4-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 35% 50%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 15%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 70%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 20% 85%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, #fff 50%, transparent 100%);
  opacity: 0.5;
}
.s4-middle-layer {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%; height: 100%;
  display: flex;
  position: relative;
  padding: 15vh 5% 10vh;
}
.s4-middle-content {
  color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  display: flex;
  gap: 3rem;
}

.htb-title {
  color: var(--bg-color);
  font-family: 'Comicy', cursive;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 3.5rem;
}

/* Vertical step cards */
.htb-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.htb-step-card {
  border: 1px solid var(--10-white);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: default;
  max-width: 800px;
  width: 100%;
}
.htb-step-card:hover {
  border-color: var(--bg-color);
  transform: scale(1.02);
}
.htb-step-card:hover .htb-card-bg { margin: 1%; }
.htb-card-bg {
  background-color: var(--glass);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  margin: 3%;
  transition: margin .3s;
  position: absolute;
  inset: 0;
}
.htb-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
}
.htb-step-num {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  color: var(--bg-color);
  flex-shrink: 0;
  width: 4rem;
  text-align: center;
}
.htb-step-info {
  flex: 1;
}
.htb-step-name {
  font-variation-settings: "wght" 800, "wdth" 125;
  font-size: 1.3rem;
  color: var(--main-off-white);
  margin-bottom: .5rem;
  letter-spacing: .05ch;
}
.htb-step-desc {
  font-variation-settings: "wght" 600, "wdth" 110;
  font-size: .95rem;
  color: var(--main-off-white);
  opacity: 0.8;
  text-transform: none;
  line-height: 1.6;
}
.htb-step-icon {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--bg-color);
}
.htb-step-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============ SECTION 5: MEME GALLERY (UNIQUE) ============ */
.s5-section {
  z-index: 1;
  width: 100%;
  position: relative;
}
.s5-container {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: auto;
  position: relative;
  overflow: visible;
}
.s5-bg-layer {
  z-index: 0;
  background-color: #000;
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
}
.s5-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 8% 12%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 28% 38%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 52% 22%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 68% 58%, #fff 50%, transparent 100%),
    radial-gradient(1px 1px at 92% 32%, #fff 50%, transparent 100%);
  opacity: 0.4;
}

.meme-gallery {
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10vh 5% 14vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

/* Polaroid scattered style */
.meme-card {
  position: relative;
  background: linear-gradient(145deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 12px 12px 45px 12px;
  border-radius: 4px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.3),
    0 5px 15px rgba(0,0,0,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.8);
  transition: transform .5s cubic-bezier(.2,.8,.3,1), box-shadow .4s, z-index 0s .5s;
  cursor: pointer;
  width: 200px;
  height: 240px;
  margin: -15px;
}
.meme-card::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(126,184,224,0.4), var(--secondary), rgba(126,184,224,0.4), transparent);
  border-radius: 4px;
  opacity: 0.6;
}
.meme-card::after {
  content: 'bingus';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Comicy', cursive;
  font-size: .75rem;
  color: rgba(0,0,0,0.3);
  letter-spacing: .1ch;
}

/* Scattered rotation for each card */
.meme-card:nth-child(1) { transform: rotate(-8deg) translateY(20px); z-index: 5; }
.meme-card:nth-child(2) { transform: rotate(5deg) translateY(-10px); z-index: 4; }
.meme-card:nth-child(3) { transform: rotate(-3deg) translateY(30px); z-index: 3; }
.meme-card:nth-child(4) { transform: rotate(7deg) translateY(-20px); z-index: 2; }
.meme-card:nth-child(5) { transform: rotate(-5deg) translateY(15px); z-index: 1; }

.meme-card:hover {
  transform: rotate(0deg) translateY(-20px) scale(1.1) !important;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    0 15px 30px rgba(0,0,0,0.3),
    0 0 80px rgba(126,184,224,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.9);
  z-index: 20 !important;
  transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s, z-index 0s 0s;
}
.meme-card img {
  display: block;
  width: 100%;
  height: calc(100% - 0px);
  object-fit: cover;
  border-radius: 2px;
  transition: filter .4s;
  filter: saturate(0.95) contrast(1.05);
}
.meme-card:hover img {
  filter: saturate(1.1) contrast(1.1);
}

/* ============ FOOTER ============ */
.footer {
  z-index: 5;
  width: 100%;
  background: linear-gradient(180deg, #000 0%, rgba(20,40,60,0.4) 100%);
  position: relative;
  overflow: visible;
}
.footer-character {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 25px rgba(126,184,224,0.3));
}
.footer-character img {
  width: 100%;
  height: auto;
  display: block;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,184,224,0.5), transparent);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 5% 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-logo {
  font-family: 'Comicy', cursive;
  font-weight: 400;
  font-size: 2rem;
  color: var(--bg-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(126,184,224,0.3);
}
.footer-socials {
  display: flex;
  gap: 4px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-off-white);
  transition: border-color .3s, background-color .3s, transform .2s;
  text-decoration: none;
}
.footer-social-link:hover {
  border-color: rgba(126,184,224,0.4);
  background-color: rgba(126,184,224,0.1);
  transform: translateY(-1px);
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.7;
  transition: opacity .3s;
}
.footer-social-link:hover svg { opacity: 1; }
.footer-social-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity .3s;
}
.footer-social-link:hover img { opacity: 1; }
.footer-social-link.icon-dexscreener img { filter: invert(1); }
.footer-social-link.icon-telegram img { filter: invert(1); }
.footer-social-link.icon-etherscan svg { opacity: 0.7; transition: opacity .3s; }
.footer-social-link.icon-etherscan:hover svg { opacity: 1; }
.footer-nav {
  display: flex;
  gap: .25rem;
}
.footer-nav-link {
  font-variation-settings: "wght" 700, "wdth" 120;
  letter-spacing: .12ch;
  padding: .5rem .9rem;
  font-size: .8rem;
  color: rgba(245,238,231,0.65);
  text-decoration: none;
  transition: color .25s, background .25s;
  border-radius: 10px;
}
.footer-nav-link:hover {
  color: var(--bg-color);
  background: rgba(126,184,224,0.08);
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-credit {
  font-variation-settings: "wdth" 105, "wght" 500;
  font-size: .75rem;
  color: var(--main-off-white);
  opacity: 0.4;
  text-transform: none;
}
.footer-tagline {
  font-variation-settings: "wdth" 125, "wght" 700;
  font-size: .85rem;
  color: var(--bg-color);
  letter-spacing: .1ch;
}

/* ============ GSAP text animate placeholder ============ */
[animate] .word {
  display: inline-block;
  margin-right: 0.3ch;
}

/* ============ RESPONSIVE ============ */
@media screen and (max-width: 991px) {
  .navbar13_component { margin-top: 1rem; padding-left: 3%; padding-right: 3%; }
  .navbar13_container { border-radius: 50px; padding: .3rem .4rem; }
  .navbar13_button-wrapper { display: flex; }
  .menu-toggle { display: flex; }
  .navbar13_menu-desktop { display: none; }
  .navbar13_socials-desktop { display: none; }
  .mobile-menu { display: flex; }

  /* Hero tablet */
  .section-hero { min-height: 100svh; height: 100svh; }
  .hero-title { font-size: clamp(4rem, 16vw, 8rem); }
  .hero-title-content {
    padding-bottom: 35vh;
    padding-top: 12vh;
  }
  .hero-characters { max-width: 420px; }
  .hero-character-img { max-width: 100%; }

  /* Lore tablet */
  .lore-section { overflow: hidden; }
  .lore-container { padding: 8vh 0 12vh; }
  .lore-content { padding: 0 4%; text-align: center; }
  .lore-title { font-size: 2.8rem; margin-bottom: 2.5rem; }
  .lore-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lore-story {
    gap: 1.25rem;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .lore-card {
    border-radius: 16px;
    width: 100%;
    text-align: left;
  }
  .lore-card-inner { padding: 1.5rem 1.75rem; }
  .lore-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .lore-video-card {
    max-width: 100%;
    margin: 0;
    border-radius: 16px;
  }
  .lore-instagram-embed {
    min-height: 380px;
    padding: 0.75rem;
  }
  .lore-timeline { border-radius: 12px; }
  .timeline-item { padding: 0.9rem 1.1rem; }

  .meme-gallery {
    padding: 8vh 3% 12vh;
    gap: 0;
  }
  .meme-card {
    width: 160px;
    height: 195px;
    padding: 10px 10px 38px 10px;
    margin: -10px;
  }
  .meme-card::after { font-size: .65rem; bottom: 12px; }
  .launched-on-label { font-size: 2.5rem; }
  .launched-on-pairs { flex-direction: column; align-items: center; }
  .launched-on-card { max-width: 100%; width: 100%; }
  .ca-section-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
  .chart-embed { height: 350px; }
  .ca-character {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100px;
    height: 120px;
    margin: 0 auto -1rem;
  }
  .ca-content { text-align: center; }
  .htb-step-card { max-width: 100%; }
  .htb-card-inner { flex-direction: column; text-align: center; gap: 1rem; align-items: center; }
  .htb-step-icon { display: none; }
  .footer-character { width: 140px; right: 4%; }
  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
}

@media screen and (max-width: 767px) {
  .navbar13_component { margin-top: .75rem; }
  .navbar13_container { padding: .25rem .35rem; }
  .navbar13_logo-link { font-size: 1.4rem; padding: .5rem .8rem; border-right: none; }

  /* Hero mobile */
  .section-hero { min-height: 100svh; height: 100svh; }
  .hero-title {
    font-size: clamp(3rem, 16vw, 5.5rem);
  }
  .hero-title-content {
    padding-bottom: 32vh;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 15vh;
  }
  .hero-characters {
    max-width: 340px;
  }
  .hero-character-img {
    max-width: 100%;
    filter:
      drop-shadow(0 0 40px rgba(126,184,224,0.4))
      drop-shadow(0 0 80px rgba(126,184,224,0.1))
      drop-shadow(0 15px 50px rgba(0,0,0,0.5));
  }
  .hero::after { height: 20vh; }

  /* Lore mobile */
  .lore-container { padding: 6vh 0 10vh; }
  .lore-content { padding: 0 5%; text-align: center; }
  .lore-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 1.75rem;
  }
  .lore-grid { gap: 1.5rem; }
  .lore-story {
    gap: 1rem;
    align-items: center;
    max-width: 100%;
  }
  .lore-card {
    border-radius: 14px;
    width: 100%;
    text-align: left;
  }
  .lore-card-inner { padding: 1.25rem 1.5rem; }
  .lore-subtitle { font-size: 1.15rem; margin-bottom: 0.75rem; }
  .lore-text { font-size: .88rem; line-height: 1.65; }
  .lore-media {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  .lore-video-card {
    max-width: 100%;
    border-radius: 14px;
  }
  .lore-instagram-embed {
    min-height: 400px;
    padding: 0.5rem;
  }
  .lore-instagram-embed .instagram-media {
    max-width: 100% !important;
    min-width: 100% !important;
  }
  .lore-video-label { font-size: 1rem; padding: 0.85rem; }
  .lore-timeline {
    border-radius: 12px;
    width: 100%;
  }
  .timeline-item {
    padding: .85rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    text-align: left;
  }
  .timeline-date { min-width: auto; font-size: .8rem; }
  .timeline-event { font-size: .8rem; }

  .launched-on-label { font-size: 2rem; }
  .htb-title { font-size: 2.5rem; }
  .meme-gallery { padding: 6vh 2% 10vh; }
  .meme-card {
    width: 140px;
    height: 170px;
    padding: 8px 8px 32px 8px;
    margin: -8px;
  }
  .meme-card::after { font-size: .6rem; bottom: 10px; }
  .s3-middle-layer { padding-top: 15vh; padding-bottom: 8vh; }
  .s3-middle-content { gap: 2rem; }
}

@media screen and (max-width: 479px) {
  .navbar13_container { padding: .2rem .3rem; border-radius: 40px; }
  .navbar13_logo-link { font-size: 1.3rem; padding: .4rem .6rem; }

  /* Hero small mobile */
  .section-hero { min-height: 100svh; height: 100svh; height: -webkit-fill-available; }
  .hero-title {
    font-size: clamp(2.5rem, 15vw, 4rem);
    text-shadow:
      0 0 50px rgba(126,184,224,0.4),
      0 0 100px rgba(126,184,224,0.15),
      0 3px 0 rgba(0,0,0,0.25);
  }
  .hero-subtitle { font-size: .85rem; letter-spacing: .3ch; }
  .hero-title-content {
    padding-bottom: 30vh;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 18vh;
  }
  .hero-characters {
    max-width: 280px;
  }
  .hero-character-img {
    max-width: 100%;
  }
  .hero::after { height: 18vh; }

  /* Lore small mobile */
  .lore-container { padding: 5vh 0 8vh; }
  .lore-content { padding: 0 4%; text-align: center; }
  .lore-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 1.5rem;
  }
  .lore-grid { gap: 1.25rem; }
  .lore-story {
    gap: 0.85rem;
    align-items: center;
  }
  .lore-card {
    border-radius: 12px;
    width: 100%;
    text-align: left;
  }
  .lore-card-inner { padding: 1rem 1.25rem; }
  .lore-subtitle { font-size: 1.05rem; margin-bottom: .6rem; }
  .lore-text { font-size: .82rem; line-height: 1.55; margin-bottom: 0.5rem; }
  .lore-video-card {
    border-radius: 12px;
    border-width: 1px;
    width: 100%;
  }
  .lore-instagram-embed {
    min-height: 350px;
    border-radius: 8px;
  }
  .lore-video-label { font-size: 0.9rem; padding: 0.75rem; }
  .lore-timeline {
    border-radius: 10px;
    width: 100%;
  }
  .timeline-item {
    padding: .75rem .9rem;
    gap: 0.25rem;
    text-align: left;
  }
  .timeline-date { font-size: .75rem; }
  .timeline-event { font-size: .75rem; }

  .launched-on-label { font-size: 1.6rem; }
  .launched-on-card { padding: 1rem 1.25rem; gap: 1rem; }
  .ca-section { margin-top: 1.5rem; }
  .chart-embed { height: 300px; }
  .chart-section-inner { padding: 1rem; }
  .ca-section-inner { padding: 1.25rem; gap: .75rem; }
  .ca-character { width: 80px; height: 100px; }
  .ca-address { font-size: .8rem; }
  .ca-copy-btn { width: 44px; height: 44px; }
  .launched-on-logo { width: 42px; height: 42px; }
  .launched-on-pair-name { font-size: 1.1rem; }
  .nav-icon-btn { width: 100%; height: 42px; border-radius: 12px; }
  .nav-icon-btn img { width: 16px; height: 16px; }
  .htb-title { font-size: 2rem; }
  .htb-step-num { font-size: 2.5rem; width: auto; }
  .htb-card-inner { padding: 1.5rem; }
  .meme-gallery { padding: 4vh 2% 8vh; }
  .meme-card {
    width: 120px;
    height: 145px;
    padding: 6px 6px 28px 6px;
    margin: -6px;
  }
  .meme-card::after { font-size: .55rem; bottom: 8px; }
  .meme-card:nth-child(1) { transform: rotate(-6deg) translateY(15px); }
  .meme-card:nth-child(2) { transform: rotate(4deg) translateY(-8px); }
  .meme-card:nth-child(3) { transform: rotate(-2deg) translateY(20px); }
  .meme-card:nth-child(4) { transform: rotate(5deg) translateY(-15px); }
  .meme-card:nth-child(5) { transform: rotate(-4deg) translateY(10px); }
  .footer-character { width: 110px; right: 3%; }
  .footer-inner { padding: 2.5rem 5% 1.5rem; }
  .footer-credit { text-align: center; font-size: .65rem; }
  .footer-tagline { font-size: .75rem; text-align: center; }
  .footer-nav-link { font-size: .7rem; padding: .4rem .6rem; }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
  .hero-title { font-size: clamp(2rem, 14vw, 3rem); }
  .hero-title-content { padding-bottom: 28vh; padding-top: 20vh; }
  .hero-characters { max-width: 240px; }
  .lore-title { font-size: 1.4rem; }
  .lore-card-inner { padding: 0.85rem 1rem; }
  .lore-subtitle { font-size: 1rem; }
  .lore-text { font-size: .78rem; }
  .timeline-item { padding: .65rem .75rem; }
  .meme-card {
    width: 100px;
    height: 125px;
    padding: 5px 5px 24px 5px;
    margin: -5px;
  }
}

/* Landscape mobile fix */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .section-hero { min-height: 100vh; }
  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hero-title-content { padding-bottom: 20vh; padding-top: 15vh; }
  .hero-characters { max-width: 220px; }
  .hero::after { height: 15vh; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(126, 184, 224, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox-content img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--main-off-white);
  font-size: 3rem;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1;
}
.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(126, 184, 224, 0.15);
  border: 1px solid rgba(126, 184, 224, 0.3);
  color: var(--main-off-white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.7;
  transition: opacity 0.3s, background 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover {
  opacity: 1;
  background: rgba(126, 184, 224, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
@media screen and (max-width: 767px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 15px; right: 15px; font-size: 2.5rem; }
}
