/* ─── Top Gold Bar ──────────────────────────────────── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--green-deep) 0%,
    var(--gold-dark)  15%,
    var(--gold)       35%,
    var(--gold-light) 50%,
    var(--gold)       65%,
    var(--gold-dark)  85%,
    var(--green-deep) 100%
  );
  z-index: 100;
}

/* ─── Corner Ornaments ──────────────────────────────── */
.corner {
  position: fixed;
  width: 64px;
  height: 64px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
  animation: fadeIn 2s 0.5s ease both;
}

.c-tl { top: 20px;    left: 20px;                          }
.c-tr { top: 20px;    right: 20px;  transform: scaleX(-1); }
.c-bl { bottom: 20px; left: 20px;   transform: scaleY(-1); }
.c-br { bottom: 20px; right: 20px;  transform: scale(-1, -1); }
