:root {
  --orange: #ff6b00;
  --orange-light: #ff8c33;
  --orange-dark: #cc5500;
  --orange-glow: rgba(255, 107, 0, 0.45);
  --green: #00e676;
  --green-glow: rgba(0, 230, 118, 0.35);
  --gold: #ffd700;
  --bg-dark: #0a0604;
  --bg-card: rgba(20, 10, 5, 0.85);
  --text: #fff8f0;
  --text-muted: #c4a882;
  --border: rgba(255, 107, 0, 0.25);
  --radius: 16px;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/background.png") center / cover no-repeat;
  opacity: 0.35;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 6, 4, 0.4) 0%, var(--bg-dark) 100%);
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: rgba(10, 6, 4, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  box-shadow: 0 0 16px var(--orange-glow);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-shadow: 0 0 20px var(--orange-glow);
}

.logo__ticker {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--orange-light);
}

.nav__socials {
  display: flex;
  gap: 0.6rem;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid var(--border);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.icon-btn:hover {
  background: rgba(255, 107, 0, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--orange-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 24px var(--orange-glow);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px var(--orange-glow);
}

.btn--outline {
  background: transparent;
  color: var(--orange-light);
  border: 2px solid var(--orange);
}

.btn--outline:hover {
  background: rgba(255, 107, 0, 0.12);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--orange);
  padding: 0.25rem;
}

/* ── Hero ── */
.hero {
  padding: 7rem 0 3rem;
  text-align: center;
}

.hero__banner-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 0 60px var(--orange-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5rem;
}

.hero__banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 6, 4, 0.7) 100%);
  pointer-events: none;
}

.hero__banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow: 0 0 40px var(--orange-glow);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 30px var(--orange-glow); }
  50% { box-shadow: 0 0 60px var(--orange-glow), 0 0 80px var(--green-glow); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero__title .highlight {
  color: var(--orange);
  text-shadow: 0 0 30px var(--orange-glow);
}

.hero__title .green {
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
}

.hero__tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.75rem;
  text-align: center;
  min-width: 140px;
  backdrop-filter: blur(8px);
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--orange);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Sections ── */
.section {
  padding: 4rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--orange);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.03em;
  color: var(--orange);
  text-shadow: 0 0 20px var(--orange-glow);
}

.section__subtitle {
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 520px;
  margin-inline: auto;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: transform 0.25s, box-shadow 0.25s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--orange-glow);
}

.about-card__icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
  margin-bottom: 1rem;
}

.about-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  color: var(--orange-light);
}

.about-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── How to Buy ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  backdrop-filter: blur(8px);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -12px;
  left: 1.5rem;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--orange-glow);
}

.step__icon {
  width: 36px;
  height: 36px;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.step__title {
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.step__text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Tokenomics ── */
.tokenomics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tokenomics__chart {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

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

.tokenomics__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.tokenomics__item-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--orange);
}

.tokenomics__item-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.tokenomics__item-value {
  margin-left: auto;
  color: var(--green);
  font-weight: 700;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px var(--orange-glow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 6, 4, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__caption {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange-light);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  box-shadow: 0 0 60px var(--orange-glow);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--orange);
  cursor: pointer;
  padding: 0.5rem;
}

.lightbox__close svg {
  width: 32px;
  height: 32px;
}

/* ── Community ── */
.community {
  text-align: center;
}

.community__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2rem;
}

.community__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 240px;
}

.community__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--orange-glow);
}

.community__card-icon {
  width: 40px;
  height: 40px;
  color: var(--orange);
  flex-shrink: 0;
}

.community__card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.community__card-handle {
  font-weight: 700;
  color: var(--orange-light);
}

/* ── Footer ── */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  margin: 0 auto 1rem;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 1rem auto 0;
  line-height: 1.5;
}

.footer__copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Floating coins animation ── */
.floating-coins {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.08;
  animation: float-up linear infinite;
}

.coin:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s; }
.coin:nth-child(2) { left: 30%; animation-duration: 22s; animation-delay: 3s; }
.coin:nth-child(3) { left: 55%; animation-duration: 20s; animation-delay: 6s; }
.coin:nth-child(4) { left: 75%; animation-duration: 24s; animation-delay: 2s; }
.coin:nth-child(5) { left: 90%; animation-duration: 19s; animation-delay: 8s; }

@keyframes float-up {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.08; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 6, 4, 0.97);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .tokenomics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 5.5rem;
  }
}
