* { box-sizing: border-box; }

:root {
  --accent: #00f0ff;
  --accent2: #ff00d4;
  --btn: #eb16cf;
  --text: #fff;
  --glass: rgba(0,0,0,0.65);
}

/* Body */
html, body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: #000;
}

/* === Background === */
body {
  background: black;
  position: relative; /* establishes stacking context */
  z-index: 0;
}

#moving-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("assets/back1.png") no-repeat center center / cover;
  z-index: -2; /* behind content, above body */
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* soft tint */
  z-index: -1; /* above the background but below main content */
}


/* === Banner === */
.image-banner img { width: 100%; display: block; }

/* === Whitepaper === */
.whitepaper-center { text-align: center; margin: 22px auto 8px; }
.whitepaper-btn {
  background: #fff; color: #6366f1; font-weight: 700;
  padding: 12px 24px; border-radius: 10px; border: 2px solid #6366f1;
  text-decoration: none; transition: 0.2s ease;
}
.whitepaper-btn:hover { background: #6366f1; color: #fff; }

/* === Hero === */
.hero { padding: 10px 16px 0; text-align: center; }
.hero h1 {
  font-size: 1.65rem; font-weight: 900; text-transform: uppercase;
  margin: 8px 0; text-shadow: 0 0 6px var(--accent), 0 0 14px var(--accent2);
}
.disclaimer-card {
  max-width: 820px; margin: 12px auto 0; padding: 14px 16px;
  background: var(--glass); border-radius: 12px;
  box-shadow: 0 0 18px rgba(122,0,255,.25), 0 0 28px rgba(0,255,255,.12);
}
.disclaimer-card p { color: #ccc; }

/* === Main === */
main { padding: 16px; }

/* === Whitelist === */
.card {
  max-width: 820px; margin: 18px auto; padding: 18px;
  background: var(--glass); border-radius: 16px;
  box-shadow: 0 0 20px rgba(122,0,255,.25), 0 0 35px rgba(0,255,255,.18);
  text-align: center;
}
.wallet-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
#wallet-select {
  background: #121212; color: #fff; border: 1px solid #333;
  padding: 10px 12px; border-radius: 10px; min-width: 180px;
}
.connect-wallet, .primary-btn {
  background: linear-gradient(45deg, #7c3aed, var(--btn));
  color: #fff; font-weight: 700;
  padding: 10px 14px; border: none; border-radius: 10px;
  cursor: pointer; transition: 0.2s ease; font-size: .95rem;
}
.connect-wallet:hover, .primary-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 14px var(--accent), 0 0 26px var(--accent2);
}

/* === Socials & Logos === */
.social-icons { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.social-icons a {
  font-size: 36px; color: transparent;
  background: linear-gradient(45deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; background-clip: text;
  transition: transform .2s, text-shadow .2s;
}
.social-icons a:hover { transform: scale(1.15); text-shadow: 0 0 16px var(--accent), 0 0 28px var(--accent2); }

.brand-logos { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 12px; }
.solana-icon, .coin-icon {
  width: 90px; height: 90px; object-fit: contain;
  filter: drop-shadow(0 0 8px var(--accent)) drop-shadow(0 0 12px var(--accent2));
  transition: transform .3s, filter .3s;
}
.solana-icon:hover, .coin-icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px var(--accent)) drop-shadow(0 0 35px var(--accent2));
}

/* === Song Ticker === */
.song-ticker {
  width: 100%; overflow: hidden; white-space: nowrap;
  background: rgba(0,0,0,0.7); color: #0af; font-weight: 700;
  font-size: 1.05rem; padding: 10px 0;
  position: fixed; bottom: 0; left: 0; z-index: 10;
}
.song-ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 12s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0%) }
  100% { transform: translateX(-100%) }
}

/* === Footer === */
.disclaimer {
  font-size: .8rem; color: #bbb; padding: 16px 10px;
  background: #0a0a0a; border-top: 1px solid #222; margin-top: 20px;
}

/* === Media Queries === */
@media (min-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
}
