.pdf-main {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-section {
  width: min(1200px, 100%);
  padding: 0 4vw 4vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pdf-frame {
  width: 100%;
  height: min(85vh, 960px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #0a0a0a;
}

.pdf-fallback {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.pdf-fallback a {
  color: var(--fg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: no-preference) {
  .menu-page .pdf-section {
    animation: menuSectionLift 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .menu-page .pdf-frame {
    animation: menuFrameGlow 14s ease-in-out infinite;
  }
}

@keyframes menuSectionLift {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuFrameGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(232, 146, 60, 0);
  }
  50% {
    box-shadow: 0 30px 60px rgba(232, 146, 60, 0.25);
  }
}
