body { 
  margin: 0; 
  overflow: hidden; 
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
}
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  cursor: pointer;
  z-index: -1;
  transform-origin: center center;
  transition: playbackRate 1s ease-in-out;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}
#enterPortal {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 
    2px 2px 4px rgba(0,0,0,0.8),
    -1px 0 black,
     0 1px black,
     1px 0 black,
     0 -1px black,
    -1px -1px black,
     1px -1px black,
    -1px  1px black,
     1px  1px black;
  opacity: 0;
  pointer-events: auto;
  z-index: 998;
  transition: opacity 0.1s ease-in-out;
  cursor: pointer;
}
#enterPortal.flashing {
  opacity: 1;
  animation: flash 1.2s ease-in-out infinite;
}
@keyframes flash {
  0%, 45% { opacity: 1; }
  55%, 100% { opacity: 0; }
}
footer {
    position: absolute;
	font-family:'Trebuchet MS',sans-serif;
	bottom: 0.3rem;
	right: 0.7rem;
	width: 90%;
    z-index: 1;
    color: #888;
    text-align: right;
    padding: 1rem;
    font-size: 0.9rem;
}
.text-outline {
  text-shadow:
    -1px 0 black,
     0 1px black,
     1px 0 black,
     0 -1px black,
    -1px -1px black,
     1px -1px black,
    -1px  1px black,
     1px  1px black;
}
a:hover, a:visited, a:link, a:active
{
    color: #888;
    text-decoration: none;
}
