@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Cossette+Titre:wght@400;700&family=Michroma&family=Miltonian+Tattoo&family=Press+Start+2P&family=Story+Script&display=swap');

html, body {
  height: 100%;
  padding-top: 0px; /* espaço entre o mp3 e o conteúdo*/
  font-family: 'Press Start 2P', 'Arial', sans-serif;
  cursor: url('nat946.ani'), auto;
  background-image: url('2793633wte4r9ihz3.gif'); /*laterais*/
  background-size: auto; /* faz a imagem das laterais cobrir a tela inteira */
  padding: 0px;
  scroll-behavior: smooth;
}

/* --- MP3 --- */
.music-player {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 20px;
  background: rgb(6, 6, 6);
  backdrop-filter: blur(8px);
  padding: 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

.controls button {
  background: none;
  border: 0;
  font-size: 18px;
  cursor: url('spe443.cur'), auto;
  padding: 0px 50px;
  color: aliceblue;
}

  /* --- Ecrã estilo TV antiga --- */
.screen {
  flex: 1;
  max-width: 400px;
  height: 20px;
  background: #000;
  color: rgb(255, 0, 166);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 12px rgb(113, 8, 88), 0 0 10px rgba(255, 0, 162, 0.663);
  display: flex;
  align-items: center;
}

#visualizer {
  width: 100%;
  height: 60px;
  background: #111;
  display: block;
}

  /* Texto que corre */
.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll 12s linear infinite;
  font-family: monospace;
  font-size: 15px;
  letter-spacing: 1px;
  text-shadow: 0 0 4px rgb(255, 0, 212), 0 0 10px rgb(255, 0, 212);
}

  /* Scanlines (efeito de TV antiga) */
.screen::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0px,
    rgba(0,0,0,0.2) 2px,
    transparent 2px,
    transparent 4px
);
 pointer-events: none;
 animation: flicker 0.2s infinite;
}

  /* --- Animações --- */
  @keyframes scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-100%); }
  }

  @keyframes flicker {
      0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
      }
      20%, 24%, 55% {
        opacity: 0.6;
      }
  }

.right {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    width: 40%;
}

#track-time { font-size: 12px; color: #ff0099; white-space: nowrap; font-family: "Miltonian Tattoo"; }

#progress {
  flex: 1;
  appearance: none;
  height: 4px;
  background: #ff0099;
  border-radius: 2px;
  outline: none;
}

#progress::-webkit-slider-thumb {
  appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ff0099; /* sombra da bolinha*/
  cursor: pointer;
  box-shadow: 0 0 6px #ff0099;
}

#progress::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #0f0;
  cursor: pointer;
  box-shadow: 0 0 6px #0f0;
}

  /* Barra */
#progress {
  flex: 1;
  appearance: none;
  height: 4px;
  background: #ff0099;
  border-radius: 2px;
  outline: none;
}

#progress::-webkit-slider-thumb {
  appearance: none;
  height: 10px;
  width: 10px;
  background: #ff0099;
  border-radius: 50%;
  cursor: pointer;
}

#progress::-moz-range-thumb {
  height: 10px;
  width: 10px;
  background: #ff0099;
  border-radius: 50%;
  cursor: pointer;
}

/* Jump Buttons */
.jump-btnmovies {
  position: fixed;       /* fixa o botão na tela */
  bottom: 300px;          /* distância do fundo */
  right: 20px;           /* distância da direita */
  z-index: 9999;         /* fica por cima de tudo */
  width: 200px;           /* ajusta o tamanho */
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.3s;
}

.jump-btnseries {
  position: fixed;       /* fixa o botão na tela */
  bottom: 200px;          /* distância do fundo */
  right: 20px;           /* distância da direita */
  z-index: 9999;         /* fica por cima de tudo */
  width: 200px;           /* ajusta o tamanho */
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.3s; 
} 

.jump-btnanime {
  position: fixed;       /* fixa o botão na tela */
  bottom: 400px;          /* distância do fundo */
  right: 20px;           /* distância da direita */
  z-index: 9999;         /* fica por cima de tudo */
  width: 200px;           /* ajusta o tamanho */
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.3s;
}

.jump-btnseries:hover {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 10px #ff0099);
}

.jump-btnmovies:hover {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 10px #ff0099);
}

.jump-btnanime:hover {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 10px #ff0099);
}

/* Container */
.container {
  max-width: 1000px;
  margin: 20px auto; /* espaço entre o container e o mp3 */
  background: #000;
  padding: 0px;
  border: 3px solid #ff0099; 
  box-shadow: 0 0 20px #ff0099;
}

/* Menu de navegação */
.navbar {
  height: 100px;
  width: 1000px;
  background-image: url('headertvmore.gif');
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  z-index: 10;
}

.navbar ul {
  list-style: none;
  margin: 10px;
  padding: 30px; /*centra os botões na vertical*/
}

.navbar li {
  display: inline-block;
  margin: 0 20px; /*espaço entre os botões*/
}

.navbar a {
  color: rgb(2, 2, 2); /* cor das letras */
  text-decoration: none;
  font-family: "Miltonian Tattoo";
  font-size: 20px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 5px; /* curvatura dos cantos */
  transition: all 0.3s;
}

.navbar a:hover {
  background: black;
  color: #ffffff;
  border: 2px solid white;
  box-shadow: 0 0 10px white;
}

.navbar a.active {
  background: black;
  color: #ff0099;
  border: 2px solid white;
}

/* Header */
header h1 {
  font-family:"Miltonian Tattoo", 'Courier New', Courier, monospace ;
  font-size: 50px;
  color: #040404;
  background: #ff0099;
  padding: 20px;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 0px;
}

header p {
  font-family: "Miltonian Tattoo", 'Courier New', Courier, monospace;
  color: #fff;
  padding: 20px;
  font-size: 30px;
  text-align: center;
  padding-bottom: 0px;
}

.spoiler {
  color: #ff0099;
}

/* Colunas */
.reviews-container {
  width: 1000px; /* escolhe a largura do conteúdo */
  margin: 10px auto; /* CENTRA o conteúdo */
  display: flex;
  flex-direction: column;
  gap: 10px; /* espaço entre reviews */
  justify-content: center;
  align-items: flex-start;
  border: 4px #ffffff;
}

/* Cada secção (coluna) */
section {
  flex: 1;
  border: 4px solid rgb(0, 0, 0);
  padding: 20px;
  background-color: #000000;
  min-height: auto;
}

section h2 { /* título das secções */
  font-family: "Miltonian Tattoo";
  background: #ff0099;
  color: rgb(0, 0, 0);
  text-align: center;
  font-size: 30px;
  padding: 25px;
  margin-bottom: 20px;
}

/* opcional — em ecrãs pequenos, as secções ficam empilhadas */
@media (max-width: 900px) {
  .sections-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.review {
  display: flex;
  gap: 20px;
  background: #000000;
  padding: 20px;
}

.poster { /* info sobre o filme/série */
  font-family:  "Miltonian Tattoo", 'Courier New', Courier, monospace;
  width: 200px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.poster img {
  height: 250px;
  width: 200px;
  border: 2px solid hotpink;
}

.poster .rating {
  font-size: 20px;
  margin-top: 8px;
  color: rgb(252, 252, 252);
}

.text h2 { /* título do filme/série */ 
  font-family: "Miltonian Tattoo", 'Press Start 2P', cursive;
  color: #ffffff;
  font-size: 30px;
  padding: 5px;
}

.text p { /* opinião do filme/série */
  font-family: 'Courier New', Courier, monospace;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}

