
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  user-select: none;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #2e2e2e;
  color: white;
  padding-top: 220px;
}
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background-color: black;
  text-align: center;
  overflow: hidden;
  padding-bottom: 10px;
}
.banner {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1536px;
  object-fit: contain;
}
.slogan {
  position: absolute;
  top: 72%; left: 50%;
  transform: translate(-50%, -50%);
  color: red;
  font-size: 16px;
  font-style: italic;
  white-space: nowrap;
  text-shadow: 1px 1px 4px black;
}
.incoming {
  position: absolute;
  top: 85%; right: 20px;
  transform: translateY(-50%) rotate(-2deg) skewX(-1deg);
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  color: #ffff33;
  font-weight: 900;
  text-shadow: 0 0 10px #ff0, 1px 1px 2px black;
  animation: pulseGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 10px #ff0, 1px 1px 2px black; }
  50%      { text-shadow: 0 0 20px #ff0, 0 0 30px #ff0, 1px 1px 2px black; }
}
.content-box {
  width: 80%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  background-color: rgba(0, 64, 0, 0.75);
  border: 2px solid #004400;
  box-shadow: 0 0 20px #000;
  overflow-y: auto;
  text-align: center;
}
.content-box h2 {
  color: #00ff00;
  text-shadow: 1px 1px 2px red;
  margin-bottom: 20px;
}
.content-box a {
  color: #00ff00;
  display: block;
  margin: 10px 0;
  font-size: 18px;
  text-decoration: none;
}
.content-box a:hover {
  color: red;
}
.content-box::-webkit-scrollbar {
  width: 10px;
}
.content-box::-webkit-scrollbar-track {
  background: #111;
}
.content-box::-webkit-scrollbar-thumb {
  background-color: #064406;
  border-radius: 5px;
}
.content-box::-webkit-scrollbar-thumb:hover {
  background-color: #7a0000;
}
footer {
  max-width: 800px;
  margin: 30px auto 20px;
  padding: 15px;
  background-color: rgba(0,0,0,0.6);
  color: #ddd;
  font-size: 12px;
  text-align: center;
  border: 2px solid #7a0000;
  border-radius: 5px;
}
footer a {
  color: #00ff00;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .content-box {
    width: 95%;
    height: auto;
  }
  .slogan {
    font-size: 14px;
    top: 75%;
  }
  .incoming {
    right: 10px;
    font-size: 16px;
  }
  .banner {
    width: 100%;
    height: auto;
  }
  footer {
    width: 95%;
    margin: 20px auto;
  }
}
