:root {
  --color-red-universe: #4e0000;
  --color-deep-red: #760101;
  --color-music-red: #b62b21;
  --color-dev-red: #f40808;
  --color-new-black: #0d0d0d;
  --color-white-snow: #f4f5f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-new-black);
  background-image: radial-gradient(
    circle at center,
    var(--color-deep-red) 0%,
    var(--color-red-universe) 60%,
    var(--color-new-black) 100%
  );
  color: var(--color-new-black);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Sound & Control UI */
.sound-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(31, 83, 229, 0.15);
  border: 1px solid rgba(31, 83, 229, 0.4);
  color: var(--color-white-snow);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-btn:hover {
  background: var(--color-dev-red);
  border-color: var(--color-white-snow);
  box-shadow: 0 0 15px rgba(31, 83, 229, 0.6);
  transform: scale(1.05);
}

.hidden {
  display: none !important;
}

/* Navigation UI */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(1, 12, 83, 0.4);
  border: 1px solid rgba(31, 83, 229, 0.3);
  color: var(--color-white-snow);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.nav-btn:hover {
  opacity: 1;
  background: var(--color-deep-red);
  border-color: var(--color-dev-red);
  box-shadow: 0 0 20px rgba(31, 83, 229, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.nav-btn-left {
  left: 30px;
}

.nav-btn-right {
  right: 30px;
}

/* Album Layout Container */
.album-viewport {
  position: relative;
  width: 1100px;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
}

.flip-book {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  overflow: hidden;
  background-color: transparent;
  display: none;
  /* Shown after initialization */
}

/* Individual Pages */
.page {
  width: 550px;
  height: 800px;
  background-color: #41424c;
  /* var(--color-white-snow); */
  overflow: hidden;
  cursor: grab;
  /* Mão aberta indicando que a página pode ser "agarrada" */
  user-select: none;
  /* Impede seleção de texto ao arrastar a página */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.page:active {
  cursor: grabbing;
  /* Mão fechada durante o clique na página */
}

/* Global dragging cursor override */
body.dragging,
body.dragging * {
  cursor: grabbing !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.page-content {
  width: 100%;
  height: 100%;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Page Lombada Crease Shadows */
.page:nth-child(even):not(:last-child) .page-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0.16) 100%
  );
  pointer-events: none;
  z-index: 10;
}

.page:nth-child(odd):not(:first-child) .page-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0.16) 100%
  );
  pointer-events: none;
  z-index: 10;
}

/* Page Header & Badge */
.page-header {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 2px solid rgba(4, 41, 188, 0.1);
  padding-bottom: 12px;
}

.music-badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white-snow);
  letter-spacing: 1.5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.badge-rock {
  background-color: var(--color-music-red);
}

.badge-rock {
  background-color: var(--color-dev-red);
}

.badge-rock {
  background-color: var(--color-deep-red);
}

.badge-rock {
  background-color: var(--color-red-universe);
}

.badge-rock {
  background-color: var(--color-dev-red);
}

.page-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white-snow);
}

/* Stickers Grid Layout */
.stickers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 16px;
  flex: 1;
}

/* Individual Sticker Slots */
.sticker-slot {
  background-color: rgba(1, 22, 118, 0.03);
  border: 2px dashed rgba(4, 41, 188, 0.35);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 155px;
}

.sticker-slot:hover {
  background-color: rgba(31, 83, 229, 0.05);
  border-color: var(--color-deep-red);
  box-shadow: inset 0 0 10px rgba(31, 83, 229, 0.1);
}

.special-slot {
  grid-column: span 2;
  justify-self: center;
  width: 65%;
  min-height: 165px;
  border-color: var(--color-deep-red);
  background-color: rgba(31, 83, 229, 0.02);
}

.slot-number {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-music-red);
  background: rgba(4, 41, 188, 0.08);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.sticker-slot:hover .slot-number {
  background: var(--color-dev-red);
  color: var(--color-white-snow);
  box-shadow: 0 0 10px rgba(31, 83, 229, 0.3);
}

.slot-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-new-black);
  margin-bottom: 2px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.sticker-slot:hover .slot-name {
  visibility: visible;
  opacity: 1;
}

