body {
  background-color: #f5f6fa;
  color: #222;
  font-family: "Verdana", sans-serif;
  text-align: center;
  padding-top: 50px;
}

/* Imagen principal */
.banner {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 100px auto 40px auto; /* lo baja un poco */
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-bg {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: blur(8px) brightness(0.9);
  transform: scale(1.1);
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bio-img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow:
    0 0 15px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(180, 200, 255, 0.6),
    0 0 35px rgba(255, 255, 255, 0.3); /* halo más suave */
  background: rgba(255, 255, 255, 0.3); /* simula el difuminado */
}
/* Títulos y texto */
h1 {
  font-size: 1.8em;
  margin-top: 15px;
}

p {
  margin: 8px 0;
  font-size: 1em;
  line-height: 1.6;
}

/* Hashtags */
a {
  text-decoration: none;
  color: #4a63ff;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

.hashtags {
  margin-top: 10px;
  font-size: 0.95em;
}

/* === COMMISSIONS SECTION === */

.commissions {
  display: flex;
  justify-content: center;
  margin-top: 120px; /* más separación con la bio */
  padding: 40px 20px;
}

.commission-card {
  background: linear-gradient(145deg, rgba(235,239,245,0.95), rgba(225,230,238,0.95));
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 35px;
  width: 95%;
  max-width: 950px;
  text-align: center;
}

/* Imagen principal arriba */
.commission-banner {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 25px;
}

/* Título principal */
.commission-card h2 {
  font-size: 28px;
  color: #3a3d46;
  margin: 15px 0 25px;
}

/* Secciones */
.commission-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 50px;
}

.commission-section {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 18px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}

.commission-section:hover {
  transform: translateY(-4px);
}

.commission-section h3 {
  color: #4b4f58;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 5px;
}

.commission-section p {
  color: #5a5d66;
  line-height: 1.6;
  font-size: 15px;
}

/* Parte inferior con imágenes */
.commission-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 10px;
}

/* Tamaño ajustado de imágenes */
.commission-img {
  width: 165px;
  height: 165px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.25s ease;
}

.commission-img:hover {
  transform: scale(1.06);
}

/* Cuadro central */
.about-box {
  flex: 1 1 340px;
  background: rgba(255,255,255,0.75);
  border-radius: 25px;
  padding: 25px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
  color: #555;
}

.about-box h3 {
  font-size: 18px;
  color: #4b4f58;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 5px;
}

.about-box p {
  font-size: 15px;
  line-height: 1.6;
}