/* Import Share Tech Mono font (already in HTML, included here for backup) */
@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFcLowEF.woff2) format('woff2');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0e0e;
  color: #f0f0f0;
  font-family: 'Share Tech Mono', monospace;
  overflow-x: hidden;
}

section {
  padding: 4rem 2rem;
  position: relative;
}

.hero {
  background: url('mixtape-cracked-cover.png') center/cover no-repeat;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 8rem;
  animation: glitch 6s infinite;
}

.hero h1 {
  font-size: 3rem;
  text-shadow: 0 0 10px #00ffcc;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #c7faff;
}

.buttons {
  margin-top: 2rem;
}

.buttons a {
  margin: 0 1rem;
  padding: 0.8rem 1.2rem;
  background: #ff0066;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.3s;
}

.buttons a:hover {
  transform: scale(1.05);
}

.audio-player {
  margin-top: 2rem;
}

.drop-section {
  background: url('mixtape-glitchdrop.png') center/cover;
  border-top: 2px dashed #44ffcc;
}

.drop-img {
  max-width: 400px;
  width: 100%;
  border: 2px solid #ff33aa;
  box-shadow: 0 0 15px #ff33aa;
  margin: 1rem auto;
}

.gallery {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 2rem 0;
}

.gallery img {
  width: 300px;
  border: 2px solid #00ffaa;
  border-radius: 8px;
}

.domains {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.domain {
  padding: 1rem;
  background: #222;
  border-left: 4px solid #00ffaa;
  position: relative;
  cursor: pointer;
}

.domain:hover .lore {
  opacity: 1;
  transform: translateY(0);
}

.lore {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
}

.footer {
  text-align: center;
  background: #111;
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
}

@keyframes glitch {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(30deg); }
}
.hero-logo {
  max-width: 320px;
  width: 80%;
  height: auto;
  display: block;
  margin: 2rem auto;
  filter: drop-shadow(0 0 15px #00ffee);
}
