/* Estilo base inspirado en Nothink is Forever - noventero, grunge, elegante */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Staatliches&family=IBM+Plex+Mono&display=swap');

body {
  font-family: 'IBM Plex Mono', monospace;
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 1rem;
}

.page {
  max-width: 960px;
  margin: auto;
  padding: 1rem;
  border-left: 4px solid #c10000;
  border-right: 4px solid #c10000;
}

.title {
  font-family: 'Staatliches', sans-serif;
  font-size: 2.8rem;
  text-align: center;
  color: #c10000;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.form-table {
  width: 100%;
  border-collapse: collapse;
}

.form-table th,
.form-table td {
  padding: 1rem;
  vertical-align: top;
  text-align: center;
}

label {
  display: block;
  cursor: pointer;
  border: 2px dashed #999;
  padding: 1rem;
  border-radius: 8px;
  background: #f5f5f5;
  transition: all 0.3s ease;
  font-family: 'IBM Plex Mono', monospace;
}

label:hover {
  background-color: #e0e0e0;
  border-color: #c10000;
}

.image {
  width: 100%;
  max-width: 90px;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.points {
  font-weight: bold;
  font-size: 1.5rem;
  color: #c10000;
  font-family: 'Orbitron', sans-serif;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 2rem 0;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  padding: 2rem 0;
  font-family: 'IBM Plex Mono', monospace;
}

/* Responsive styles */
@media (max-width: 768px) {
  .form-table {
    display: block;
    overflow-x: auto;
  }

  .form-table tr,
  .form-table td,
  .form-table th {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .title {
    font-size: 2rem;
  }

  .points {
    font-size: 1.2rem;
  }

  label {
    padding: 1rem 0.5rem;
  }
}
.logo-container {
  text-align: center;
  margin: 2rem auto;
}

.logo-container img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.3));
}
