/* ===== Proof Of Vibe – Cartoon Sommer / Natur / Wald ===== */
:root {
  --color-sky: #87CEEB;
  --color-sky-deep: #B0E0E6;
  --color-grass: #2E8B57;
  --color-grass-light: #3CB371;
  --color-grass-dark: #228B22;
  --color-leaf: #32CD32;
  --color-white: #f8faf8;
  --color-text: #1a3d2e;
  --color-muted: #2d5a45;
  --color-card: rgba(255, 255, 255, 0.92);
  --color-card-border: rgba(46, 139, 87, 0.35);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-cartoon: 0 6px 24px rgba(26, 61, 46, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --radius-lg: 28px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--color-sky) 0%, var(--color-sky-deep) 45%, #7ec850 85%, var(--color-grass-dark) 100%);
  background-attachment: fixed;
  color: var(--color-text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body.use-custom-cursor {
  cursor: none;
}

body.use-custom-cursor * {
  cursor: none;
}

/* ===== Cartoon background: clouds + hills ===== */
.bg-cartoon {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-cartoon__cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
}

.bg-cartoon__cloud--1 {
  width: 120px;
  height: 50px;
  top: 12%;
  left: 10%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: cloud-drift 25s linear infinite;
}

.bg-cartoon__cloud--2 {
  width: 90px;
  height: 40px;
  top: 22%;
  right: 15%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: cloud-drift 30s linear infinite 5s;
}

.bg-cartoon__cloud--3 {
  width: 70px;
  height: 32px;
  top: 8%;
  left: 50%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: cloud-drift 28s linear infinite 2s;
}

@keyframes cloud-drift {
  0% { transform: translateX(-20px); }
  100% { transform: translateX(calc(100vw + 100px)); }
}

.bg-cartoon__hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  z-index: 0;
}

.bg-cartoon__hill {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: var(--color-grass-dark);
}

.bg-cartoon__hill--back {
  width: 140%;
  height: 280px;
  left: -20%;
  bottom: -80px;
  background: var(--color-grass);
  opacity: 0.95;
}

.bg-cartoon__hill--mid {
  width: 120%;
  height: 220px;
  left: -10%;
  bottom: -60px;
  background: var(--color-grass-light);
  opacity: 0.98;
}

.bg-cartoon__hill--front {
  width: 130%;
  height: 200px;
  left: -15%;
  bottom: -40px;
  background: var(--color-leaf);
  opacity: 0.9;
}

/* ===== Scanlines: dezent für Cartoon ===== */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.02;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.3) 2px,
    rgba(0, 0, 0, 0.3) 4px
  );
}

/* ===== Orb: weicher, heller für Cartoon ===== */
.orb-wrap {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(70vmax, 500px);
  height: min(70vmax, 500px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  opacity: 0.4;
}

.orb-wrap.orb--pulse {
  animation: orb-pulse 5s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { opacity: 0.35; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}

.orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(176, 224, 230, 0.5) 0%,
    rgba(144, 238, 144, 0.25) 40%,
    transparent 70%
  );
  filter: blur(50px);
}

.orb-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110%;
  height: 110%;
  margin-left: -55%;
  margin-top: -55%;
  border: 2px solid rgba(46, 139, 87, 0.2);
  border-radius: 50%;
  animation: orbit-rotate 14s linear infinite;
}

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== Nav (glass, CTA, mittig) ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.nav--glass {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46, 139, 87, 0.2);
  box-shadow: var(--shadow-cartoon);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.nav__logo:hover {
  opacity: 0.9;
}

.nav__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--color-grass-dark);
}

.nav__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__link:hover {
  color: var(--color-grass-dark);
  border-bottom-color: var(--color-grass);
}

.nav__cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow-cartoon);
}

.nav__cta:hover {
  box-shadow: 0 8px 28px rgba(46, 139, 87, 0.25);
}

/* ===== Cartoon headings ===== */
.neon-text {
  text-shadow: 0 2px 8px rgba(26, 61, 46, 0.15);
}

.neon-text-sub {
  text-shadow: 0 1px 4px rgba(26, 61, 46, 0.1);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 4rem;
  text-align: center;
}

.hero__logo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero__logo {
  width: clamp(120px, 28vw, 200px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(26, 61, 46, 0.2));
}

.hero__logo-wrap--live .hero__logo {
  animation: logo-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes logo-glow-pulse {
  0%, 100% { filter: drop-shadow(0 4px 20px rgba(26, 61, 46, 0.2)); transform: scale(1); }
  50% { filter: drop-shadow(0 6px 28px rgba(46, 139, 87, 0.3)); transform: scale(1.03); }
}

.hero__logo-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 140%;
  margin-left: -70%;
  margin-top: -70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 238, 144, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: logo-aura 3s ease-in-out infinite;
}

@keyframes logo-aura {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  color: var(--color-text);
}

.hero__subtext {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--color-grass);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-grass), var(--color-grass-light));
  color: var(--color-white);
  border: none;
  box-shadow: var(--shadow-cartoon);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 139, 87, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-grass-dark);
  border: 2px solid var(--color-grass);
  box-shadow: none;
}

.btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(46, 139, 87, 0.12);
  box-shadow: var(--shadow-cartoon);
}

.btn--hero {
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-cartoon);
}

.btn--hero:hover {
  box-shadow: 0 10px 32px rgba(46, 139, 87, 0.35);
  animation: btn-pulse 0.6s ease;
}

