  body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #020617;
      color: #dfe6ee;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  h1 {
      color: #00d26a;
      font-size: 2.5rem;
      margin-top: 50px;
      font-weight: bold;
  }

  h2 {
      font-size: 20PX;
      margin: 10px 0 30px;
      font-weight: bold;
  }

  .container {
      background-color: #0f172a;
      border-radius: 10px;
      padding: 30px 20px;
      width: 89%;
      max-width: 600px;
  }

  .note {
      font-size: 0.95rem;
      color: #a0aec0;
      margin-bottom: 10px;
      background-color: #1e293b;
      padding: 10px;
      border-left: 4px solid #4caf50;
      border-radius: 5px;
      margin-top: -15px;
  }


  .link-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #1e293b;
      border-radius: 5px;
      padding: 10px 15px;
      margin: 5px 0;
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease-in-out;
      height: 15px;
      font-size: 15px;
      line-height: 1;
      border: 1px solid #334155;

  }


  a {
      text-decoration: none;
  }

  .link-box:hover {
      background-color: #3b465a;
      transform: scale(1.05);
      transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .status {
      color: #00d26a;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: normal;
      font-size: 0.9rem;
  }

  .highlight-text {
      margin-top: 30px;
      font-size: 1rem;
      line-height: 1.6;
  }

  .highlight-text span {
      color: #00d26a;
      font-weight: bold;
  }

  .highlight-text .green {
      color: #00d26a;
  }

  .highlight-text .blue {
      color: #00bfff;
      font-weight: bold;
  }

  img.preview {
      margin-top: 30px;
      width: 100%;
      border-radius: 10px;
  }


  .post-icons {
      display: none;
  }


  .article-section {
      text-align: left;
      margin-top: 30px;
      padding: 0px;
      border-radius: 10px;
      color: #dfe6ee;
      line-height: 1.7;
      font-size: 1rem;
  }

  .article-section h2 {
      color: #00d26a;
      font-size: 1.5rem;
      margin-bottom: 10px;
      font-weight: 600;
  }

  .article-section h3 {
      color: #00d26a;
      font-size: 1.2rem;
      margin-top: 20px;
  }

  .article-section ul {
      padding-left: 20px;
      margin-top: 10px;
  }

  .article-section li {
      margin-bottom: 10px;
  }

  .article-section strong {
      margin-bottom: 10px;
      color: #00d26a;

  }