@font-face {
    font-family: smallFont;
    src: url(../../pixelfont.ttf);
  }
  
  body {
    margin: 0;
    background: black;
    color: white;
    font-family: smallFont;
    font-size: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    font-weight: lighter;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .glitch-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glitchFlash 2s steps(10) forwards;
  }
  
  .glitch-intro video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen; /* Makes it blend into the black nicely */
    animation: glitchOpacity 2s steps(10) infinite;
  }
  
  @keyframes glitchFlash {
    0% { background-color: black; }
    10% { background-color: #111; }
    20% { background-color: black; }
    30% { background-color: #111; }
    100% { background-color: black; }
  }
  
  @keyframes glitchOpacity {
    0%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.2; }
    50% { opacity: 0.7; }
  }
  
  /* Hide main content initially */
  .content {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  /* Glitch title */
  .glitch {
    font-size: clamp(5rem, 10vw, 7rem);
    color: red;
    animation: flicker 1s infinite alternate;
    margin-bottom: 0.5rem;
  }
  
  @keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
  }
  
  
.reboot-btn {
    margin-top: 4rem;
    padding: 0.5rem 1rem;
    font-size: clamp(1.5rem, 2vw, 3rem);
    font-family: smallFont;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    transition: background 0.3s;
  }
  
  .reboot-btn:hover {
    background-color: red;
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 10px #ff0055; }
    50% { box-shadow: 0 0 30px #ff0055; }
    100% { box-shadow: 0 0 10px #ff0055; }
  }
  