


body {
    margin: 0;
    padding: 2rem;
    font-family: monospace;
    font-size: .85rem;
    background: #0f0c29; /* Outrun default */
    color: #fff;

  }

  @media only screen and (max-width: 600px) {
    body {
      padding: 0rem;
    }
  }

  a {
    color: #ff4fd8;
  }
  
  h1 {
    font-size: 2rem;
    color: #ff4fd8;
  }

  hr {
    border-color: #4fffe1;
    /* margin-left: -1rem;
    margin-right: -1rem; */
    /* margin-block-start: 0;
    padding-right: -1rem;
    padding-left: -1rem; */
    /* height: 2px;
    color: yellow;
    border: 0px solid yellow;
    background-color: yellow; */
  }

  div:has(> article) {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    /* border-left: 4px solid #ff4fd8; */
    padding-left: 1rem;
    padding-top: 1rem;
    
    margin-bottom: 1rem;
    
  }

  div:has(> article)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 16px solid transparent;
    border-left: 16px solid #0f0c29;
  }

  div:has(> article)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-left: 16px solid transparent;
    border-top: 16px solid #0f0c29;
  }
  
  article {
    position: relative;
    background: #ffffff0d;
    border-left: 4px solid #ff4fd8;
    padding: 1rem;
    margin-bottom: 1rem;

    /* width: 200px;
    height: 200px;
    background: lightblue;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%); */
  }

  @media (width <= 1250px) {

  }

  div > article {
    border-left: 4px solid #ff4fd8;
  }
  
  header > p {
    margin: -1rem 0 0.5rem 0;
  }

  header > p, h2 {
    color: #00ffff;
  }
  
  time {
    display: block;
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  
  footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #666;
  }

  .nav-item {
    position: relative;
    display: inline-block;
    color: white;
    /* font-family: 'Press Start 2P', monospace; */
    font-weight: bold;
    padding-bottom: 0.2em;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  /* === Hover (pink) === */
  .nav-item:hover {
    color: #ff4fd8;
    text-shadow:
      0 0 1px #ff4fd8,
      0 0 1em #ff4fd8,
      0 0 0.1em #ff4fd8;
  }

  /* === Active (cyan) === */
  .nav-item.active {
    color: #4fffe1;
    text-shadow:
      0 0 1px #4fffe1,
      0 0 1em #4fffe1,
      0 0 0.1em #4fffe1;
  }


  /* === Shared reflection === */
  .nav-item::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 8px;
    transform: scaleY(-1) skewX(-40deg);
    /* color: rgba(255, 79, 216, 0.3); */
    opacity: 0;
    filter: blur(0.75px);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .nav-item:hover::after,
  .nav-item.active::after {
    opacity: 0.5;
    color: currentColor; /* Inherit from .nav-item */
  }
  
/*   
  .nav-item:actve::after {
    opacity: 0.5;
  } */


/* === Distant Light Cone === */
/* .nav-item::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -30px;
  width: 40px;
  height: 20px;
  background: conic-gradient(
    from 0deg at 50% 0%,
    rgba(255, 79, 216, 0.4),
    rgba(255, 79, 216, 0)
  );
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  transform: rotate(-25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
} */

/* .nav-item:hover::before {
  opacity: 1;
}

@keyframes beam-flicker {
  0% { opacity: 0; }
  30% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.nav-item:hover::before {
  animation: beam-flicker 0.4s ease-in;
  opacity: 1;
} */

  /* .shadow-text {
    position: relative;
    color: white;
    font-weight: bold;
  }
  
  .shadow-text::after {
    content: attr(data-text);
    position: absolute;
    top: 6px;              
    left: 6px;             
    transform: skewX(-30deg);
    color: hotpink;
    opacity: 0.6;
    z-index: -1;

    transform: skewX(-30deg) scale(1.01);
    filter: blur(0.5px);
  } */