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

body {
  background: #0a0a0a;
  color: #d0d0d0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* --- Link-in-bio container --- */
.container {
  max-width: 440px;
  margin: 0 auto;
  padding: 3rem 1.25rem 1.5rem;
  text-align: center;
}

.title {
  font-family: 'MotionSickness', cursive;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.featured-image {
  width: 100%;
  max-width: 380px;
  border-radius: 6px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 40px rgba(180, 20, 20, 0.35);
}

/* --- Link buttons --- */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.8rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.link-btn:active {
  transform: translateY(0);
}

.link-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Bandcamp — prominent */
.link-btn.bandcamp {
  background: #c8191e;
  color: #fff;
  border-color: #c8191e;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  font-weight: 700;
}

.link-btn.bandcamp:hover {
  background: #db1f25;
  box-shadow: 0 6px 28px rgba(200, 25, 30, 0.5);
}

/* Spotify */
.link-btn.spotify {
  background: rgba(30, 215, 96, 0.08);
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.2);
}
.link-btn.spotify:hover {
  background: rgba(30, 215, 96, 0.15);
  box-shadow: 0 4px 20px rgba(30, 215, 96, 0.2);
}

/* Apple Music */
.link-btn.apple {
  background: rgba(252, 60, 68, 0.08);
  color: #fc3c44;
  border-color: rgba(252, 60, 68, 0.2);
}
.link-btn.apple:hover {
  background: rgba(252, 60, 68, 0.15);
  box-shadow: 0 4px 20px rgba(252, 60, 68, 0.2);
}

/* SoundCloud */
.link-btn.soundcloud {
  background: rgba(255, 136, 0, 0.08);
  color: #ff8800;
  border-color: rgba(255, 136, 0, 0.2);
}
.link-btn.soundcloud:hover {
  background: rgba(255, 136, 0, 0.15);
  box-shadow: 0 4px 20px rgba(255, 136, 0, 0.2);
}

/* YouTube */
.link-btn.youtube {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.2);
}
.link-btn.youtube:hover {
  background: rgba(255, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
}

/* Instagram */
.link-btn.instagram {
  background: rgba(225, 48, 108, 0.08);
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.2);
}
.link-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.15);
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.2);
}

/* --- Game section --- */
.game-section {
  width: 100%;
  max-width: 640px;
  margin: 3rem auto 0;
  padding: 0 1rem;
  text-align: center;
}

.game-label {
  font-family: 'MotionSickness', cursive;
  font-size: 1.5rem;
  color: #c8191e;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.game-wrapper {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #1a1a1a;
  background: #070710;
  box-shadow: 0 0 30px rgba(120, 10, 10, 0.25), 0 0 60px rgba(10, 5, 20, 0.5);
}

#gameCanvas {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.game-hint {
  font-size: 0.75rem;
  color: #444;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #333;
  font-size: 0.8rem;
}
