
html, body {
  height: 100%;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  
  background-image: url("Background.png");
  background-size: cover;
  background-position: center;
}


.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}


a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p,
h1,
h2 {
  color: #ffffff;
}

strong {
  font-weight: bold;
  font-size: 1.3em;
}


#loader {
  position: fixed;
  inset: 0;
  background: #01ffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loader img {
  width: 220px;
  animation: loadSequence 2s ease-in-out forwards;
}


.site-header {
  width: 100%;
  text-align: center;
  background: #0d0d0d;
  color: #aaa;
  font-family: 'Inter', sans-serif;
  padding: 16px 20px 24px;
}

.header-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.header-inner img {
  display: block;
  max-width: 100%;
  height: auto;
  padding: 20px 0;
}


.nav-wrapper {
  text-align: center;
  margin: 0;
  padding-bottom: 20px;
}

.nav-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-wrapper li {
  display: inline-block;
  margin: 0 10px;
}

.hero-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

.image-box {
  width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  max-width: 500px;
}


#Stats {
  display: block;
  margin: 30px auto;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  cursor: pointer;
}

#Stats:hover {
  background: #222;
}

.button-link {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  text-decoration: none;
}

.button-link:hover {
  background: #222;
  text-decoration: none;
}

.not-found-page {
  text-align: center;
}


.site-footer {
  position: relative;
  background: #0d0d0d;
  color: #aaa;
  font-family: 'Inter', sans-serif;
  padding: 40px 20px;
}

.footer-container {
  max-width: 900px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: #888;
  text-decoration: none;
  font-size: 13px;
  margin: 4px 0;
}

.footer-col a:hover {
  color: #fff;
  transform: scale(1.05);
}

.image-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.image-col img {
  width: 70px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #222;
  text-align: center;
  font-size: 12px;
  color: #666;
}

.footer-version {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #888;
  font-size: 12px;
  text-decoration: none;
}

.footer-version:hover {
  color: #fff;
}


@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .image-box {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-col {
    justify-content: center;
  }

  .footer-version {
    position: static;
    display: inline-block;
    margin-top: 18px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 10px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.contact-form input[type="submit"] {
  cursor: pointer;
  background: #111;
  border: 1px solid #333;
  margin-top: 10px;
}

.contact-form input[type="submit"]:hover {
  background: #222;
}

    .ticker-bar {
      width: 100%;
      height: 36px;
      background: #111;
      border-top: 3px solid #000;
      border-bottom: 3px solid #000;
      overflow: hidden;
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: slide 18s linear infinite;
    }

    .ticker-track span {
      color: #fff;
      font-size: 18px;
      white-space: nowrap;
      padding: 0 45px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .ticker-bar:hover .ticker-track {
      animation-play-state: paused;
    }

    @keyframes slide {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    h1 {
      text-align: center;
    }

    .issue-list {
      width: min(900px, calc(100% - 24px));
      margin: 0 auto;
      padding: 20px 0 40px;
    }

    .issue-entry {
      margin-bottom: 34px;
      text-align: center;
    }

    .outlined-img {
      display: block;
      width: min(520px, 100%);
      height: auto;
      margin: 0 auto;
      border: 4px solid #000;
    }

    .issue-text {
      max-width: 620px;
      margin: 14px auto 0;
      text-align: center;
    }

    div {
      color: #ffffff;
    }

    a {
      color: #ffffff;
    }
