/* ================================
   FONTE LOCAL E FUNDO
================================ */
@font-face {
  font-family: 'SkipPro';
  src: url('../fonts/FOT-SkipPro-E.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'SkipPro', monospace;
  background: linear-gradient(135deg,#1a0a0a,#300020,#100010);
  color: #ffb3b3;
  position: relative;
  overflow-x: hidden;
}

/* -----------------------------
   SCANLINE LEVE
------------------------------ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 999;
}

/* ================================
   PLAYER RETRÔ
================================ */
.music-player {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(30,0,20,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #ff4c4c;
  border-radius: 12px;
  box-shadow: 0 0 12px #ff1e1e88;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.album-cover {
  width: 48px;
  height: 48px;
  background-size: cover;
  border: 1px solid #ff4c4c;
  border-radius: 6px;
  box-shadow: 0 0 6px #ff4c4c66;
}

.track-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2em;
}

.track-title { font-weight: bold; font-size: 12px; }
.track-artist { font-size: 10px; opacity: 0.8; }

#playBtn {
  margin-top: 4px;
  background: none;
  border: 1px solid #ff4c4c;
  color: #ffb3b3;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
}

#playBtn:hover { background: #ff4c4c33; }

/* ================================
   MENU VAPORWAVE
================================ */
.menu {
  display: flex;
  gap: 14px;
  padding: 20px;
}

.menu button {
  background: none;
  border: 1px solid #ff4c4c;
  color: #ffb3b3;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s all;
  text-shadow: 0 0 6px #ff1e1e;
}

.menu button:hover {
  background: linear-gradient(90deg, #ff4c4c55, #ff66ff33);
  box-shadow: 0 0 12px #ff4c4c88;
}

/* ================================
   CONTEÚDO
================================ */
.content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8em;
  font-size: 16px;
}

.content h1, .content h2 {
  color: #ff77ff;
  text-shadow: 0 0 8px #ff1e1e, 0 0 12px #ff77ff;
}

.content p {
  color: #ffb3b3;
}

/* ================================
   LINKS
================================ */
a {
  color: #ff66ff;
  text-decoration: none;
  transition: 0.2s all;
}

a:hover {
  color: #ff99ff;
  text-shadow: 0 0 6px #ff66ff;
}

/* ================================
   CARDS / BOXES
================================ */
.card {
  background: rgba(40, 0, 40, 0.6);
  padding: 20px;
  border: 1px solid #ff4c4c;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px #ff4c4c55;
}

/* ================================
   GALERIA
================================ */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.gallery img {
  width: calc(33% - 10px);
  border: 2px solid #ff4c4c;
  border-radius: 6px;
}
