/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(200deg, #000000 10%, #ff0000 200%);
  color: #fff;
  text-align: center;
  padding: 20px;
}


/* Logo estilizada com fonte Netflix e fundo interativo */
.logo {
  position: absolute; /* ou use fixed, se quiser que fique sempre visível ao rolar */
  top: 20px;
  left: 20px;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  padding: 10px 30px;
  border-radius: 12px;
  background: linear-gradient(270deg, #ff0000, #990000, #cc0000);
  background-size: 600% 600%;
  animation: netflixGlow 8s ease infinite;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  z-index: 1000; /* garante que fique por cima de outros elementos */
}


@keyframes netflixGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Imagem principal */
.main-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}


/* Headline */
.headline {
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0;
}

/* Alerta */
.alert {
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  margin: 15px 0;
}

/* Descrição */
.description {
  font-size: 1.2rem;
  margin: 15px 0;
}

.timer {
  margin: 20px 0;
  text-align: center;
}

.label {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

#countdown {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  padding: 20px 40px;
  border-radius: 20px;
  display: inline-block;

  background: linear-gradient(270deg, #c8d114, #ffff00);
  background-size: 400% 400%;
  animation: gradientBackground 8s ease infinite;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



/* Botão */
.btn {
  display: inline-block;
  margin: 25px 0;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #0088cc, #00c6ff);
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg'), 
                    linear-gradient(135deg, #0088cc, #00c6ff);
  background-repeat: no-repeat;
  background-position: 10px center, center;
  background-size: 20px 20px, 200% 200%;
  padding-left: 50px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-position 0.5s, background-size 0.5s;
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
  animation: pulse 2s infinite ease-in-out;
}

.btn:hover {
  background-position: 10px center, right center;
  background-size: 20px 20px, 250% 250%;
  animation: none; /* desativa o pulso ao passar o mouse, foco na interação */
}

/* Animação de pulso */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.5);
  }
}



/* Rodapé */
.footer {
  margin-top: 30px;
  font-size: 1rem;
  color: #aaa;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }

  .headline {
    font-size: 1.6rem;
  }

  .description,
  .alert {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 20px;
  }

  #countdown {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.8rem;
  }

  .headline {
    font-size: 1.4rem;
  }

  .description,
  .alert {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  #countdown {
    font-size: 1.3rem;
  }
}

/* Título da seção de plataformas */
.platform-title {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #fff;
}

/* Grid de cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

/* Estilo dos cards */
.card {
  background-color: #ff0000;
  color: #ffffff;
  font-weight: bold;
  border-radius: 16px;
  padding: 40px 10px;
  font-size: 1.1rem;
  box-shadow: 0 0 10px #000000;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.red {
  color: red;
}