.slot-role {
  font-size: 0.72rem;
  color: #626c84;
}

/* ===================================================
   FIGURINHAS PREENCHIDAS (adicionado no Dia 3)
   Estilos para as imagens inseridas via JavaScript
   =================================================== */

.sticker-img {
  position: absolute;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  /* width: 155px; */
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: fill;
  border-radius: 4px;
  opacity: 0;
  animation: sticker-aparecer 0.5s ease-out forwards;
}

/* Slot com imagem: fundo preto para preencher o espaço reservado e centralizar a capa 1:1 */
.sticker-slot:has(.sticker-img),
.sticker-slot.slot-preenchido {
  padding: 0;
  overflow: hidden;
  background-color: #000000;
}

/* Esconde número e role quando há imagem no slot */
.sticker-slot:has(.sticker-img) .slot-number,
.sticker-slot:has(.sticker-img) .slot-role {
  display: none;
}

/* Nome como overlay centralizado na base da imagem */
.sticker-slot:has(.sticker-img) .slot-name {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 18px 8px 7px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  border-radius: 0 0 4px 4px;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* Animação de "colar" a figurinha */
@keyframes sticker-aparecer {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(-4px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Slot quando a figurinha está colada (imagem carregou com sucesso) */
.slot-preenchido {
  border-style: solid !important;
  border-color: var(--color-deep-red) !important;
}

.slot-preenchido:hover {
  border-color: var(--color-dev-red) !important;
  box-shadow: 0 4px 16px rgba(31, 83, 229, 0.2) !important;
}

/* Page Footer */
.page-footer {
  margin-top: 15px;
  font-size: 0.8rem;
  color: #8c98b0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 8px;
}

/* CAPA (Cover) CSS */
.page-cover {
  background-color: #070709;
  background-image: radial-gradient(circle at center, #0e1220 0%, #060608 100%);
  color: var(--color-white-snow);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: inset 0 0 40px rgba(0, 240, 255, 0.12);
}

.cover-content {
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  text-align: center;
}

.cover-seal {
  background: rgba(0, 240, 255, 0.04);
  border: 1.5px solid rgba(247, 4, 4, 0.45);
  color: #e72323;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  padding: 6px 18px;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cover-seal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 8, 0, 0.25),
    transparent
  );
  transform: skewX(-30deg);
  animation: sealShine 6s infinite linear;
}

@keyframes sealShine {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

.cover-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Glitch Typography Effect */
.glitch {
  position: relative;
  color: var(--color-white-snow);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.glitch::before {
  left: 2px;
  text-shadow: -1.5px 0 #ff0055;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 6s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow:
    -1.5px 0 #00f0ff,
    0 1px #00f0ff;
  clip: rect(85px, 450px, 140px, 0);
  animation: glitch-anim2 6s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(31px, 9999px, 94px, 0);
  }

  10% {
    clip: rect(112px, 9999px, 76px, 0);
  }

  20% {
    clip: rect(85px, 9999px, 5px, 0);
  }

  30% {
    clip: rect(27px, 9999px, 115px, 0);
  }

  40% {
    clip: rect(73px, 9999px, 29px, 0);
  }

  50% {
    clip: rect(118px, 9999px, 141px, 0);
  }

  60% {
    clip: rect(9px, 9999px, 52px, 0);
  }

  70% {
    clip: rect(104px, 9999px, 120px, 0);
  }

  80% {
    clip: rect(62px, 9999px, 83px, 0);
  }

  90% {
    clip: rect(43px, 9999px, 110px, 0);
  }

  100% {
    clip: rect(135px, 9999px, 18px, 0);
  }
}

@keyframes glitch-anim2 {
  0% {
    clip: rect(76px, 9999px, 116px, 0);
  }

  11% {
    clip: rect(3px, 9999px, 42px, 0);
  }

  22% {
    clip: rect(122px, 9999px, 88px, 0);
  }

  33% {
    clip: rect(94px, 9999px, 149px, 0);
  }

  44% {
    clip: rect(18px, 9999px, 64px, 0);
  }

  55% {
    clip: rect(108px, 9999px, 5px, 0);
  }

  66% {
    clip: rect(31px, 9999px, 92px, 0);
  }

  77% {
    clip: rect(83px, 9999px, 137px, 0);
  }

  88% {
    clip: rect(144px, 9999px, 22px, 0);
  }

  100% {
    clip: rect(52px, 9999px, 110px, 0);
  }
}

.cover-title {
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 6px;
  color: var(--color-white-snow);
  margin: 0;
  line-height: 1;
}

.cover-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 10px;
  color: #e72323;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(93, 26, 17, 0.777);
}

.cover-art {
  position: relative;
  width: 250px;
  height: 290px;
  border: 1px solid rgba(231, 35, 35, 0.25);
  border-radius: 12px;
  background: rgba(7, 8, 14, 0.7);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.6),
    inset 0 0 25px rgba(0, 240, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.art-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 20px 20px;
  background-image:
    linear-gradient(to right, rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
}

/* Floating Mini Cards Collage */
.mini-card {
  position: absolute;
  width: 50px;
  height: 68px;
  background: rgba(7, 8, 14, 0.85);
  border: 1.5px solid rgba(231, 35, 35, 0.45);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 8px rgba(0, 240, 255, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

.mini-card:hover {
  border-color: #f18888;
  box-shadow: 0 0 15px rgba(231, 35, 35, 0.45);
  transform: scale(1.1) translateY(-5px) !important;
  z-index: 6;
}

.mc-avatar {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  color: #f18888;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-num {
  font-family: monospace;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
}

.mc-turing {
  top: 25px;
  left: 25px;
  transform: rotate(-12deg);
  animation: floatCard1 6s infinite ease-in-out;
}

.mc-guido {
  bottom: 25px;
  left: 20px;
  transform: rotate(8deg);
  animation: floatCard2 7s infinite ease-in-out;
}

.mc-jobs {
  top: 85px;
  right: 20px;
  transform: rotate(15deg);
  animation: floatCard3 6.5s infinite ease-in-out;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: rotate(-12deg) translateY(0);
  }

  50% {
    transform: rotate(-10deg) translateY(-6px);
  }
}

@keyframes floatCard2 {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }

  50% {
    transform: rotate(6deg) translateY(-4px);
  }
}

@keyframes floatCard3 {
  0%,
  100% {
    transform: rotate(15deg) translateY(0);
  }

  50% {
    transform: rotate(18deg) translateY(-5px);
  }
}

/* Central Glowing 3D Tech Sphere */
.music-sphere {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.guitar {
  width: 150px;
  height: 150px;
  transform: rotate(110deg) translateX(-20px);
}

.sphere-core {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle, #db3b33 0%, #e89f19 100%);
  box-shadow:
    0 0 25px rgba(172, 229, 233, 0.75),
    inset 0 0 10px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  animation: spherePulse 4s infinite ease-in-out;
}

.art-logo {
  width: 32px;
  height: 32px;
  stroke: var(--color-white-snow);
  stroke-width: 2;
  fill: none;
}

.sphere-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.sphere-ring.ring-1 {
  transform: rotateX(70deg) rotateY(15deg);
  animation: spinRing1 8s infinite linear;
  border-top-color: transparent;
}

.sphere-ring.ring-2 {
  transform: rotateX(15deg) rotateY(70deg);
  animation: spinRing2 8s infinite linear;
  border-bottom-color: transparent;
}

@keyframes spherePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(231, 71, 50, 0.826);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 35px rgb(235, 159, 27);
  }
}

@keyframes spinRing1 {
  0% {
    transform: rotateX(70deg) rotateY(15deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(70deg) rotateY(15deg) rotateZ(360deg);
  }
}

@keyframes spinRing2 {
  0% {
    transform: rotateX(15deg) rotateY(70deg) rotateZ(360deg);
  }

  100% {
    transform: rotateX(15deg) rotateY(70deg) rotateZ(0deg);
  }
}

.cover-footer-text {
  margin-top: 25px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--color-white-snow);
  opacity: 0.7;
}

.cover-footer {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--color-white-snow);
  opacity: 0.5;
}

/* CREDITS PAGE CSS */
.credits-content {
  background-color: var(--color-white-snow);
}

.credits-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.info-box {
  background: rgba(4, 41, 188, 0.05);
  border-left: 4px solid var(--color-music-red);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-box h4 {
  font-family: "Outfit", sans-serif;
  color: var(--color-deep-red);
  font-size: 1.1rem;
}

.info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-box li {
  position: relative;
  padding-left: 20px;
}

.info-box li::before {
  content: "•";
  color: var(--color-dev-red);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.credits-dedication {
  font-style: italic;
  color: var(--color-deep-red);
  text-align: center;
  margin-top: 15px;
}

/* CONTRACAPA (Back Cover) CSS */
.page-cover-back {
  background-color: var(--color-red-universe);
  background-image: linear-gradient(
    225deg,
    var(--color-red-universe) 0%,
    var(--color-new-black) 100%
  );
  color: var(--color-white-snow);
  border: 3px solid var(--color-dev-red);
  box-shadow: inset 0 0 50px rgba(31, 83, 229, 0.35);
}

.cover-back-content {
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  text-align: center;
}

.cover-back-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 4px;
  background: linear-gradient(to right, #ffffff, var(--color-dev-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cover-back-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.music-logo-collage {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  opacity: 0.6;
}

.summary-text {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 85%;
}

.barcode-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.barcode {
  display: flex;
  align-items: flex-end;
  height: 40px;
  gap: 2px;
}

.bar {
  width: 3px;
  height: 100%;
  background: #000;
}

.bar.thin {
  width: 1.5px;
}

.bar.thick {
  width: 5px;
}

.barcode-number {
  font-family: monospace;
  font-size: 0.75rem;
  color: #000;
}

.cover-back-footer {
  font-size: 0.75rem;
  letter-spacing: 2px;
  opacity: 0.5;
}

/* Responsiveness & Mobile Adaptations */
@media (max-width: 1200px) {
  .album-viewport {
    width: 900px;
    height: 650px;
  }

  .page {
    width: 450px;
    height: 650px;
  }

  .page-content {
    padding: 30px;
  }

  .sticker-slot {
    min-height: 120px;
  }

  .special-slot {
    min-height: 130px;
  }

  .slot-number {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .cover-title {
    font-size: 3rem;
  }

  .cover-subtitle {
    font-size: 1.4rem;
  }

  .cover-art {
    width: 170px;
    height: 220px;
  }

  .music-sphere {
    transform: scale(0.75);
  }

  .mini-card {
    width: 38px;
    height: 52px;
    padding: 4px 2px;
  }

  .mc-avatar {
    width: 18px;
    height: 18px;
    font-size: 0.5rem;
  }

  .mc-num {
    font-size: 0.5rem;
  }

  .mc-turing {
    top: 15px;
    left: 15px;
  }

  .mc-guido {
    bottom: 15px;
    left: 10px;
  }

  .mc-jobs {
    top: 55px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  /* In portrait/mobile mode, StPageFlip will show single pages */
  .album-viewport {
    width: 100%;
    max-width: 480px;
    height: 100%;
    min-height: 580px;
    padding: 10px;
  }

  .page {
    width: 100%;
    height: 580px;
  }

  .page-content {
    padding: 25px 20px;
  }

  .page-header {
    margin-bottom: 15px;
  }

  .page-title {
    font-size: 1.3rem;
  }

  .stickers-grid {
    gap: 10px;
  }

  .sticker-slot {
    min-height: 100px;
    padding: 6px;
  }

  .special-slot {
    min-height: 110px;
    width: 90%;
  }

  .slot-number {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .slot-name {
    font-size: 0.8rem;
  }

  .slot-role {
    font-size: 0.65rem;
  }

  .cover-content {
    padding: 30px 15px;
  }

  .cover-title {
    font-size: 2.5rem;
  }

  .cover-art {
    width: 130px;
    height: 180px;
  }

  .music-sphere {
    transform: scale(0.65);
  }

  .mini-card {
    display: none !important;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    opacity: 0.4;
  }

  .nav-btn-left {
    left: 10px;
  }

  .nav-btn-right {
    right: 10px;
  }

  .sound-btn {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
