  /* ============================================= */
  /* Reduce Motion Override
  /* ============================================= */
  
  .reduce-motion *,
  .reduce-motion *::before,
  .reduce-motion *::after {
    /* Instantly completes all transitions */
    transition-duration: 0.01s !important;
    
    /* Instantly completes all animations */
    animation-duration: 0.01s !important;
    
    /* Stops any infinitely repeating animations */
    animation-iteration-count: 1 !important;
    
    /* Disables smooth scrolling */
    scroll-behavior: auto !important;
  }
  
  :root {
      --color-ui-grey: #C0C0C0;
      --color-ui-grey-active: #b9b9b9;
      --color-ui-title-bar: #000080;
      --color-text-light: white;
      --color-text-dark: #0c0c0c;
      --color-border-highlight: #FFFFFF;
      --color-border-shadow: #404040;
      --color-shadow-hard: #000000;
  }

  @font-face {
      font-family: 'ITC Garamond Std Book Italic';
      src: url('path/to/your/itc_garamond_std_book_italic.woff2') format('woff2'),
           url('path/to/your/itc_garamond_std_book_italic.woff') format('woff');
      font-weight: normal;
      font-style: italic;
  }

  * { 
      box-sizing: border-box; 
  }

  body {
      background-color: #000;
      font-family: 'EB Garamond', 'Times New Roman', serif;
      font-style: italic;
      overflow: hidden;
      margin: 0;
      padding: 0;
  }
  
  @keyframes vhs-jitter {
      0% { transform: translate(0, 0); }
      10% { transform: translate(-0.5px, 0.5px); }
      12% { transform: translate(0.5px, -0.5px); }
      15% { transform: translate(-1px, 1px); }
      18% { transform: translate(1px, -1px); }
      20% { transform: translate(0, 0); }
      100% { transform: translate(0, 0); }
  }

  @keyframes crt-turn-on {
      0% {
          transform: scale(0.01, 0.01);
          filter: brightness(30) blur(5px);
          opacity: 1;
      }
      30% {
          transform: scale(1, 0.005); 
          filter: brightness(30) blur(3px);
          opacity: 1;
      }
      60% {
          transform: scale(1, 1);
          filter: brightness(1.5) blur(0px);
      }
      100% {
          transform: scale(1, 1);
          filter: brightness(1) blur(0px);
          opacity: 1;
      }
  }

  @keyframes crt-scan-scroll {
      0% { background-position: 0 0, 0 0, 0 0; }
      100% { background-position: 0 0, 0 2px, 0 0; }
  }
  
  @keyframes crt-glow {
      0% { opacity: 0.15; }
      50% { opacity: 0.2; }
      100% { opacity: 0.15; }
  }

  @keyframes textflicker {
      from {
          text-shadow: 1px 0 0 #ea36af, -2px 0 0 #00FFFF;
      }
      to {
          text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #00FFFF;
      }
  }

  #crt-monitor {
      position: relative;
      width: 100vw;
      height: 100vh;
      
      background-image: url(../Images/lobby.jpg);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      
      overflow: hidden;
      opacity: 0;
      
      animation: 
          crt-turn-on 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards,
          vhs-jitter 10s infinite alternate 1.5s;
  }

  #crt-monitor::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
          radial-gradient(circle at center,
          rgba(234, 54, 175, 0.5) 0%,
          rgba(234, 54, 175, 0.3) 58%,
          rgba(234, 54, 175, 0.1) 80%,
          rgba(234, 54, 175, 0) 100%);
      
      opacity: 0.15;
      
      pointer-events: none; 
      z-index: 3;
      animation: crt-glow 30s infinite;
  }

  #crt-monitor::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
      opacity: 0.25;
      
      background:
          url('../Images/vhs-noise.gif'),
          linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
          linear-gradient(90deg, 
              rgba(255, 0, 0, 0.06), 
              rgba(0, 255, 255, 0.02), 
              rgba(0, 0, 255, 0.06));
      
      background-size: 
          auto,
          100% 2px,
          3px 100%;
      
      animation: crt-scan-scroll 1.5s linear infinite;
  }
  
  #content-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 1;
  }

  .win95-window {
      width: 100%;
      max-width: 640px;
      background: var(--color-ui-grey);
      border-top: 2px solid var(--color-border-highlight);
      border-left: 2px solid var(--color-border-highlight);
      border-right: 2px solid var(--color-border-shadow);
      border-bottom: 2px solid var(--color-border-shadow);
      box-shadow: 1px 1px 0px var(--color-shadow-hard);
  }

  .title-bar {
      background: var(--color-ui-title-bar);
      color: var(--color-text-light);
      font-weight: bold;
      font-family: 'EB Garamond', 'Times New Roman', serif;
      font-style: italic;
      font-size: 1.5rem;
      padding: 4px 5px;
      margin-bottom: 3px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      letter-spacing: 0.1em;
      cursor: default;
      user-select: none;
  }

  .title-bar-buttons { display: flex; }

  .title-bar-button {
      width: 20px;
      height: 20px;
      background: var(--color-ui-grey);
      border-top: 2px solid var(--color-border-highlight);
      border-left: 2px solid var(--color-border-highlight);
      border-right: 2px solid var(--color-border-shadow);
      border-bottom: 2px solid var(--color-border-shadow);
      font-size: 1.2rem;
      font-weight: bold;
      padding: 0;
      margin-left: 3px;
      cursor: default;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'EB Garamond', 'Times New Roman', serif;
      font-style: normal;
  }

  .window-body {
      padding: 1.5rem;
      color: var(--color-text-dark);
      background-color: var(--color-ui-grey); 
      font-family: 'EB Garamond', 'Times New Roman', serif;
      font-style: italic;
      font-size: 1.5rem;
      line-height: 1.2;
      animation: textflicker 0.01s infinite alternate;
  }
  
  .profile-data {
      font-size: 1.1rem;
      border: 1px dashed var(--color-border-shadow);
      padding: 1rem;
      background: var(--color-ui-grey-active);
  }

  .profile-data dt {
      font-weight: bold;
      color: var(--color-ui-title-bar);
      letter-spacing: 0.1em;
  }
  
  .profile-data dd {
      margin-left: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--color-text-dark);
  }

  hr.memphis {
      border: 0;
      height: 3px;
      background: linear-gradient(to right, #FF00FF, #00FFFF, #FF00FF);
      margin: 1.5rem 0;
  }
  
  .memo-content {
      line-height: 1.6;
  }

  .button-panel {
      margin-top: 1.5rem;
      text-align: right;
      border-top: 2px solid var(--color-border-shadow);
      padding-top: 1rem;
  }

  .button {
      background: var(--color-ui-grey);
      border-top: 2px solid var(--color-border-highlight);
      border-left: 2px solid var(--color-border-highlight);
      border-right: 2px solid var(--color-border-shadow);
      border-bottom: 2px solid var(--color-border-shadow);
      padding: 0.25rem 1rem;
      font-size: 1.5rem;
      font-family: 'EB Garamond', 'Times New Roman', serif;
      font-style: italic;
      cursor: default;
      box-shadow: 1px 1px 0px var(--color-shadow-hard);
  }
  .button:active {
      background: var(--color-ui-grey-active);
      border-top: 2px solid var(--color-border-shadow);
      border-left: 2px solid var(--color-border-shadow);
      border-right: 2px solid var(--color-border-highlight);
      border-bottom: 2px solid var(--color-border-highlight);
      box-shadow: none;
  }