* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0a0a0a;
  color: white;
  padding: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo {
  color: #4cff4c;
  font-weight: bold;
  font-size: 20px;
}

.hero {
  background: linear-gradient(90deg, #000, #003d1f);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.hero span {
  color: #4cff4c;
}

.hero button {
  margin-top: 20px;
  background: #4cff4c;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.tag {
  color: #4cff4c;
}

.subtitle {
  color: gray;
  margin-top: 5px;
}

.section-title {
  margin-bottom: 15px;
  font-size: 18px;
}

.styles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background: #111;
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.card:hover {
  transform: scale(1.05);
  border: 2px solid #4cff4c;
}

.active {
  border: 2px solid #4cff4c;
  box-shadow: 0 0 15px rgba(76,255,76,0.5);
}

.card p {
  color: gray;
  font-size: 12px;
}

.bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.featured {
  background: #111;
  padding: 25px;
  border-radius: 20px;
}

.badge {
  color: #a855f7;
}

.ranking {
  background: linear-gradient(180deg, #002b14, #001a0d);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

.ranking h1 {
  font-size: 40px;
  color: #4cff4c;
}

.ranking button {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #4cff4c;
  background: transparent;
  color: #4cff4c;
  cursor: pointer;
}

@media (max-width: 768px) {
  .bottom { grid-template-columns: 1fr; }
}

/* Lógica de juego */
.hidden {
  display: none !important;
}

.option-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #333;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  transition: 0.3s;
  color: white;
}

.option-card:hover {
  border-color: #4cff4c;
}

#options-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 30px;
}