body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
  background-color: #1b2838;
  font-family: 'Roboto', sans-serif;
  color: #c1c1c1;
  position: relative;
  overflow: hidden;
}

.steam-header {
  background-color: rgba(42, 47, 58, 0.0);
  color: white;
  text-align: center;
  padding: 10px 0;
}

.container {
  text-align: center;
  background-color: rgba(42, 47, 58, 0.0);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin: 20px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.site-title {
  font-size: 24px;
  margin: 0;
}

.game-title {
  font-size: 36px;
  color: #66c0f4;
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.button {
  padding: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: none;
  border-radius: 5px;
  user-select: none;
}

#left-button, #right-button {
  background-color: #384552;
  color: #c1c1c1;
}

#middle-button {
  background-color: #66c0f4;
  color: #171a21;
  padding: 25px;
}

#additional-buttons-container-left,
#additional-buttons-container-right {
  display: flex;
  gap: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

#additional-buttons-container-left.show {
  max-height: 100px;
  opacity: 1;
}

#additional-buttons-container-right.show {
  max-height: 100px;
  opacity: 1;
}

#windows-button, #android-button, #option1-button, #option2-button, #option3-button {
  flex: 1;
}

.button.pop {
  transform: scale(1.1);
}

.coming-soon-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.steam-footer {
  background-color: #171a21;
  color: white;
  text-align: center;
  padding: 10px 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.redd.it/86yagye25g841.png') center/cover no-repeat fixed;
  pointer-events: none;
  z-index: -1;
}


.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover {
  color: #000;
}

/* Existing styles remain unchanged */

body {
  /* Existing body styles */

  /* New styles for mobile devices */
  padding: 10px;
}

.container {
  /* Existing container styles */
  margin: 10px;
}

.button {
  /* Existing button styles */
  font-size: 16px; /* Adjust font size for mobile */
}

.popup-content {
  /* Existing popup content styles */
  width: 100%; /* Make the popup content full width on mobile */
}

@media screen and (max-width: 600px) {
  .button-container {
    /* Adjust button container styles for mobile */
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    /* Additional styles for mobile buttons */
    margin-bottom: 10px;
  }

  .popup-content {
    /* Additional styles for mobile popup content */
    width: 90%;
    max-width: 300px;
  }
}

