@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
@font-face {
  font-family: 'MyFont';
  src: url('/Fighting.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/* Above is the Font Awesome CSS to display the Pause and Play buttons! */

body {
  padding-top: 10px;
  margin: 0;
  font-family: 'MyFont';
  color: black;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(5px);
  z-index: -1;
}

/* ===== AUTOPLAY ===== */
.buttondiv {
  cursor: pointer;
  position: fixed;
  height: 35px;
  bottom: 5px;
  width: 35px;
  left: 5px;
  color: white;
  z-index: 1;
}

.autoplayer button {
  background: black;
  border: 2px solid red;
  border-radius: 50%;       /* Rund! */
  width: 60px;
  height: 60px;
  color: white;
  font-size: 27px;
  cursor: pointer;
  position: fixed;
  bottom: 5px;
  left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px red;   /* Optional: roter Glow-Effekt */
  transition: 0.3s ease;
}

.autoplayer button:hover {
  background: red;
  border-color: black;
  box-shadow: 0 0 8px black;
  border: 2px solid black;
}

.autoplayer a {
  background: black;
  border: 2px solid red;
  color: white;
  text-decoration: none;
  padding: 9px 18px;
  position: fixed;
  font-size: 21px;
  bottom: 5px;
  left: 75px;
  z-index: 1;
  border-radius: 12px;       /* leicht abgerundete Ecken */
  box-shadow: 0 0 9px red;   /* optional: Glow-Effekt wie beim Button */
  font-family: 'MyFont', sans-serif; /* falls du custom font nutzt */
  transition: 0.3s ease;
}


.banner {
  background-color: black;
  color: red;
  margin-top: 0px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  font-family: 'MyFont', sans-serif;
  letter-spacing: 2px;
  box-shadow: 0 4px 10px darkred; /* Dark red shadow underneath */
  white-space: nowrap;
  overflow: hidden;
  z-index: 10;
}

.content-box {
  background-color: rgba(0, 0, 0, 0.7); /* dark + transparent */
  color: white;
  padding: 20px;
  margin: 10px auto;
  width: 80%;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2); /* subtle red glow */
  font-family: 'MyFont', sans-serif;
  backdrop-filter: blur(2px); /* optional: glassy blur effect */
}