body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #6b4f3f; /* Dark brown background */
  color: #e8dcc8; /* Light beige text color to contrast with dark background */
  text-align: center;
}

header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 2px solid #e8dcc8; /* Light beige border to contrast with the dark background */
  background-color: #8c6e58; /* Muted brown header background */
}

header img {
  height: 50px;
}

#logo-name {
  font-size: 24px;
  color: #e8dcc8;
  font-weight: bold;
  margin-left: 10px;
}

nav {
  display: flex;
  gap: 15px;
  margin-left: auto;
}

nav a {
  color: #e8dcc8;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #e8dcc8;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #e8dcc8;
  color: #6b4f3f;
}

#settings-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

#settings-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #e8dcc8;
}

#cloaks {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cloak-button {
  background-color: #8c6e58;
  color: #e8dcc8;
  border: 2px solid #e8dcc8;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s, color 0.3s;
}

.cloak-button img {
  width: 24px;
  height: 24px;
}

.cloak-button:hover {
  background-color: #e8dcc8;
  color: #6b4f3f;
}

#home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

#home-content h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #e8dcc8;
}

#about-blank-btn {
  background-color: #8c6e58;
  color: #e8dcc8;
  border: 2px solid #e8dcc8;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#about-blank-btn:hover {
  background-color: #e8dcc8;
  color: #6b4f3f;
}

#game-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.game {
  width: 200px;
  text-align: center;
  border: 2px solid #e8dcc8;
  border-radius: 10px;
  padding: 10px;
  background-color: #8c6e58;
  transition: transform 0.3s, background-color 0.3s;
  color: #e8dcc8;
  text-decoration: none;
}

.game img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.game:hover {
  transform: scale(1.05);
  background-color: #e8dcc8;
  color: #6b4f3f;
}

.game span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

#game-display {
  display: none;
  text-align: center;
  margin-top: 20px;
}

#game-frame-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
  background-color: #6b4f3f;
}

#game-buttons {
  margin-top: 10px;
}

#game-buttons button {
  padding: 10px 20px;
  margin: 5px;
  background-color: #8c6e58;
  color: #e8dcc8;
  border: 2px solid #e8dcc8;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#game-buttons button:hover {
  background-color: #e8dcc8;
  color: #6b4f3f;
}

#apps-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.apps {
  width: 200px;
  text-align: center;
  border: 2px solid #e8dcc8;
  border-radius: 10px;
  padding: 10px;
  background-color: #8c6e58;
  transition: transform 0.3s, background-color 0.3s;
  color: #e8dcc8;
  text-decoration: none;
}

.apps img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.apps:hover {
  transform: scale(1.05);
  background-color: #e8dcc8;
  color: #6b4f3f;
}

.apps span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

#apps-display {
  display: none;
  text-align: center;
  margin-top: 20px;
}

#apps-frame-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
  background-color: #6b4f3f;
}

#apps-buttons {
  margin-top: 10px;
}

#apps-buttons button {
  padding: 10px 20px;
  margin: 5px;
  background-color: #8c6e58;
  color: #e8dcc8;
  border: 2px solid #e8dcc8;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#apps-buttons button:hover {
  background-color: #e8dcc8;
  color: #6b4f3f;
}