@keyframes btn-pulse {
  0%, 100% { transform: translateY(-2px) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
}

/* ===== Section base ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* ===== Why VIBE ===== */
.why-vibe__lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.why-vibe__list {
  list-style: none;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.why-vibe__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
  font-size: 1rem;
}

.why-vibe__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-grass);
}

/* ===== Tokenomics ===== */
.tokenomics__intro {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.tokenomics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}

.tokenomics__card {
  padding: 1.5rem 1rem;
  background: var(--color-card);
  border: 2px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cartoon);
}

.tokenomics__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.tokenomics__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-grass-dark);
}

/* ===== GIFs / Coin animations ===== */
.gifs__sub {
  color: var(--color-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.gifs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.gifs__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-card-border);
  box-shadow: var(--shadow-cartoon);
  background: var(--color-card);
  aspect-ratio: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gifs__item:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(46, 139, 87, 0.2);
  border-color: var(--color-grass);
}

.gifs__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.gifs__live-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow: var(--shadow-cartoon);
}

/* Coin-GIF animations (eigenes Logo, nicht statisch) */
.coin-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.coin-gif--pulse {
  animation: coin-pulse 2s ease-in-out infinite;
}

.coin-gif--glow {
  animation: coin-glow 2.5s ease-in-out infinite;
}

.coin-gif--float {
  animation: coin-float 3s ease-in-out infinite;
}

.coin-gif--spin-slow {
  animation: coin-spin 8s linear infinite;
}

.coin-gif--breathe {
  animation: coin-breathe 2.2s ease-in-out infinite;
}

.coin-gif--flicker {
  animation: coin-flicker 1.8s ease-in-out infinite;
}

@keyframes coin-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes coin-glow {
  0%, 100% { filter: drop-shadow(0 4px 12px rgba(46, 139, 87, 0.25)); }
  50% { filter: drop-shadow(0 6px 20px rgba(46, 139, 87, 0.4)); }
}

@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes coin-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes coin-breathe {
  0%, 100% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
}

@keyframes coin-flicker {
  0%, 100%, 60% { opacity: 1; filter: brightness(1); }
  30%, 90% { opacity: 0.85; filter: brightness(1.1); }
}

/* ===== Vibe Check section (priorisiert, hervorgehoben) ===== */
.vibe-check {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}

.vibe-check--featured {
  padding: 5rem 1.5rem 6rem;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(144, 238, 144, 0.12) 0%, transparent 60%);
  border-top: 1px solid var(--color-card-border);
  border-bottom: 1px solid var(--color-card-border);
}

.vibe-check__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-grass-dark);
  background: rgba(46, 139, 87, 0.2);
  border: 2px solid var(--color-card-border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-cartoon);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; box-shadow: var(--shadow-cartoon); }
  50% { opacity: 0.9; box-shadow: 0 8px 28px rgba(46, 139, 87, 0.2); }
}

.vibe-check__title {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.vibe-check__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text);
  max-width: 32ch;
  margin: 0 auto 0.5rem;
  line-height: 1.5;
}

.vibe-check__text {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.vibe-check__meter-wrap {
  margin-bottom: 2rem;
}

.vibe-check__gif {
  margin-top: 1.5rem;
}

.vibe-check__gif img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--color-card-border);
  box-shadow: var(--shadow-cartoon);
}

/* ===== Live Stats ===== */
.live-stats {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.live-stats--visible {
  opacity: 1;
  transform: translateY(0);
}

.live-stats__title {
  margin-bottom: 0.5rem;
}

.live-stats__subline {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.live-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.live-stats__card {
  padding: 1.25rem 1rem;
  background: var(--color-card);
  border: 2px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cartoon);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.live-stats__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(46, 139, 87, 0.18);
}

.live-stats__label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.live-stats__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-grass-dark);
}

/* ===== Custom Cursor (Smiley) ===== */
.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  margin-left: -16px;
  margin-top: -16px;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.08s ease-out, opacity 0.15s ease;
}

.custom-cursor img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.custom-cursor--hidden {
  opacity: 0;
  pointer-events: none;
}

.custom-cursor--hidden.hide-completely {
  display: none !important;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .custom-cursor {
    display: none !important;
  }
}

/* ===== Community ===== */
.community__text {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.community__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--color-card-border);
  background: rgba(255, 255, 255, 0.4);
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--color-grass-dark);
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 1rem;
}

.vibe-meter {
  max-width: 280px;
  margin: 0 auto;
}

.vibe-meter__track {
  height: 12px;
  background: rgba(26, 61, 46, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.vibe-meter__fill {
  height: 100%;
  width: 0%;
  min-width: 0;
  background: linear-gradient(90deg, var(--color-grass), var(--color-grass-light));
  border-radius: 999px;
  box-shadow: var(--shadow-cartoon);
  transition: width 0.6s ease-out;
}

.vibe-meter__label {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .nav__right {
    justify-content: center;
  }

  .gifs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nav__right {
    flex-direction: column;
    width: 100%;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .community__links {
    flex-direction: column;
    align-items: center;
  }

  .community__links .btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }

  .gifs__grid {
    grid-template-columns: 1fr;
  }

  .tokenomics__grid {
    grid-template-columns: 1fr;
  }

  .live-stats__grid {
    grid-template-columns: 1fr;
  }
}
