:root {
  --borde: #c9a959;
  --titulo: #fff6e0;
  --fondo: #fff;
  --texto: #222;
}

body {
  font-family: 'Orbitron', Arial, sans-serif;
  padding: 24px;
  margin: 0;
  background: var(--fondo);
  color: var(--texto);
}

/* ===== Tabla PUBG ===== */
.tattoo-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--borde);
  table-layout: fixed;
  background: #fafafa;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.tattoo-table thead th {
  background: linear-gradient(180deg, #f7d77b, #c9a959);
  border: 1px solid var(--borde);
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 1px;
}

.tattoo-table tbody td {
  border: 1px solid var(--borde);
  padding: 10px;
  vertical-align: middle;
  height: 45px;
  text-align: center;
  font-weight: 500;
}

/* Columnas */
.name-col { width: 35%; font-weight: 700; }
.preview-col { width: 20%; }
.col-ghost { width: 6.428%; }

/* Bloques de color */
.color-block {
  height: 30px;
  width: 100%;
  border-radius: 3px;
  background: #ddd;
  border: 1px solid #bbb;
}

/* Hover imagen */
.mostrar_img img {
  display: none;
  position: absolute;
  transform: translate(-105%, -40%);
  z-index: 10;
  max-width: 120px;
  border: 2px solid var(--borde);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
}
.mostrar_img:hover img {
  display: block;
}

/* Título */
.title {
  text-align: center;
  font-weight: 900;
  padding: 14px 0;
  border: 2px solid var(--borde);
  margin-bottom: 8px;
  background: linear-gradient(90deg, #f7d77b, #c9a959, #f7d77b);
  color: #222;
  font-size: 18px;
  letter-spacing: 2px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .tattoo-table, .tattoo-table thead, .tattoo-table tbody, .tattoo-table tr, .tattoo-table td, .tattoo-table th {
    display: block;
  }
  .tattoo-table thead th {
    width: 100%;
  }
}

/* ===== Dark Mode PUBG ===== */
body.dark-mode {
  background: #121212;
  color: #eee;
}
body.dark-mode .tattoo-table {
  background: #1e1e1e;
  border-color: #d4af37;
}
body.dark-mode .tattoo-table thead th {
  background: linear-gradient(180deg, #d4af37, #8b6f25);
  color: #000;
}
body.dark-mode .title {
  background: linear-gradient(90deg, #d4af37, #8b6f25, #d4af37);
  color: #000;
}

    