@import url("https://fonts.googleapis.com/css2?family=Special+Elite&family=Courier+Prime:wght@400;700&display=swap");

:root {
  --bg: #0e0e0e;
  --fg: #e8dcc0;
  --amber: #e08a2e;
  --red: #c73a2e;
  --mustard: #d4a843;
  --card: #1a1a1a;
  --border: #333;
}

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

body {
  font-family: "Courier Prime", "Courier New", monospace;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }

/* -------- SECTION TITLES -------- */
.section-title {
  font-family: "Special Elite", cursive;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--amber);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: rotate(-0.5deg);
}

/* -------- HERO -------- */
.hero {
  position: relative;
  max-width: 800px;
  max-height: 250px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(to top, var(--bg) 0%, var(--bg) 10%, transparent 50%);
}

.hero h1 {
  font-family: "Special Elite", cursive;
  font-size: clamp(3rem, 10vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg);
  line-height: 1;
  transform: rotate(-1deg);
}

.tagline {
  font-size: 1.1rem;
  color: var(--amber);
  margin-top: 0.4rem;
  font-style: italic;
  text-align: center;
}

.lema {
  font-size: 0.95rem;
  color: var(--mustard);
  margin-top: 0.2rem;
  text-align: center;
}

/* -------- SINGLE -------- */
.single {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.single-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.single-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 4px;
  border: 2px solid var(--border);
  background: #000;
  object-fit: contain;
}

.single-info h3 {
  font-family: "Special Elite", cursive;
  font-size: 1.6rem;
  color: var(--fg);
}

.single-info p {
  line-height: 1.5;
  margin-top: 0.4rem;
}

.single-info .credits {
  font-size: 0.85rem;
  color: #999;
}

/* -------- PLAYER -------- */
.player-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

.cassette {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.now-playing {
  font-family: "Special Elite", cursive;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
  min-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--amber);
}

.controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.controls button {
  font-size: 1.4rem;
  background: transparent;
  border: 2px solid var(--fg);
  color: var(--fg);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.controls button:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--bg);
}

.progress-wrap {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--amber);
  transition: width 0.1s linear;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: #777;
}

.playlist {
  list-style: none;
  margin-top: 1rem;
}

.playlist li {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.playlist li:hover {
  background: var(--card);
}

.playlist li.active {
  font-weight: 700;
  color: var(--amber);
  background: var(--card);
}

/* -------- A BANDA -------- */
.banda {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.membros {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 500px) {
  .membros { grid-template-columns: 1fr; }
}

.membro img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid var(--border);
  filter: saturate(0.8);
  transition: filter 0.3s;
}

.membro img:hover {
  filter: saturate(1);
}

.membro h3 {
  font-family: "Special Elite", cursive;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: var(--fg);
}

.membro p {
  font-size: 0.85rem;
  color: var(--mustard);
}

.quinto {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

/* -------- APARIÇÕES -------- */
.aparicoes {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.aparicoes-intro {
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.timeline {
  list-style: none;
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
}

.timeline li {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--bg);
}

.timeline .data {
  display: block;
  font-size: 0.8rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.timeline strong {
  display: inline;
  font-family: "Special Elite", cursive;
  font-size: 1.1rem;
}

.timeline li span:last-child {
  display: block;
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 0.2rem;
}

.timeline .proxima {
  opacity: 0.6;
}

/* -------- SOBRE -------- */
.sobre {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.sobre p {
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

/* -------- GALERIA -------- */
.galeria {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.galeria-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid var(--border);
  filter: saturate(0.7);
  transition: filter 0.3s, transform 0.3s;
}

.galeria-grid img:hover {
  filter: saturate(1);
  transform: scale(1.02);
}

.foto-credito {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #666;
}

/* -------- FOOTER -------- */
footer {
  margin-top: auto;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  color: #777;
}

footer a {
  color: var(--amber);
  text-decoration: none;
}

footer a:hover {
  color: var(--red);
}

.sep {
  margin: 0 0.5rem;
}
