@font-face {
  font-family: 'LostFish';
  src: url('assets/LostFish-5DOz.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.font-fallback {
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
  color-scheme: light;
  --color-primary: #5ba7d7;
  --color-accent: #d68614;
  --color-white: #ffffff;
  --color-deep: #04142c;
  --color-deeper: #020b1c;
  --color-soft: #6bb7e6;
  --color-muted: rgba(255, 255, 255, 0.851);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #021428;
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

body.modal-open main,
body.modal-open .hero {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wave-transition {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, #2ba1ff, #031330 60%);
  clip-path: inset(0 0 100% 0 round 0);
  opacity: 0;
  pointer-events: none;
  z-index: 12;
  will-change: clip-path, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.bubbles-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.bubbles-video.fading {
  opacity: 0;
}

.bubble-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: 0;
  width: var(--size, 16px);
  height: var(--size, 16px);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateY(0) translateX(0);
}

/* Bubble base styling with cartoon-like but realistic appearance */
.bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.4) 15%,
    rgba(149, 205, 240, 0.3) 40%,
    rgba(149, 205, 240, 0.1) 70%,
    transparent 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    inset -2px -2px 8px rgba(0, 0, 0, 0.15),
    inset 2px 2px 8px rgba(255, 255, 255, 0.4),
    0 0 12px rgba(149, 205, 240, 0.4),
    0 0 24px rgba(149, 205, 240, 0.2);
  filter: blur(0.5px);
}

/* Highlight/reflection on top */
.bubble::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 25%;
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  filter: blur(1px);
  opacity: 0.8;
}

/* Size variations */
.bubble[data-size="small"] {
  --size: 12px;
}

.bubble[data-size="medium"] {
  --size: 20px;
}

.bubble[data-size="large"] {
  --size: 32px;
}

.bubble[data-size="large"]::after {
  top: 12%;
  left: 22%;
  width: 40%;
  height: 40%;
}

.startup-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 8, 20, 0.82);
  backdrop-filter: blur(18px);
  z-index: 11;
  padding: 1.5rem;
  transition: opacity 0.4s ease;
}

.startup-modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.startup-modal__card {
  width: min(420px, 90vw);
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  will-change: opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  background: #000;
}

.startup-modal__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  z-index: 0;
}

.startup-modal__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1.5rem 3rem;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}

.startup-modal__action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* iPhone-style buttons for modal */
.startup-modal__actions .btn {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  aspect-ratio: 1;
}

.startup-modal__actions .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.startup-modal__actions .btn:hover {
  transform: scale(1.05);
}

.startup-modal__actions .btn:hover::before {
  opacity: 0.1;
}

.startup-modal__actions .btn:active {
  transform: scale(0.95);
}

.startup-modal__actions .btn:focus-visible {
  outline: 3px solid rgba(149, 205, 240, 0.7);
  outline-offset: 4px;
}

.startup-modal__actions .btn__icon {
  width: 32px;
  height: 32px;
  stroke-width: 2.5;
  z-index: 1;
}

.startup-modal__actions .btn--reject .btn__icon {
  transform: rotate(136deg);
}



.startup-modal__action-item .btn__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.startup-modal__actions .btn--reject {
  background: #ff3b30;
  color: var(--color-white);
}

.startup-modal__actions .btn--reject::before {
  background: rgba(255, 255, 255, 1);
}

.startup-modal__actions .btn--accept {
  background: #34c759;
  color: var(--color-white);
}

.startup-modal__actions .btn--accept::before {
  background: rgba(255, 255, 255, 1);
}

