
/* ═══════════════════════════════════════
   🎀 ARUIGI · FUENTES
═══════════════════════════════════════ */

@font-face {
  font-family: "Cherry Bomb One";
  src: url("CherryBombOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DynaPuff";
  src: url("DynaPuff-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Fredoka";
  src: url("Fredoka-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
}

@font-face {
  font-family: "Gaegu";
  src: url("Gaegu-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gaegu";
  src: url("Gaegu-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}



/* =========================
   🌸 ARUIGI RETRO DREAM 🌸
   ========================= */

body {
  margin: 0;
  font-family: "Fredoka", sans-serif;

  background: #ffdff0 url("banner.png") repeat;
  color: #4a3a46;
}

/* Contenedor principal */

.container {
  max-width: 980px;
  margin: 20px auto;
  padding: 12px;

  background: #ffeef7;
  border: 4px double #ff8cc2;
  border-radius: 22px;

  box-shadow: 0 0 18px rgba(255, 105, 180, 0.35);
}

/* Banner */

.banner {
  background:
    linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.18)),
    url("banner2.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 240px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  border: 3px solid #ff8cc2;
  border-radius: 18px;

  color: white;
  text-shadow: 2px 2px 0 #ff69b4;

  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.banner h1 {
  margin: 0;

  font-family: "Cherry Bomb One", cursive;

  font-size: 4rem;
  letter-spacing: 2px;
}

.banner p {
  margin-top: 10px;

  font-family: "Gaegu", cursive;
  font-weight: bold;

  font-size: 1.5rem;
  opacity: 0.95;
}

/* Ventanas retro */

.card {
  margin-top: 18px;
  padding: 20px;

  background: #fff8fc;

  border: 3px solid #ffc1dd;
  border-radius: 18px;

  box-shadow:
    inset 0 0 6px rgba(255,255,255,0.9),
    0 6px 12px rgba(255,182,193,0.18);

  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);

  box-shadow:
    inset 0 0 6px rgba(255,255,255,0.9),
    0 10px 18px rgba(255,182,193,0.28);
}

/* Perfil */

.profile {
  display: flex;
  gap: 20px;
  align-items: center;
}

.profile p {
  max-width: 520px;
  line-height: 1.55;
}

/* Avatar */

.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;

  border-radius: 50%;

  border: 4px solid #8fe5f2;

  background: #fff;

  box-shadow:
    0 0 0 3px #ffd6ea,
    0 0 0 6px #8fd3dc,
    0 0 10px rgba(143,229,242,0.7);

  transition: transform 0.25s ease;
}

.avatar:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Títulos */

h2 {
  margin-top: 0;

  font-family: "DynaPuff", sans-serif;
  font-weight: 600;

  color: #c85b93;

  text-shadow: 1px 1px 0 #fff;
}

/* Botones retro */

.links a {
  display: block;

  margin: 10px 0;
  padding: 12px;

  text-align: center;
  text-decoration: none;
  font-weight: bold;

  color: #7a2b56;

  background: linear-gradient(#ffd7ec, #ffc2e0);

  border: 2px solid #ff8cc2;
  border-radius: 14px;

  box-shadow: 0 2px 0 #ff8cc2;

  transition: transform 0.15s ease;
}

.links a:hover {
  transform: translateY(-2px);

  background: linear-gradient(#ffe3f2, #ffd0e8);
}

/* Galería */

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.art-placeholder {
  height: 160px;

  background: #fff;

  border: 3px dashed #8fe5f2;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #7aa7b3;
  font-weight: bold;
}

/* Footer */

.footer {
  text-align: center;
  padding: 20px;

  color: #a56c89;
  font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 650px) {

  .profile {
    flex-direction: column;
    text-align: center;
  }

  .banner h1 {
    font-size: 3rem;
  }

}

/* ===== RETRO 3 COLUMNAS ===== */

.retro-layout {
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  gap: 18px;
  margin-top: 18px;
}

.sidebar,
.rightbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-box a {
  display: block;
  margin: 8px 0;
  padding: 10px;
  text-decoration: none;
  background: #fff;
  border: 2px solid #ffb3d9;
  border-radius: 12px;
  color: #b84c84;
  font-weight: bold;
  text-align: center;
}

.menu-box a:hover {
  background: #ffe5f2;
}

.updates-box p,
.music-box p,
.fandom-box p {
  margin: 8px 0;
  padding: 6px 0;
  border-bottom: 1px dashed #ffc1dd;
}

.buttons-88 {
  margin-top: 18px;
  text-align: center;
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.button-grid img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .retro-layout {
    grid-template-columns: 1fr;
  }

  .sidebar,
  .rightbar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar .card,
  .rightbar .card {
    flex: 1 1 250px;
  }
}


.card h2 {
  background: linear-gradient(#ffd7ec, #ffc2e0);
  border: 2px solid #ffb3d9;
  border-radius: 12px;

  padding: 8px 12px;
  margin: -6px -6px 16px -6px;

  box-shadow: 0 2px 0 #ffb3d9;
}
.separator {
  text-align: center;
  margin: 14px 0;
  color: #d97cab;
  font-size: 1.1rem;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.mood-item {
  background: #fff;
  border: 2px solid #ffc1dd;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
}

.mood-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #ffd7ec;
}

.mood-item p {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #b84c84;
  font-weight: bold;
}


/* ===== POPUP RETRO ===== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 192, 220, 0.55);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-window {
  width: min(1000px, 95vw);
  max-height:92vh;
  
  background: #fff8fc;
  border: 4px solid #ff8cc2;
  border-radius: 18px;
  display:flex;
  flex-direction: column;
  
  box-shadow: 0 0 24px rgba(255, 105, 180, 0.45);
  overflow: hidden;
  animation: popup 0.18s ease;
}

.modal-title {
  background: linear-gradient(#ffd7ec, #ffc2e0);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #b84c84;
  border-bottom: 3px solid #ffb3d9;
  flex-shrink:0;
}

.modal-title button {
  background: #ff69b4;
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.modal-title button:hover {
  background: #ff4fa3;
}

#modalImg {
  width: 100%;
  height:auto;
  
  max-height: calc(92vh - 60px);
  
  object-fit: contain;
  
  display: block;
  background: white;
}

@keyframes popup {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Cursor bonito */

.mood-item img {
  cursor: zoom-in;
}

.sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sparkles span {
  position: absolute;
  font-size: 18px;
  opacity: 0.7;
  animation: floatSparkle linear infinite;
}

@keyframes floatSparkle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

body {
  cursor: url("star-cursor.png"), auto;
}

a, button, .mood-item img {
  cursor: url("star-pointer.png"), pointer;
}




/* 🌸 Stickers flotantes */

.sticker{
  position: fixed;
  z-index: 5;
  pointer-events: none;
  height: auto;
}

/* 🦋 Mariposa */
.s1{
  width: 110px;
  top: 45px;
  right: 28px;
  animation: floaty 6s ease-in-out infinite;
}

/* 📺 TV */
.s2{
  width: 120px;
  left: 8px;
  bottom: 8px;
  animation: floaty 8s ease-in-out infinite;
}

/* ✨ Brillo */
.s3{
  width: 32px;
  top: 300px;
  right: 50px;
  animation: floaty 7s ease-in-out infinite;
}

@media (max-width: 700px){

  .s1{
    width: 95px;
    top: 38px;
    left: 16px;
  }

  .s2{
    width: 78px;
    left: 4px;
    bottom: 6px;
  }

  .s3{
    width: 52px;
    right: 52px;
  }
}

@keyframes floaty {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}








.s4{
  width: 18px;
  top: 520px;
  left: 140px;
  animation: floaty 5s ease-in-out infinite;
}

.s5{
  width: 14px;
  top: 860px;
  right: 120px;
  animation: floaty 7s ease-in-out infinite;
}

.s6{
  width: 16px;
  top: 1180px;
  left: 300px;
  animation: floaty 6s ease-in-out infinite;
}













.obsessed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.obsessed-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #ffb3d9;
}






/*Characters html */ 

.character-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.character-info {
  flex:1;
}

.character-info h2{
  margin: 0 0 12px;
}

.character-tags {
  margin-top: 10px;
}

.character-tags span {
  display: inline-block;
  background: #ffe3f2;
  border: 1px solid #ffb3d9;
  border-radius: 999px;
  padding: 4px 10px;
  margin-right: 6px;
  font-size: 0.9rem;
}

/**/


.char-link {
  color: inherit;
  text-decoration: none;
}

.char-link:hover {
  text-decoration: underline;
}

.inline-link {
  color: #c85b93;
  font-weight: bold;
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

/**/  
.triplet-quote{
  text-align:center;
  font-style:italic;
  color:#b86a93;
  background:#fff8fc;
  border:2px dashed #ffc1dd;
  border-radius:14px;
  padding:10px 16px;
  margin:10px auto 18px;
  max-width:520px;

  box-shadow:0 2px 6px rgba(255,182,193,0.18);
}



/* 📼 CRT MUY SUTIL */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;

  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 4px
    );

  opacity: 0.18;
}





/* 🌸 Galería real */

.art-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  color:#c85b93;
  font-weight:bold;

  background:#fff;
  border:3px dashed #8fe5f2;
  border-radius:16px;
  padding:10px;

  transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.art-item:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(143,229,242,0.25);
}

.art-item img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:10px;
}
/* 🌸 Popups galería */

.popup{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.popup:target{
  display:block;
}

.popup-bg{
  position:absolute;
  inset:0;
  background:rgba(255,220,240,0.75);
  backdrop-filter:blur(4px);
}

.popup-box{
  position:relative;
  width:min(90vw, 900px);
  max-height:90vh;
  margin:5vh auto;
  padding:20px;

  background:#fff8fc;
  border:4px solid #ffb3d9;
  border-radius:22px;

  box-shadow:0 12px 30px rgba(255,105,180,0.35);

  display:flex;
  flex-direction:column;
  align-items:center;
}

.popup-box img{
  max-width:100%;
  max-height:72vh;
  object-fit:contain;
  border-radius:16px;
}

.popup-box h3{
  margin:0 0 14px;
  color:#c85b93;
  font-size:1.5rem;
}

.popup-close{
  position:absolute;
  top:12px;
  right:16px;

  text-decoration:none;
  font-size:1.4rem;
  font-weight:bold;
  color:#c85b93;

  background:#ffe3f2;
  border:2px solid #ffb3d9;
  border-radius:12px;
  padding:4px 10px;
}


/* 🌸 Imagen grande de personaje */

.character-full{
  width:100%;
  max-width:700px;

  display:block;
  margin:24px auto 0;

  border-radius:20px;
  border:3px solid #ffc1dd;

  box-shadow:0 6px 14px rgba(255,182,193,0.22);
}


/* comisiones */ 
/* ===== COMISIONES ===== */

.commission-steps{
  line-height:1.8;
  padding-left:20px;
}

.note{
  margin-top:12px;
  font-style:italic;
  color:#a56c89;
}

.price-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px;
}

.price-card{
  background:#fff;
  border:3px solid #ffc1dd;
  border-radius:18px;
  padding:18px;
  text-align:center;

  box-shadow:0 4px 10px rgba(255,182,193,0.18);
}

.price-card h3{
  margin-top:0;
  color:#c85b93;
}

.price{
  font-size:1.5rem;
  font-weight:bold;
  color:#ff5fa2;
  margin:12px 0;
}

.extras-list{
  line-height:1.9;
}

.terms-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:14px;
}

.term-box{
  background:#fff;
  border:2px dashed #ffc1dd;
  border-radius:16px;
  padding:14px;
  text-align:center;
  color:#b84c84;
  font-weight:bold;
}

.cta-card{
  text-align:center;
}

.cta-buttons{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}

.cta-buttons a,
.top-buttons a{
  text-decoration:none;
  background:linear-gradient(#ffd7ec,#ffc2e0);
  border:2px solid #ff8cc2;
  border-radius:14px;
  padding:10px 16px;
  color:#7a2b56;
  font-weight:bold;

  box-shadow:0 2px 0 #ff8cc2;
}

.cta-buttons a:hover,
.top-buttons a:hover{
  transform:translateY(-2px);
}


.soft-note{
  background:#fff7fb;
  border:2px dashed #f8b9d4;
  border-radius:16px;
  padding:12px;
  text-align:center;
  color:#b45c8a;
  margin-bottom:18px;
  font-size:14px;
}

.section-divider{
  text-align:center;
  color:#f3a7c7;
  margin:24px 0;
  font-size:18px;
  letter-spacing:4px;
}

/* ===== Álbum de personajes ===== */

.album-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:18px;
}

.album-card{
  background:#fff8fc;
  border:3px solid #ffc1dd;
  border-radius:18px;
  padding:12px;
  text-align:center;
  box-shadow:0 4px 10px rgba(255,182,193,0.18);
  transition:transform 0.2s ease;
}

.album-card:hover{
  transform:translateY(-4px);
}

.album-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:14px;
  border:2px solid #8fe5f2;
  display:block;
}

.album-card h3{
  margin:10px 0 6px;
  color:#c85b93;
  font-size:1rem;
}

.album-tags{
  display:flex;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  margin-top:8px;
}

.album-tags span{
  background:#ffe3f2;
  border:1px solid #ffb3d9;
  border-radius:999px;
  padding:3px 8px;
  font-size:0.75rem;
  color:#b84c84;
}

/* ===== CHARACTER2 · Álbum retro ===== */

.album-layout{
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:18px;
  margin-top:18px;
  align-items:start;
}


.album-sidebar{
  display:flex;
  flex-direction:column;
  gap:12px;
  height:fit-content;
}

.album-sidebar a{
  text-decoration:none;
  background:#fff;
  border:2px solid #ffb3d9;
  border-radius:14px;
  padding:12px;
  text-align:center;
  font-weight:bold;
  color:#b84c84;
}

.album-sidebar a:hover{
  background:#ffe5f2;
}

.window-bar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
  padding:10px 14px;
  background:linear-gradient(#ffd7ec,#ffc2e0);
  border:2px solid #ffb3d9;
  border-radius:14px;
  color:#b84c84;
  font-weight:bold;
}

.window-buttons{
  display:flex;
  gap:8px;
}

.window-buttons span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#ff8cc2;
  display:block;
}

