body {
  user-select: none;
  margin: 0;
  font-family: 'Caveat';
  background: linear-gradient(to bottom, #a52a3c, #1a0b0e);
  color: #fcd97b;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  /* importante */
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  cursor: url('cursors/cursor.cur'), auto;
}

body::before {
  background: url('img/roxy.png') no-repeat center center;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/background_sperposicion.png') no-repeat center center;
  background-size: cover;
  filter: brightness(0);
  /* Cambia a negro */
  opacity: 0.2;
  /* podés ajustar la opacidad */
  z-index: 0;
  pointer-events: none;
  /* para que no bloquee clics */
}

.container {
  position: relative;
  /* para estar sobre la imagen */
  z-index: 1;
  /* encima del ::before */
  margin: 0.5rem;
  text-align: center;
  padding: 1rem;
  max-width: 400px;
  width: 90%;
  background: linear-gradient(to bottom, #1a0b0e49, #a52a3d4e);
  background-color: rgba(26, 11, 14, 0.60);
  border: 3px solid #fcd97b;
  border-radius: 20px;
  box-shadow: 0 0 10px #fcd97b;
}

img {
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
}

a {
  -webkit-user-drag: none;
  user-drag: none;
}

a,
button {
  cursor: url('cursors/cursorHover.cur'), pointer;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fcd97b;
  box-shadow: 0 0 10px #fcd97b;
}

.title {
  font-size: 2.0rem;
  color: #fcd97b;
  margin: 0px;
}

.desc {
  font-size: 1.1rem;
  margin: 0px;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columnas de igual ancho */
  gap: 1rem;
  justify-items: stretch;
}

.links a {
  display: flex;
  flex-direction: column;
  /* ícono arriba del texto */
  align-items: center;
  justify-content: center;
  /* espacio entre ícono y texto */
  background-color: #a52a3c;
  color: #fcd97b;
  text-decoration: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2.5px solid #fcd97b;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 0 5px #fcd97b;
}

.links a img {
  width: 38px;
  height: 38px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(55%) saturate(332%) hue-rotate(356deg) brightness(100%) contrast(100%);
}

.links a:hover img {
  filter: brightness(0);
  /* Cambia a negro */
}

.links a:hover {
  background-color: #fcd97b;
  color: #000000;
  border: 2.5px solid black;
  box-shadow: 0 0 5px #000000;
}

.section-title {
  font-size: 1.3rem;
  color: #fcd97b;
  border-bottom: 3px solid #fcd97b;
}

footer {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #fcd97b;
}



.nsfw-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.nsfw-modal-content {
  background-color: #2f0b10;
  color: #fcd97b;
  border: 2.5px solid #fcd97b;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 5px #fcd97b;
  max-width: 400px;
  width: 90%;
  text-align: center;
  font-family: 'Caveat';
}

.nsfw-modal-content h2 {
  font-size: 1.8rem;
}

.nsfw-modal-content p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.no-show {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.nsfw-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.nsfw-buttons button {
  background-color: #fcd97b;
  color: black;
  font-weight: bold;
  border: 2px solid #fcd97b;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-family: 'Caveat';
  cursor: url('cursors/cursor.cur'), pointer;
  transition: all 0.3s ease;
}

.nsfw-buttons button:hover {
  cursor: url('cursors/cursorHover.cur'), pointer;
  background-color: black;
  color: #fcd97b;
  border: 2px solid black;
  box-shadow: 0 0 5px #000000;
}

/* Hacer que SOLO ese botón sea una “barra” a todo lo ancho */
.links a.commission-btn {
  grid-column: 1 / -1;   /* ocupa las 2 columnas */
  justify-self: stretch; /* se estira de lado a lado */
  width: 91%;
}


/* ---- Sección de Comisiones ---- */
.commissions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.commission-card {
  background-color: #a52a3c;
  border: 2.5px solid #fcd97b;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 5px #fcd97b;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.commission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #fcd97b;
}

.commission-card img {
  width: 70%;
  object-fit: cover; /* Mantiene proporciones sin deformar */
  border-radius: 10px;
  margin-bottom: 10px;
}

.commission-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fcd97b;
}

.commission-card p {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #fcd97b;
}

.commission-card strong {
  color: #fff7d6; /* resalta el precio */
}