/* Default button styles for other buttons */
.btn {
  font-family: 'Baloo 2', 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 3px solid rgba(2, 6, 18, 0.85);
  border-radius: 18px;
  padding: 0.85rem 2.6rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #010b1f;
  background: var(--color-primary);
  box-shadow: 4px 6px 0 rgba(1, 9, 21, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 8px 0 rgba(1, 9, 21, 0.9);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 3px 0 rgba(1, 9, 21, 0.9);
}

.btn:focus-visible {
  outline: 3px solid rgba(149, 205, 240, 0.7);
  outline-offset: 4px;
}

.btn--buy {
  background: linear-gradient(120deg, var(--color-accent), #f8ab42);
  color: #1b0c00;
  padding: 0.75rem 1.8rem;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.btn--buy:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 8px 0 rgba(1, 9, 21, 0.9);
}

.btn--reject.is-shaking {
  animation: rejectShake 0.4s ease;
}

@keyframes rejectShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

.btn--outline {
  background: linear-gradient(120deg, var(--color-accent), #f8ab42);
  color: #1b0c00;
  text-decoration: none;
}

.btn--outline:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 8px 0 rgba(1, 9, 21, 0.9);
}

.btn--icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  padding: 0.75rem 1.4rem;
}

.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000 !important;
  padding: 0.85rem clamp(1.5rem, 6vw, 4rem);
  background: rgba(0, 0, 0, 0) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.site-top--scrolled {
  background: rgba(0, 0, 0, 0) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.site-top__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-top__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-top__logo {
  max-height: 64px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.site-top__logo-btn {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.site-top__logo-btn:focus-visible {
  outline: 3px solid rgba(149, 205, 240, 0.7);
  border-radius: 12px;
}

.site-top__text {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  -webkit-text-stroke: 1px var(--color-white);
}

.site-top__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 1.5rem;
}

.site-top__nav-link {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.site-top__nav-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.site-top__nav-link:focus-visible {
  outline: 2px solid rgba(149, 205, 240, 0.7);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-top__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-top__mobile-menu {
  display: none;
}

.site-top__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  gap: 5px;
}

.site-top__burger-line {
  width: 100%;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-top__burger[aria-expanded="true"] .site-top__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.site-top__burger[aria-expanded="true"] .site-top__burger-line:nth-child(2) {
  opacity: 0;
}

.site-top__burger[aria-expanded="true"] .site-top__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

main {
  position: relative;
  z-index: 0;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #3d97c0;
  z-index: -1;
  pointer-events: none;
}

main::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(2, 11, 28, 0.35), rgba(2, 11, 28, 0.65));
  z-index: -1;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(clamp(0.85rem, 6vw, 4rem) * 2 + 64px);
  padding-bottom: 0;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
  background-image: linear-gradient(180deg, rgba(2, 11, 28, 0.35), rgba(2, 11, 28, 0.65)),
    url('assets/top.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
 
  z-index: 0;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(149, 205, 240, 0.25), transparent 90%);
  mix-blend-mode: screen;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(149, 205, 240, 0.85), rgba(214, 134, 20, 0.85));
}

.hero__inner {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto 10vh;
  margin-top: clamp(-2rem, -5vh, -1rem);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero__phone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__phone-img {
  max-width: min(500px, 40vw);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-links a {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 3px solid rgba(2, 6, 18, 0.85);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 4px 6px 0 rgba(1, 9, 21, 0.9);
}

.social-links a svg {
  width: 24px;
  height: 24px;
  fill: rgba(1, 9, 21, 0.9);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-1px, -1px);
  box-shadow: 6px 8px 0 rgba(1, 9, 21, 0.9);
}

.social-links--top a {
  width: 48px;
  height: 48px;
}

.social-links--top a svg {
  width: 20px;
  height: 20px;
}

.hero__content {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.hero h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 0 0 0.25rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  -webkit-text-stroke: 2px var(--color-white);
}

.hero__tagline {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.hero__contract {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(149, 205, 240, 0.3);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.hero__contract-address {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero__contract-copy {
  flex-shrink: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero__contract-copy:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.hero__contract-copy svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
}

.marquee {
  position: relative;
  width: 100%;
  max-height: 10vh;
  height: 10vh;
  background: var(--color-deep);
  padding: 0;
  overflow: hidden;
  border-top: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  z-index: 1;
  display: flex;
}

.hero .marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(149, 205, 240, 0.25), transparent 90%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.marquee__track {
  position: relative;
  z-index: 1;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: moveMarquee 18s linear infinite;
  white-space: nowrap;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  -webkit-text-stroke: 1px var(--color-white);
}

.marquee__logo {
  height: clamp(24px, 4vh, 40px);
  width: auto;
  display: block;
}

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

.section {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 4rem);
}

.section__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.about {
  position: relative;
  margin: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: rgba(20, 50, 80, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
  min-height: 75vh;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(149, 205, 240, 0.15), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.about .section__inner {
  height: 100%;
  position: relative;
  z-index: 1;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  text-align: left;
  color: var(--color-primary);
  -webkit-text-stroke: 1.5px var(--color-white);
}

.about__left p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  text-align: left;
}

.about__left .btn--outline {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
}

.about__image-slider {
  width: 100%;
  height: auto;
  min-height: 250px;
  overflow: hidden;
  position: relative;
  background: transparent;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.about__image-slider::before,
.about__image-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}

.about__image-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(20, 50, 80, 0.25), transparent);
}

.about__image-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(20, 50, 80, 0.25), transparent);
}

.about__image-slider-track {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
  will-change: transform;
  align-items: center;
  padding: 1rem 0;
}

.about__image-slider-track img {
  flex-shrink: 0;
  width: auto;
  height: auto;
  max-height: 280px;
  max-width: 300px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: none;
  background: transparent;
  display: block;
}

.tokenomics {
  position: relative;
  margin: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: rgba(20, 50, 80, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  min-height: 50vh;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tokenomics::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(149, 205, 240, 0.15), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.tokenomics .section__inner {
  height: 100%;
  position: relative;
  z-index: 1;
}

.tokenomics__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}

.tokenomics__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tokenomics h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  text-align: left;
  color: var(--color-primary);
  -webkit-text-stroke: 1.5px var(--color-white);
}

.tokenomics__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tokenomics__list li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
  text-align: left;
}

.tokenomics__list strong {
  color: var(--color-primary);
}

.tokenomics__left .btn--outline {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
}

.tokenomics__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 400px;
}

