body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
}

.section {
  width: 100vw;
  height: 100vh;
}

.text-ctn {
  margin: 18px;
}

.marquee {
  width: 360px;
  border-bottom: 3px solid #000000;
  background-color: #000000;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-text {
  display: inline-block;
  width: 260px;
  font-size: 24px;
  font-weight: bold;
  color: #ff0000;
  animation: scroll 6s linear infinite;
}

.marquee-text:before {
  content: "ACCESS DENIED";
}

@keyframes scroll {
  100% {
    transform: translateX(-100%);
  }
}

#sec-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff0000;
}

#ctn {
  margin-top: 40px;
  width: 360px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
}

#forbidden {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid #000000;
  border-radius: 8px;
  font-size: 32px;
  animation: flash 1s linear infinite;
}

@keyframes flash {
  50% {
    opacity: 0;
  }
}

/* --- Bouton cohérent avec le style --- */
.access-btn,
.access-btn:link,
.access-btn:visited {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 8px;
  background-color: #ff0000;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-decoration: none; /* enlève soulignement */
  transition: all 0.3s ease;
}

.access-btn:hover,
.access-btn:active {
  background-color: #000;
  color: #ff0000;
  cursor: pointer;
}