.album-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:18px;
}

.album-card{
  background:#fff;
  border:3px solid #ffc1dd;
  border-radius:18px;
  padding:12px;
  text-align:center;
  box-shadow:0 4px 10px rgba(255,182,193,0.18);
  transition:transform .2s ease;
}

.album-card:hover{
  transform:translateY(-4px);
}

.album-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  border-radius:14px;
  border:2px solid #8fe5f2;
  display:block;
}

.album-card h3{
  margin:10px 0 8px;
  color:#c85b93;
}

.album-tags{
  display:flex;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
}

.album-tags span{
  background:#ffe3f2;
  border:1px solid #ffb3d9;
  border-radius:999px;
  padding:3px 8px;
  font-size:.75rem;
  color:#b84c84;
}

@media (max-width:700px){
  .album-layout{
    grid-template-columns:1fr;
  }

  .album-sidebar{
    flex-direction:row;
    flex-wrap:wrap;
  }
}

.album-main{
  min-width:0;
}

.filter-btn{
  background:#fff;
  border:2px solid #ffb3d9;
  border-radius:14px;
  padding:14px 10px;
  text-align:center;
  font-weight:bold;
  color:#b84c84;
  cursor:pointer;
  font-family:inherit;
  transition:all .18s ease;
}

.filter-btn:hover{
  background:#ffe5f2;
  transform:translateY(-2px);
}

