body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #eee;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 3em;
  color: #e0e0ff;
  text-shadow: 0 0 8px rgba(160, 0, 255, 0.5);
  font-family: 'Rajdhani', sans-serif;
}

.title-about {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 10vh;
  padding-top: 24vh;
}

.menu-top {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 50vh;
}

.intro-text {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.content-box {
  width: 100%;
  max-width: 800px;  /* 1024px de base */
  background: rgba(20, 20, 30, 0.7);
  border: 2px solid #222;
  border-radius: 8px;
  padding: 4vh 5vw;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 24px;
  color: #88f;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.game {
  margin-top: 20px;
}

.game h3 {
  font-size: 20px;
  color: #FF69B4;
  margin-bottom: 5px;
}

.game p {
  margin-left: 10px;
  color: #bbb;
}

.back-link {
  text-align: center;
  margin-top: 50px;
}

.back-link a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #444;
  padding: 6px 12px;
  border-radius: 4px;
  transition: 0.2s;
}

.back-link a:hover {
  color: white;
  border-color: white;
}

.menu-button, select.menu-button {
  background: #1a1a1a;
  color: #e0e0ff;
  font-size: 14px;
  font-family: 'Rajdhani', sans-serif;
  padding: 10px 24px;
  border: 2px solid white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(110, 0, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.menu-button:hover, select.menu-button:hover {
  border-color: white;
  box-shadow: 0 0 14px rgba(200, 0, 255, 0.7);
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
}


footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #666;
  border-top: 1px solid #111;
  position: fixed; 
  bottom: 0; 
  width: 100%;
}