body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
 
  color: #111;
}

/* GRID */
.top10-container {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

/* CARD */
.top10-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}
.top10-card:hover {
  transform: translateY(-5px);
}

/* CAPA */
.top10-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* TEXTO */
.top10-info {
  padding: 15px;
  text-align: center;
}
.top10-info h3 {
  font-size: 18px;
  margin: 0;
  color: #0050c8;
}
.top10-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #444;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.modal-content {
  background: #000;
  padding: 10px;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
}
.modal-close {
  text-align: right;
  margin-bottom: 8px;
}
.modal-close button {
  background: #fff;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: bold;
}