body {
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(179.4deg, rgb(12, 20, 69) -16.9%, rgb(71, 30, 84) 119.9%);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  color: white;
  animation: fadeIn 2s ease-in-out;
}

.cheats-container {
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  border-radius: 15px;
  padding: 20px;
  margin-top: 90px;
  max-width: 1200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.nav {
  background-color: black;
  width: 100%;
  position: fixed; 
  top: 0; 
  left: 0;
  z-index: 1;
}

.nav-bar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  background-color: black; 
  padding: 10px 20px; 
  margin: 0 auto; 
  box-sizing: border-box;
  flex-wrap: wrap;
}

.brand {
  color: white;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

.brand:hover {
  text-decoration-line: underline;
}

.nav-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; 
}

.btn {
  border: solid white 2px;
  color: white; 
  text-decoration: none; 
  padding: 5px 10px;
  border-radius: 5px; 
  display: inline-block; 
  max-width: 150px;
  overflow: hidden; 
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1; 
}

.btn:hover {
  background-color: gray; 
  box-shadow: 1px 1px 15px;
}

.btn .icon {
  margin-left: 8px; 
}

.btn:hover .icon { 
  transform: scale(1.1); 
}

.game-count {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: bold;
}

.cheats-container:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.cheat-categories {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.cheat-card {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cheat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.cheat-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.cheat-card ul {
  list-style-type: none;
  padding: 0;
}

.cheat-card li {
  margin: 10px 0;
}

.code {
  font-weight: bold;
  color: lightgreen;
}

footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  width: 100%;
  position: fixed; 
  bottom: 0;
  left: 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  animation: slideUp 1s ease-in-out forwards;
  transform: translateY(100%);
}

@keyframes slideUp {
  to {
      transform: translateY(0%);
  }
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
  text-align: center;
}

.logo-section h1 {
  font-size: 1.8em;
  font-weight: bold;
  margin: 0;
}

.social-section {
  display: flex;
  gap: 20px;
}

.social-section a {
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-section a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.social-section img {
  width: 60px;
  height: 60px;
}

.info-section p {
  margin: 0;
  font-size: 1em;
  color: #cccccc;
}
