@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --pink: #ff006e;
  --purple: #8338ec;
  --orange: #fb5607;
  --blue: #3a86ff;
  --yellow: #ffbe0b;
  --bg: #080808;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.12);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── PAGE BACKGROUND ── */
.page-bg {
  background:
    linear-gradient(135deg, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.75) 100%),
    url('../images/bg.jpg') center/cover no-repeat fixed;
  min-height: 100vh;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links .locked-link { opacity: 0.4; cursor: default; pointer-events: none; }
.nav-links .locked-link.unlocked { opacity: 1; pointer-events: all; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 0.9;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #fff 20%, var(--pink) 50%, var(--purple) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-subtitle {
  margin-top: 20px;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 8px 30px rgba(131,56,236,0.4);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(131,56,236,0.6);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff;
  box-shadow: 0 8px 30px rgba(251,86,7,0.4);
}

.btn-green {
  background: linear-gradient(135deg, #06d6a0, #3a86ff);
  color: #fff;
  box-shadow: 0 8px 30px rgba(6,214,160,0.4);
}

/* ── SECTION ── */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
}

/* ── GLASS CARD ── */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(131,56,236,0.4);
  transform: translateY(-4px);
}

/* ── PHOTO GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .overlay { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* ── MUSIC PLAYER ── */
.player-wrap {
  max-width: 680px;
  margin: 60px auto 0;
}

.now-playing {
  text-align: center;
  margin-bottom: 32px;
}

.now-playing .track-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.now-playing .track-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.progress-bar {
  flex: 1;
  height: 5px;
  background: var(--glass-border);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  width: 0%;
  pointer-events: none;
  transition: width 0.1s linear;
}

.time-tag { font-size: 0.75rem; color: var(--text-muted); min-width: 38px; }

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}

.ctrl-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}

.ctrl-btn:hover { color: #fff; transform: scale(1.1); }

.ctrl-btn.play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(131,56,236,0.5);
}

.ctrl-btn.play-btn:hover { transform: scale(1.08); }

.track-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }

.track-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.track-item:hover,
.track-item.active {
  background: rgba(131,56,236,0.15);
  border-color: rgba(131,56,236,0.4);
}

.track-num { font-size: 0.75rem; color: var(--text-muted); min-width: 20px; }
.track-title { flex: 1; font-size: 0.9rem; font-weight: 500; }
.track-dur { font-size: 0.75rem; color: var(--text-muted); }

/* ── ABOUT / UNLOCK ── */
.unlock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.unlock-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.unlock-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.unlock-card.crypto::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.unlock-card.game::before   { background: linear-gradient(90deg, var(--pink), var(--purple)); }

.unlock-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }

.unlock-icon { font-size: 3.5rem; margin-bottom: 16px; }
.unlock-title { font-family: 'Bebas Neue', cursive; font-size: 2rem; letter-spacing: 2px; margin-bottom: 8px; }
.unlock-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }

/* Crypto addresses */
.crypto-addr-block { margin: 20px 0; text-align: left; }

.crypto-coin {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--glass-border);
}

.coin-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  min-width: 50px;
  margin-top: 2px;
}

.coin-addr {
  font-size: 0.72rem;
  color: var(--text-muted);
  word-break: break-all;
  font-family: monospace;
  line-height: 1.5;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.2s;
}

.copy-btn:hover { color: var(--yellow); }

/* ── GAME ── */
#game-area {
  display: none;
  margin-top: 32px;
  text-align: center;
}

.simon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 280px;
  margin: 0 auto 24px;
}

.simon-btn {
  height: 120px;
  border-radius: 16px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: opacity 0.1s, transform 0.1s, border-color 0.1s;
  opacity: 0.45;
}

.simon-btn.s0 { background: #ff006e; }
.simon-btn.s1 { background: #8338ec; }
.simon-btn.s2 { background: #3a86ff; }
.simon-btn.s3 { background: #ffbe0b; }

.simon-btn.lit   { opacity: 1; border-color: #fff; transform: scale(1.04); }
.simon-btn.wrong { animation: shake 0.3s; }
.simon-btn:hover { opacity: 0.7; }
.simon-btn.locked { pointer-events: none; }

.game-status {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  min-height: 24px;
}

.game-round {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 16px;
}

/* ── REVEALED CONTACT ── */
#contact-reveal {
  display: none;
  animation: fadeUp 0.6s forwards;
}

#contact-reveal.show { display: block; }

.contact-info-block {
  max-width: 500px;
  margin: 48px auto 0;
  text-align: center;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-bottom: 12px;
}

.contact-row .label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-row .value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 40px 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-top: 1px solid var(--glass-border);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-8px); }
  75%      { transform: translateX(8px); }
}

@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px rgba(131,56,236,0.4); }
  50%      { box-shadow: 0 0 50px rgba(255,0,110,0.7); }
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(20,20,20,0.95);
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.75rem; letter-spacing: 1px; }
  .unlock-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
}
