
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: #0d0d0dc3;
  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;
}


.nav-wrapper {
  text-align: center;
  margin: 0;
}

.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: #0d0d0dc3;
  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 #0d0d0dc3;
  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;
}
