.cover-inner {
  position: relative;
  padding: 0;
  border: none;
  background: #e8dcc8;
}

.cover-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background-image: url(../images/cover-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Click anywhere hint (small arrow indicator bottom-center) */
.cover-inner::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 32px;
  height: 32px;
  border-right: 1px solid var(--color-text-faint);
  border-bottom: 1px solid var(--color-text-faint);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.3;
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.45; }
}
