:root {
  --bg: #050505;
  --bg2: #0b0b0b;
  --panel: rgba(255, 196, 0, 0.06);
  --panel2: rgba(255, 196, 0, 0.12);
  --border: rgba(255, 196, 0, 0.25);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.52);
  --yellow: #ffc400;
  --yellow2: #ffdb4d;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Orbitron, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1000px 600px at 15% 10%, rgba(255, 196, 0, 0.18), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(255, 196, 0, 0.12), transparent 55%), linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
}

/* Background effects */
.bg-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 196, 0, 0.15) 55%, rgba(255, 196, 0, 0) 75%);
  left: var(--x);
  top: var(--y);
  opacity: 0.8;
  filter: blur(0.2px);
  animation: drift var(--d) linear infinite;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.0;
  }
  10% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.65;
  }
  100% {
    transform: translate3d(var(--dx), var(--dy), 0);
    opacity: 0.0;
  }
}

.shimmer-line {
  position: absolute;
  top: -120px;
  left: -20%;
  width: 140%;
  height: 160px;
  background: radial-gradient(closest-side, rgba(255, 196, 0, 0.22), rgba(255, 196, 0, 0) 70%);
  transform: rotate(-8deg);
  animation: shimmerSweep 7s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes shimmerSweep {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(40px) rotate(-8deg);
    opacity: 0.95;
  }
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 196, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 196, 0, 0.35);
  box-shadow: 0 0 0 6px rgba(255, 196, 0, 0.07), 0 0 18px rgba(255, 196, 0, 0.35);
  animation: brandLogoPulse 3.2s ease-in-out infinite;
}

@keyframes brandLogoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(255, 196, 0, 0.07), 0 0 14px rgba(255, 196, 0, 0.28);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 196, 0, 0.12), 0 0 26px rgba(255, 196, 0, 0.55);
  }
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 15px;
}

.brand-sub {
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(255, 196, 0, 0.35);
}

.brand-chain {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  font-size: 13.5px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 196, 0, 0.08);
  transform: translateY(-1px);
}

.topbar-cta {
  display: flex;
  justify-content: flex-end;
  min-width: 240px;
}

/* Hero */
.hero {
  padding: 26px 0 6px;
}

.hero-banner {
  position: relative;
  width: min(1220px, calc(100% - 26px));
  margin: 0 auto;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 196, 0, 0.16);
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.62);
}

.hero-overlay {
  position: relative;
  padding: 40px 26px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.2));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-logo-wrap {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  animation: logoFloat 4.4s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.55) 0%, rgba(255, 196, 0, 0.12) 42%, transparent 70%);
  filter: blur(8px);
  animation: logoGlow 2.8s ease-in-out infinite;
}

.hero-logo-orbit {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(255, 196, 0, 0.28);
  box-shadow: 0 0 24px rgba(255, 196, 0, 0.18) inset;
  animation: logoSpin 10s linear infinite;
}

.hero-logo-orbit::before,
.hero-logo-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--yellow));
  box-shadow: 0 0 16px rgba(255, 196, 0, 0.9);
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-logo-orbit::after {
  top: auto;
  bottom: 10%;
  width: 8px;
  height: 8px;
}

.hero-logo-orbit-2 {
  inset: -4%;
  animation-duration: 16s;
  animation-direction: reverse;
  border-color: rgba(255, 196, 0, 0.16);
  border-style: dashed;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 72%;
  height: 72%;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(255, 219, 77, 0.55);
  box-shadow: 0 0 0 10px rgba(255, 196, 0, 0.08), 0 18px 40px rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.25);
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 14%;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.72) 48%, transparent 68%);
  mix-blend-mode: screen;
  animation: logoShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

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

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes logoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoShine {
  0% {
    transform: translateX(-18%) rotate(12deg);
    opacity: 0;
  }
  18% {
    opacity: 0.85;
  }
  50% {
    transform: translateX(18%) rotate(12deg);
    opacity: 0.15;
  }
  100% {
    transform: translateX(28%) rotate(12deg);
    opacity: 0;
  }
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.badge {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.08);
  border: 1px solid rgba(255, 196, 0, 0.18);
}

.badge-shine {
  position: relative;
  overflow: hidden;
}

.badge-shine::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 196, 0, 0.9) 50%, transparent 70%);
  transform: translateX(-60%);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

.hero-title {
  margin: 0;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.shimmer-text {
  background: linear-gradient(90deg, #fff 0%, var(--yellow2) 45%, #fff 70%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShimmer 2.9s linear infinite;
  text-shadow: 0 0 28px rgba(255, 196, 0, 0.25);
}

@keyframes textShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.hero-subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 196, 0, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
  position: relative;
  overflow: hidden;
}

.btn .btn-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 196, 0, 0.25));
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: 10px 14px;
  font-size: 13px;
}