.filter-btn.active{
  background:linear-gradient(#ffd7ec,#ffc2e0);
  box-shadow:0 2px 0 #ff8cc2;
}

/* 🌸 Título del álbum (sin estilo de botón) */

#albumTitle{
  background:none;
  border:none;
  box-shadow:none;

  margin:0;
  padding:0;

  color:#c85b93;
  font-size:2rem;
  text-shadow:1px 1px 0 #fff;
}

.album-year{
  margin: -4px 0 10px;
  font-size: 0.82rem;
  color: #b98aa6;
}

/* 📼 Estampita VHS / año */

.album-year{
  display:inline-block;

  margin: -2px 0 10px;
  padding: 3px 8px;

  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.4px;

  color: #7a2b56;

  background: linear-gradient(#ffe3f2, #ffd0e8);

  border: 2px solid #ffb3d9;
  border-radius: 8px;

  box-shadow:
    0 2px 0 #ffb3d9,
    inset 0 0 4px rgba(255,255,255,0.8);

  text-shadow: 1px 1px 0 #fff;
}


.album-footer{
  text-align:center;
  color:#b98aa6;
  font-size:0.85rem;
  margin-top:18px;
  padding-top:14px;
  border-top:2px dashed #ffc1dd;
}




.banner{
  position:relative;
}

.banner-gif{
  position:absolute;
  top:8px;
  right:-5px;

  width:120px;

  image-rendering: pixelated;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.7));

  animation: floaty 5s ease-in-out infinite;
}

