/* RESET SIMPLE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* FONDO CUADROS ROSA */
body {
  font-family: "Trebuchet MS", "Verdana", "Comic Sans MS", sans-serif;
  color: #402030;
  background-color: #ffb7dd;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.4) 0,
      rgba(255, 255, 255, 0.4) 8px,
      transparent 8px,
      transparent 16px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.4) 0,
      rgba(255, 255, 255, 0.4) 8px,
      transparent 8px,
      transparent 16px
    );
}

/* CAPA DE BRILLITOS SUAVE */
.bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.6) 0, transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.5) 0, transparent 50%),
    radial-gradient(circle at 30% 90%, rgba(255,255,255,0.5) 0, transparent 45%);
  opacity: 0.5;
}

/* CONTENEDOR PRINCIPAL */
.site-wrapper {
  position: relative;
  width: 960px;
  margin: 20px auto 30px auto;
  padding: 14px;
  background: rgba(255, 230, 245, 0.92);
  border-radius: 18px;
  border: 4px solid #ff77aa;
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 16px rgba(255, 0, 120, 0.6);
}

/* HEADER DECO */
.deco-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ff77c5, #ffa4e0);
  border-radius: 24px;
  padding: 10px 18px;
  border: 3px solid #ffffff;
  box-shadow:
    0 0 0 3px #ffb7dd,
    0 4px 0 #ff4b9a;
  color: #fff;
}

.logo-chip {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 26px;
  font-weight: 900;
  text-shadow: 0 2px 0 #ff4b9a, 0 0 6px rgba(255, 255, 255, 0.9);
}

.logo-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-status {
  display: flex;
  gap: 6px;
}

.bubble {
  background: #ffe6f7;
  color: #ff2e80;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 0 #ff87c4;
}

/* LAYOUT PRINCIPAL */
.main-area {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  margin-top: 14px;
}

/* MASCOTA / LADO IZQUIERDO */
.mascot-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mascot-placeholder {
  width: 160px;
  height: 200px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffe6f7, #ffb7dd);
  border: 3px solid #ffffff;
  box-shadow:
    0 0 0 3px #ff9ac6,
    0 3px 0 #ff4b9a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ff2e80;
  text-align: center;
}

.mascot-text {
  background: #ffffff;
  border-radius: 16px;
  border: 2px dashed #ff87c4;
  padding: 6px 10px;
  text-align: center;
  font-size: 12px;
}

/* PANTALLA CENTRAL */
.screen-area {
  display: flex;
  justify-content: center;
}

.screen-frame {
  background: linear-gradient(180deg, #ff77c5, #ff2e80);
  border-radius: 36px;
  padding: 10px 12px 16px 12px;
  border: 4px solid #ffffff;
  box-shadow:
    0 0 0 4px #ffb7dd,
    0 6px 0 #ff4b9a;
  position: relative;
}



/* BORDE DE BRILLITOS */
.screen-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 28px;
  border: 3px dotted rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

/* INTERIOR DE LA PANTALLA */
.screen-inner {
  background: repeating-linear-gradient(
      45deg,
      #ffe6f7 0,
      #ffe6f7 6px,
      #ffd0f0 6px,
      #ffd0f0 12px
    );
  border-radius: 24px;
  padding: 16px 18px;
  border: 3px solid #ffffff;
  box-shadow: inset 0 0 10px rgba(255, 150, 200, 0.8);
  width: 520px;
  max-width: 100%;
}

.screen-title {
  font-size: 20px;
  color: #ff2e80;
  text-shadow: 0 1px 0 #ffffff;
  margin-bottom: 8px;
}

.screen-inner p {
  font-size: 13px;
  margin-bottom: 8px;
}

.screen-list {
  list-style: none;
  font-size: 13px;
  margin-bottom: 12px;
}

.screen-list li {
  margin-bottom: 3px;
}

.blinkies-footer {
  margin: 18px auto 10px auto;
  padding: 6px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.blinkies-footer img {
  height: 22px; /* tamaño clásico de blinkie */
  image-rendering: pixelated; /* pa que se vea bien retro */
  border-radius: 4px;
}


/* BOTONES TIPO KEITAI */
.screen-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deco-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 3px solid #ffffff;
  font-size: 13px;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 1px 0 rgba(255,255,255,0.9);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 3px 0 rgba(255, 120, 170, 0.9);
  color: #fff;
}

.btn-pink {
  background: linear-gradient(180deg, #ff9ac6, #ff4b9a);
}

.btn-yellow {
  background: linear-gradient(180deg, #ffe58a, #ffbd3c);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 3px 0 rgba(255, 170, 60, 0.9);
}

.btn-blue {
  background: linear-gradient(180deg, #a7d5ff, #5f9fff);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 3px 0 rgba(80, 130, 230, 0.9);
}

/* CONTROLES ABAJO DEL MONITOR */
.screen-controls {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.ctrl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffe6f7;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 0 #ff4b9a;
  position: relative;
}

.ctrl-dot.heart::before,
.ctrl-dot.star::before {
  content: "♥";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #ff2e80;
}

.ctrl-dot.star::before {
  content: "★";
}

/* FILA DE PROMOS ABAJO */
.promo-row {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.promo-box {
  background: #ffffff;
  border-radius: 18px;
  border: 3px solid #ffb7dd;
  box-shadow:
    0 0 0 3px #ffffff,
    0 3px 0 #ff87c4;
  padding: 10px 12px;
  font-size: 13px;
}

.promo-box h2 {
  font-size: 15px;
  color: #ff2e80;
  margin-bottom: 6px;
}

/* LISTA DE ACTUALIZACIONES */
.updates {
  list-style: none;
}

.updates li {
  margin-bottom: 4px;
}

.date {
  font-weight: bold;
  color: #ff4b9a;
}

/* SPOTIFY */
.spotify-box {
  margin: 20px auto 20px auto;
  background: #ffe6f7;
  border: 3px solid #ffb7dd;
  border-radius: 16px;
  padding: 10px 14px;
  width: 80%;
  box-shadow:
    0 0 0 3px #ffffff,
    0 3px 0 #ff87c4;
  text-align: center;
}

.spotify-box h2 {
  font-size: 16px;
  color: #ff2e80;
  margin-bottom: 8px;
  text-shadow: 0 1px 0 #ffffff;
}


/* FOOTER */
.deco-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: #803050;
}
