body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: black;
    color: white;
  }
  
  .navbar {
    background: linear-gradient(to right, #7f1d1d, black, #7f1d1d);
    color: #f87171;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.2);
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.95rem;
    position: relative;
  }
  
  .nav-links a::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(to right, red, orange, pink);
    width: 0%;
    transition: width 0.3s;
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  @media (max-width: 600px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 64px;
      right: 20px;
      background: black;
      border: 1px solid red;
      padding: 1rem;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .menu-icon {
      display: block;
    }
  }
  
  .content {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  h1 {
    color: #f87171;
    text-align: center;
  }
  
  .updated {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    margin-bottom: 2rem;
  }
  