.btn-wide {
  width: 100%;
}

.btn-primary {
  background: rgba(255, 196, 0, 0.12);
  border-color: rgba(255, 196, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
}

.btn-accent {
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.26), rgba(255, 196, 0, 0.12));
  border-color: rgba(255, 196, 0, 0.55);
}

.btn-accent::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 196, 0, 0.65) 38%, transparent 62%);
  transform: translateX(-70%);
  animation: shineSweep 2.6s ease-in-out infinite;
  opacity: 0.95;
  pointer-events: none;
}

@keyframes shineSweep {
  0% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 196, 0, 0.28);
}

/* Token card */
.token-card {
  margin-top: 20px;
  width: min(860px, 100%);
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 18px;
  padding: 14px 14px 18px;
  backdrop-filter: blur(10px);
}

.token-row {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 16px;
}

.token-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  letter-spacing: 0.25px;
}

.token-value {
  margin-top: 5px;
  font-weight: 950;
  font-size: 18px;
}

.token-symbol {
  color: var(--yellow);
}

.token-ca {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#caText {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(255, 255, 255, 0.88);
}

.copy-btn {
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.copy-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 196, 0, 0.18);
}

.toast {
  margin-top: 10px;
  min-height: 18px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.2px;
}

/* Sections */
.section {
  padding: 64px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.05), rgba(255, 196, 0, 0));
  border-top: 1px solid rgba(255, 196, 0, 0.12);
  border-bottom: 1px solid rgba(255, 196, 0, 0.12);
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.2px;
}

.section-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 16px;
}

.card {
  background: rgba(255, 196, 0, 0.04);
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.card-highlight {
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.08), rgba(255, 196, 0, 0.02));
  position: relative;
  overflow: hidden;
}

.card-highlight::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255, 196, 0, 0.22), transparent 55%);
  pointer-events: none;
}

.card-title {
  font-weight: 950;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  position: relative;
}

.lead {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
  font-weight: 650;
  font-size: 14.5px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  font-weight: 650;
}

.divider {
  height: 1px;
  background: rgba(255, 196, 0, 0.22);
  margin: 16px 0;
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.mini-cta-title {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 950;
}

/* How to buy */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 196, 0, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 196, 0, 0.22), transparent 45%);
  transform: rotate(8deg);
  pointer-events: none;
}

.step-num {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  background: rgba(255, 196, 0, 0.12);
  border: 1px solid rgba(255, 196, 0, 0.3);
  color: var(--yellow2);
}

.step-body {
  position: relative;
  margin-top: 12px;
}

.step-title {
  font-weight: 950;
}

.step-text {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-weight: 650;
  font-size: 14px;
}

.action-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Join */
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card-join-right {
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.08), rgba(255, 196, 0, 0.02));
}

.muted {
  color: rgba(255, 255, 255, 0.72);
  margin: 10px 0 16px;
  line-height: 1.6;
  font-weight: 650;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.link-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 196, 0, 0.08);
  border-color: rgba(255, 196, 0, 0.3);
}

.link-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 196, 0, 0.25));
}

.link-icon .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 196, 0, 0.45);
}

.link-muted {
  color: rgba(255, 255, 255, 0.78);
}

/* Footer */
.footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 196, 0, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 196, 0, 0.25);
}

.footer-title {
  font-weight: 950;
}

.footer-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 650;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 196, 0, 0);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.footer-right a:hover {
  background: rgba(255, 196, 0, 0.08);
  border-color: rgba(255, 196, 0, 0.2);
  transform: translateY(-1px);
}

/* Flying objects */
.fly-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

.fly-coin {
  position: absolute;
  left: var(--fx);
  top: 105%;
  width: var(--fs);
  height: var(--fs);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), rgba(255, 196, 0, 0.55) 35%, rgba(255, 196, 0, 0.0) 70%);
  border: 1px solid rgba(255, 196, 0, 0.25);
  box-shadow: 0 0 22px rgba(255, 196, 0, 0.25);
  animation: flyUp var(--ft) ease-out forwards;
  opacity: 0.95;
}

@keyframes flyUp {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 0.95;
  }
  100% {
    transform: translate3d(var(--fdx), calc(-1 * var(--fdy)), 0) scale(1.08) rotate(18deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .brand {
    min-width: 220px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .action-row {
    grid-template-columns: 1fr;
  }
  .join-grid {
    grid-template-columns: 1fr;
  }
  .token-row {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .topbar {
    padding: 12px 14px;
  }
  .hero-overlay {
    grid-template-columns: 1fr;
    padding: 28px 18px 34px;
  }
  .hero-logo-wrap {
    width: min(260px, 78%);
    order: -1;
  }
}