.banner-tv{
  position:absolute;
  bottom:-14px;
  left:-20px;

  width:120px;

  image-rendering: pixelated;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));

  animation: floaty 7s ease-in-out infinite;
}



.now-playing{
  text-align:center;
}

.music-cover{
  width:100%;
  border-radius:14px;
  border:2px solid #ffc1dd;
  margin:10px 0;
}

.song{
  font-weight:bold;
  color:#c85b93;
  margin:6px 0 2px;
}

.artist{
  color:#a56c89;
  font-size:0.9rem;
  margin:0 0 10px;
}

.music-box iframe{
  border-radius:14px;
  border:2px solid #ffc1dd;
  box-shadow:0 4px 10px rgba(255,182,193,0.18);
}
.music-box{
  position: relative;
}



/* ═══════════════════════════════════════
   🌸 BANNER + TASKBAR
══════════════════════════════════════ */

.banner-area {
  position: relative;
  width: 100%;
}


/* ═══════════════════════════════════════
   🖥️ ARUIGI TASKBAR
══════════════════════════════════════ */

#aruigi-taskbar {

  position: absolute;

  left: 25px;

  /*
     El banner termina aquí.
     La taskbar empieza 10px después.
  */

  top: calc(100% + 10px);

  bottom: auto;

  display: none;

  gap: 5px;

  padding: 4px 5px;

  background: #f7d9eb;

  border: 3px outset #ffffff;

  box-shadow: 4px 4px 0px #8f5c7d;

  z-index: 10000;
}


