/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #000;
  color: #0f0;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Sticky Top Bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #111;
  display: flex;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

/* Invisible box in the top-left corner */
.top-bar-box {
  position: absolute;
  left: 10px; /* Align it to the left */
  top: 50%; /* Vertically center */
  transform: translateY(-50%); /* Fine-tune centering */
  width: 20px;
  height: 20px;
  background-color: #111; /* Match top bar color */
  text-decoration: none; /* Remove link styling */
}

/* Buttons in Top Bar */
.buttons {
  display: flex;
  gap: 1rem;
}

.button {
  color: #0f0;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: 2px solid #0f0;
  border-radius: 5px;
  transition: 0.3s;
}

.button:hover {
  background-color: #0f0;
  color: #000;
}

/* Content Section */
.content {
  background-color: #111;
  color: #0f0;
  padding: 2rem;
  text-align: center;
  height: 280px; /* Adjust the height of the section as needed */
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1rem;
  line-height: 1.8;
}

/* Responsive Design with Media Queries */
@media (max-width: 768px) {
  .button {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .content h1 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .button {
    font-size: 0.8rem;
    padding: 0.4rem;
  }

  .content h1 {
    font-size: 1.2rem;
  }

  .content p {
    font-size: 0.8rem;
  }

  .hero {
    height: 300px;
    padding: 1rem;
  }
}

/* Changelog Section */
.changelog {
  background-color: #111;
  color: #0f0;
  padding: 2rem;
  text-align: center;
  height: 750px;
}

.changelog h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.changelog ul {
  list-style-type: none;
  padding: 0;
}

.changelog li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Games Section */
.games {
  text-align: center;
  padding: 2rem;
  background-color: #111;
  color: #0f0;
}

.games h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 5 columns */
  gap: 3rem;
}

.game-box {
  display: block;
  width: 150px;
  height: 150px;
  background-color: #222;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  color: #0f0;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

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

.game-box p {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.game-box:hover {
  background-color: #0f0;
  color: #000;
}

/* Responsive Game Boxes (Mobile) */
@media (max-width: 768px) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

@media (max-width: 480px) {
  .game-grid {
    grid-template-columns: 1fr; /* 1 column */
  }
}

.suggestions {
  background-color: #111;
  color: #0f0;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.suggestions h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.suggestions p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

input, textarea {
  width: 100%;
  padding: 0.8rem;
  background-color: #222;
  border: 1px solid #0f0;
  color: #0f0;
  font-size: 1rem;
  border-radius: 5px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0a0;
}

button {
  background-color: #0f0;
  color: #000;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border: 2px solid #0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0a0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .suggestions {
    width: 90%;
    padding: 1.5rem;
  }
}
