/* Lobstar — meme style, fun, lobster vibes 🦞 */
:root {
  --lobster: #e63946;
  --lobster-dark: #c1121f;
  --yellow: #ffd166;
  --mint: #06d6a0;
  --cream: #fefae0;
  --dark: #1d1d1d;
  --card: #2d2d2d;
  --font-meme: 'Bangers', cursive;
  --font-body: 'Comic Neue', 'Nunito', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #1a0a0a 0%, #2d1515 30%, #1d1d1d 100%);
  color: var(--cream);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Floating emojis */
.floating-emoji {
  position: fixed;
  font-size: 2rem;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.emoji-1 { top: 15%; left: 5%; animation-delay: 0s; }
.emoji-2 { top: 60%; right: 8%; animation-delay: 2s; }
.emoji-3 { bottom: 25%; left: 10%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  background: rgba(29, 29, 29, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 3px solid var(--lobster);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand__emoji { font-size: 1.5rem; }
.brand__name {
  font-family: var(--font-meme);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--lobster-dark);
}

.right { display: flex; align-items: center; gap: 1rem; }

.lang {
  display: flex;
  background: var(--card);
  border-radius: 20px;
  padding: 3px;
  border: 2px solid var(--lobster);
}
.lang__btn {
  padding: 0.3rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--cream);
  background: transparent;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang__btn:hover { color: var(--yellow); }
.lang__btn.active {
  background: var(--lobster);
  color: white;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--lobster) 0%, var(--lobster-dark) 100%);
  color: white;
  box-shadow: 0 4px 0 var(--lobster-dark), 0 6px 20px rgba(230, 57, 70, 0.5);
}
.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--lobster-dark), 0 8px 25px rgba(230, 57, 70, 0.6);
}
.btn--primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--lobster);
}
.btn--ghost:hover {
  background: rgba(230, 57, 70, 0.2);
  color: var(--yellow);
}
.btn--sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }
.btn--big {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}
.btn--icon .dex-icon { border-radius: 6px; }

.page {
  padding: 5rem 1rem 6rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero */
.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}
.hero__mascot-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.hero__mascot {
  width: min(260px, 70vw);
  max-height: 35vh;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  border-radius: 20px;
}
.hero__title {
  font-family: var(--font-meme);
  font-size: 2.5rem;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--lobster-dark);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(254, 250, 224, 0.9);
  margin: 0;
}

/* Story section */
.section-title {
  font-family: var(--font-meme);
  font-size: 1.8rem;
  color: var(--yellow);
  text-align: center;
  margin: 0 0 1.5rem;
  letter-spacing: 0.03em;
}

.story { margin-bottom: 3rem; }

.story__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meme-card {
  background: var(--card);
  border: 3px solid var(--lobster);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  box-shadow: 4px 4px 0 var(--lobster-dark);
  transition: transform 0.2s;
}
.meme-card:hover { transform: translateY(-2px); }
.meme-card__emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.meme-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.meme-card--1 { border-color: var(--mint); box-shadow: 4px 4px 0 #059669; }
.meme-card--2 { border-color: var(--yellow); box-shadow: 4px 4px 0 #e6b800; }
.meme-card--3 { border-color: var(--mint); box-shadow: 4px 4px 0 #059669; }

.quote-box {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(6, 214, 160, 0.1) 100%);
  border: 2px dashed var(--yellow);
  border-radius: 16px;
  padding: 1.25rem;
}
.quote-box blockquote {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  text-align: center;
}

/* Claim section */
.claim-section { margin-bottom: 3rem; }

.claim-card {
  background: var(--card);
  border: 3px solid var(--lobster);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 6px 6px 0 var(--lobster-dark);
}

.claim-title {
  font-family: var(--font-meme);
  font-size: 1.6rem;
  color: var(--yellow);
  text-align: center;
  margin: 0 0 0.5rem;
}
.claim-sub {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: rgba(254, 250, 224, 0.85);
}

.walletbox {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.4);
}
.walletbox__row { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.walletbox__label { font-size: 0.85rem; color: var(--yellow); }
.walletbox__addr {
  font-size: 0.85rem;
  font-family: monospace;
  word-break: break-all;
  max-width: 160px;
  text-align: right;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.stat {
  text-align: center;
  padding: 0.75rem;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  border: 2px solid rgba(230, 57, 70, 0.3);
}
.stat__emoji { font-size: 1.2rem; display: block; margin-bottom: 0.25rem; }
.stat__value { font-size: 0.9rem; font-weight: 700; }

.actions .btn--big { margin-bottom: 1rem; }

.links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(254, 250, 224, 0.7);
  text-align: center;
}

/* Facts */
.facts { margin-bottom: 2rem; }

.facts__list { display: flex; flex-direction: column; gap: 0.75rem; }

.fact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border-radius: 12px;
  border-left: 4px solid var(--lobster);
}
.fact-item__n {
  font-family: var(--font-meme);
  font-size: 1.5rem;
  color: var(--yellow);
  min-width: 2rem;
  text-align: center;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(254, 250, 224, 0.6);
  text-align: center;
  background: rgba(29, 29, 29, 0.95);
  border-top: 2px solid var(--lobster);
  z-index: 50;
}
.footer__link { color: var(--yellow); text-decoration: none; }
.footer__link:hover { text-decoration: underline; }
.sep { margin: 0 0.5rem; }

@media (max-width: 480px) {
  .hero__mascot { width: 200px; }
  .hero__title { font-size: 1.9rem; }
  .stats { grid-template-columns: 1fr; }
}