/* BOTÓN */

#aruigi-taskbar button {

  height: 28px;

  padding: 2px 12px;

  background: #efa4ce;

  border: 2px outset #ffffff;

  color: #5d3150;

  font-family: sans-serif;

  font-weight: bold;

  cursor: pointer;

  white-space: nowrap;
}


#aruigi-taskbar button:active {
  border-style: inset;
}


/* ═══════════════════════════════════════
   📱 MÓVIL
══════════════════════════════════════ */

@media (max-width: 600px) {

  #aruigi-taskbar {

    left: 15px;

    max-width: calc(100% - 30px);

    overflow-x: auto;
  }

}

/* ═══════════════════════════════════════
   🫧 JERARQUÍA DE TÍTULOS
══════════════════════════════════════ */

.popup-box h3,
.album-card h3,
.price-card h3 {
  font-family: "DynaPuff", sans-serif;
}
/* ═══════════════════════════════════════
   🎀 ARUIGI · JERARQUÍA TIPOGRÁFICA
═══════════════════════════════════════ */

/* 🍒 TÍTULOS PRINCIPALES */

.banner h1 {
  font-family: "Cherry Bomb One", cursive;
  font-weight: normal;
}


/* ✍️ SUBTÍTULOS DE LOS BANNERS */

.banner p {
  font-family: "Gaegu", cursive;
  font-weight: bold;
}


/* 🫧 TÍTULOS DE SECCIONES */

h2,
.card h2,
.window-bar h2 {
  font-family: "DynaPuff", sans-serif;
  font-weight: 600;
}


/* 🫧 SUBTÍTULOS / TÍTULOS PEQUEÑOS */

h3,
.price-card h3,
.album-card h3,
.popup-box h3 {
  font-family: "DynaPuff", sans-serif;
  font-weight: 600;
}


/* 🎀 TEXTO GENERAL */

body,
button,
input,
textarea,
select {
  font-family: "Fredoka", sans-serif;
}


/* ✍️ FRASES ESPECIALES / NOTAS */

.note,
.soft-note,
.triplet-quote {
  font-family: "Gaegu", cursive;
  font-weight: bold;
}


/* 🎀 PRECIOS */

.price {
  font-family: "DynaPuff", sans-serif;
  font-weight: 700;
}





