body {
  padding-top: 80px; 
  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;
  font-family: Arial, sans-serif;
  padding-bottom: 20%;
  color: white;
}

body::-webkit-scrollbar {
  width: 11px;
}

body::-webkit-scrollbar-track {
  background-color: black !important;
}

body::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 20px;
}

.container {
  text-align: center;
}

hr {
  color: black;
}

.text {
  text-align: center;
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
}
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;
}

.full-changelog-box {
  background: rgba(30, 30, 30, 0.9);
  font-family: monospace;
  font-size: 1rem;
  text-align: center;
  border: 1px solid white;
  border-radius: 0.9375rem;
  margin: 1.25rem auto;
  padding: 1.25rem;
  color: white;
  max-width: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

.fullchangetext {
  transition: color 0.5s ease;
}

.fullchangetext:hover {
  color: cyan;
}

footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 1.25rem 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%);
  z-index: 1;
}

@keyframes slideUp {
  to {
      transform: translateY(0%);
  }
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  color: white;
  text-align: center;
}

.logo-section h1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.social-section {
  display: flex;
  gap: 1.25rem;
}

.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: 3.75rem;
  height: 3.75rem;
}

.info-section p {
  margin: 0;
  font-size: 1rem;
  color: #cccccc;
}

@media only screen and (max-width: 48rem) {
  body {
    padding-bottom: 100%;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
    gap: 0.625rem;
    padding: 0.625rem;
    background-color: black;
  }

  .btn {
    height: 2.5rem;  
    width: 100%;   
    background-color: black;
    border: solid white 0.125rem;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    padding: 0;    
    box-sizing: border-box; 
    overflow: hidden;  
    white-space: nowrap;  
    text-overflow: ellipsis; 
  }
}

@media only screen and (max-width: 48rem) {
  .footer-container {
      flex-direction: column;
      gap: 0.9375rem;
  }
  .social-section {
      justify-content: center;
  }
}

@media only screen and (max-width: 48rem) {
  .footer-container {
      flex-direction: column;
      gap: 0.9375rem;
  }
  .social-section {
      justify-content: center;
  }
}