.tokenomics__image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  
}


.gallery {
  position: relative;
  background: rgba(20, 50, 80, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  margin: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 4rem) 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(149, 205, 240, 0.15), transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

.gallery .section__inner {
  position: relative;
  z-index: 1;
}

.section__header h2 {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  -webkit-text-stroke: 1.5px var(--color-white);
}

.section__header p {
  margin: 0 0 2rem;
  color: var(--color-muted);
}

.meme-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-flow: row;
}

@media (min-width: 640px) {
  .meme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .meme-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .meme-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.meme-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.meme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.meme-card:hover img {
  transform: scale(1.05);
}

.meme-card__download {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(4, 19, 47, 0.8);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(149, 205, 240, 0.5);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  cursor: pointer;
}

.meme-card__download svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.meme-card__download:hover {
  transform: translateY(-3px);
}

.meme-card:hover .meme-card__download,
.meme-card:focus-within .meme-card__download {
  opacity: 1;
  visibility: visible;
}

/* Hide download for memes after the first 4 */
.meme-card:nth-child(n+5) .meme-card__download {
  display: none;
}

.section__actions {
  margin-top: 2.5rem;
  text-align: center;
}

.footer {
  padding: 3rem 1.5rem 4rem;
  min-height: 120vh;
  background-image: linear-gradient(180deg, rgba(1, 6, 18, 0.7), rgba(1, 6, 18, 0.4)),
    url('assets/bottom2.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0 !important;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(149, 205, 240, 0.25), transparent 90%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.footer__inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.footer__image {
  max-width: 280px;
}

.footer__brand {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.8rem;
  margin: 0.5rem 0 0;
  color: var(--color-primary);
  -webkit-text-stroke: 1.5px var(--color-white);
}

.footer__contract {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(149, 205, 240, 0.3);
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(8px);
  max-width: 100%;
}

.footer__contract-address {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.9rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
  word-break: break-all;
}

.footer__contract-copy {
  flex-shrink: 0;
  padding: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.footer__contract-copy:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.footer__contract-copy svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-white);
}

.footer__social {
  display: flex;
  gap: 0.85rem;
}

.footer__social a {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 3px solid rgba(2, 6, 18, 0.85);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 4px 6px 0 rgba(1, 9, 21, 0.9);
}

.footer__social svg {
  width: 24px;
  height: 24px;
  fill: rgba(1, 9, 21, 0.9);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-1px, -1px);
  box-shadow: 6px 8px 0 rgba(1, 9, 21, 0.9);
}

