/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main image */
.main-image {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust height as needed */
  background-size: cover; /* Cover the screen with the image */
  background-position: center; /* Center the background image */
  overflow: hidden; /* Hide overflow to prevent scrolling */
  overflow: hidden; /* Hide overflow to prevent scrolling */
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Faint black overlay */
}

/* Content container */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-family: 'Archivo Black', sans-serif; /* Set default font to Russo One */
}

@font-face {
  font-family: 'Archivo Black';
  src: url('assets/ArchivoBlack.ttf') format('truetype'); /* Adjust the path based on your folder structure */
  font-weight: normal;
  font-style: normal;
}

/* Game Logo */
.logo img {
  width: 50%; /* Adjust size as needed */
  height: 50%;
}

/* Tagline */
.tagline {
  margin-top: 20px;
  font-size: 20px;
}

/* CTA buttons */
.cta-buttons {
  margin-top: 30px;
}

.button {
  display: inline-block;
  margin: 0 10px;
}

.button img {
  width: 250px; /* Adjust size as needed */
  height: auto;
}

/* Footer */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  font-family: 'Archivo Black', sans-serif;
  text-align: center; /* Center-align the content */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-links {
  display: inline-block; /* Display links inline */
}

.privacy-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

/* Copyright */
.copyright {
  color: white;
  display: inline-block; /* Display copyright info inline */
}

.copyright span {
  font-size: 20px;
  margin-right: 5px;
}


/* Support email */
.support-email {
  margin-top: 15px;
  text-align: center;
  color: white;
  font-family: 'Archivo Black', sans-serif; /* Set font to match content */
}

.support-email p {
  margin: 0;
  font-size: 16px; /* Adjust size as needed */
}

.support-email a {
  color: white;
  text-decoration: underline;
}