#screen-cover {
  background: var(--purple-deep);
  cursor: pointer;
  justify-content: center;
  transform-origin: left center;
  z-index: 10;
}

.cover-container {
  position: relative;
  width: 85vw;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 4px 8px 8px 4px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 30px rgba(212,168,67,0.12);
}

.cover-container video,
.cover-container img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-container img.cover-fallback { z-index: 0; }
.cover-container video { z-index: 1; opacity: 0; transition: opacity 0.5s ease; }
.cover-container video.playing { opacity: 1; }

.cover-text-top {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 85%;
  z-index: 5;
}

.cover-text-top h1 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  animation: pulseGlow 3s ease-in-out infinite;
}

.cover-tap {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.cover-tap span {
  font-family: 'Quicksand', sans-serif;
  color: var(--gold-light);
  font-size: clamp(0.7rem, 2.5vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  animation: gentleBounce 2s ease-in-out infinite;
  display: inline-block;
}

.sparkle {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: floatSparkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 6;
}

.cover-container::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.3), transparent);
  z-index: 7;
}