.footer__social a:hover svg {
  fill: rgba(1, 9, 21, 0.9);
}

.footer__copyright {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-align: center;
}

@media (max-width: 640px) {
  .startup-modal__card {
    width: min(90vw, 400px);
    border-radius: 30px;
  }

  .startup-modal__actions {
    gap: 2rem;
    padding: 1.5rem 1rem 2.5rem;
  }

  .startup-modal__actions .btn {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    aspect-ratio: 1 !important;
  }
  
  .startup-modal__actions .btn::before {
    border-radius: 50% !important;
  }
  
  .startup-modal__actions .btn--reject,
  .startup-modal__actions .btn--accept {
    border-radius: 50% !important;
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
  }

  .startup-modal__actions .btn__icon {
    width: 28px;
    height: 28px;
  }

  .startup-modal__action-item .btn__label {
    font-size: 0.7rem;
  }

  .btn {
    flex: 1;
  }

  .site-top__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
  }

  .site-top__brand {
    flex: 1;
    flex-wrap: nowrap;
  }

  .site-top__text {
    font-size: 1.25rem;
  }

  /* Hide desktop nav and right section on mobile */
  .site-top__brand > .site-top__nav {
    display: none;
  }

  .site-top__inner > .site-top__right {
    display: none;
  }

  .site-top__burger {
    display: flex;
  }

  .site-top__mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 50, 80, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    margin-top: 0.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1001;
  }

  .site-top__mobile-menu .site-top__nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .site-top__mobile-menu .site-top__nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(149, 205, 240, 0.2);
  }

  .site-top__mobile-menu .site-top__nav-link:last-child {
    border-bottom: none;
  }

  .site-top__mobile-menu .site-top__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin: 0;
    padding: 0;
  }

  .site-top--menu-open .site-top__mobile-menu {
    display: flex;
  }

  .btn--buy {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
  }

  .social-links--top {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__contract {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  .footer__contract-address {
    font-size: 0.65rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__phone {
    order: -1;
    margin-bottom: 2rem;
  }

  .about {
    min-height: auto;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem);
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about h2,
  .about__left p {
    text-align: left;
  }

  .about__image-grid {
    order: -1;
    max-height: 300px;
  }

  .tokenomics {
    min-height: auto;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 1.5rem);
  }

  .tokenomics__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tokenomics h2,
  .tokenomics__list li {
    text-align: left;
  }

  .tokenomics__image {
    max-height: 300px;
  }

  .hero__phone-img {
    max-width: min(280px, 60vw);
  }

  .hero h1 {
    margin-bottom: 0.15rem;
  }

  .hero__tagline {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .hero__contract {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  .hero__contract-address {
    font-size: 0.65rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee__track {
    animation: none;
  }

  .bubble-field {
    display: none;
  }

  .wave-transition {
    clip-path: none;
  }

  .startup-modal__image {
    transform: scale(1.1) !important;
    will-change: auto;
  }
}
