body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: #f2f2f2;
    line-height: 1.6;
  }


  * {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFF" stroke="%23000" stroke-width="2" d="M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L6.35 2.85a.5.5 0 0 0-.85.35Z"></path></svg>') 6 6, auto !important;
  }
  
  
  .container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
  }
  
  .top-nav {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 20px;
    color: #aaa;
  }
  
  .title-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .title-section h1 {
    font-weight: 600;
    font-style: italic;
  }
  
  .title-section p {
    margin-top: 5px;
    color: #ccc;
  }
  
  .main-image {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
  }
  .main-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow:
      -60px -60px 120px rgba(253, 231, 156, 0.12),  /* soft top-left gold */
       60px 60px 120px rgba(99, 37, 10, 0.05);      /* very soft bottom-right reddish-brown */
  }
  
  
  
  .info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
  }
  
  .info-column {
    flex: 1 1 250px;
  }
  
  .info-column h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
  }
  
  .info-column ul {
    padding: 0;
    list-style: none;
  }
  
  .info-column ul li {
    margin-bottom: 6px;
    color: #bbb;
  }
  
  .overview {
    margin-bottom: 30px;
  }
  
  .overview h3 {
    margin-bottom: 10px;
    color: #fff;
  }
  
  .overview p {
    color: #ccc;
    max-width: 750px;
  }
  
  .preview-img {
    display: block;
    margin: 40px auto;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(185, 20, 20, 0.04);
  }
  
  a {
    color: #fff066;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  
  .code-block {
    background-color: #f4f4f4;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid #6e6eff;
    box-shadow: 0 0 10px rgba(226, 21, 21, 0.1);
  }
  
  .code-block code {
    display: block;
    white-space: pre;
    color: #2d2d2d;
  }
  
  
  
  .pulse-wrapper {
    display: inline-block;
    position: relative;
    width: 10px;
    height: 0px;
    margin: 0 6px;
  }
  
  .pulse-wrapper i {
    color: #04ff00;
    font-size: 8px;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulse-glow 1.4s infinite ease-out;
  }
  
  @keyframes pulse-glow {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    70% {
      transform: scale(2.2);
      opacity: 0;
    }
    100% {
      transform: scale(2.2);
      opacity: 0;
    }
  }
  
  .refbacklast {
    position: relative;
    font-family: 'Cal Sans', sans-serif;
    font-style: italic;
    color: #aaa; /* or any base color */
    text-decoration: none;
    transition: color 0.3s ease; /* smooth text color transition */
  }
  
  .refbacklast::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: white;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .refbacklast:hover {
    color: white;
  }
  
  .refbacklast:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
  
  
  .footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-family: 'Cal Sans', sans-serif;
    color: white;
  }
  
  .right-status {
    display: flex;
    align-items: center;
    gap: 8px;
  }