body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: black;
  color: #dfe6ee;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.container {
  background-color: oklch(0.205 0 0);
  border-radius: 12px;
  padding: 40px 30px;
  width: 90%;
  max-width: 700px;
  margin-top: 20px;
  border: 1px solid #222;
}

.note {
  font-size: 1rem;
  color: white;
  background-color: oklch(0.269 0 0);
  padding: 18px 22px;
  border-left: 4px solid oklch(0.645 0.246 16.439);
  border-radius: 10px;
  margin: 20px 0;
  max-width: 100%;
  text-align: left;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: -20px;
}

.note strong {
  color: oklch(0.645 0.246 16.439);
  font-weight: 700;
}

.note .highlight {
  color: oklch(0.645 0.246 16.439); 
  font-weight: 600;
}


.link-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 10px 0;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  height: auto;
  font-size: 16px;
  line-height: 1.2;
  border: 1.5px solid #333;
  text-decoration: none;
}

.link-box:hover {
  background-color: oklch(0.374 0.01 67.558);
  border-color: oklch(0.645 0.246 16.439);
  color: oklch(0.645 0.246 16.439);
}

.status {
  color: oklch(0.645 0.246 16.439);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.highlight-text {
  margin-top: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  color: #c4d9ff; /* light blue */
}

.highlight-text span {
  color: oklch(0.645 0.246 16.439);
  font-weight: 800;
}

.highlight-text .green {
  color: oklch(0.645 0.246 16.439);
  font-weight: 700;
}

.highlight-text .blue {
  color: oklch(0.645 0.246 16.439);
  font-weight: 800;
}

img.preview {
  margin-top: 40px;
  width: 100%;
  border-radius: 14px;
}

.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;
  margin-left: 3px;
}


.article-section h2 {
  color: oklch(0.645 0.246 16.439);
  font-size: 1.8rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.article-section h3 {
  color: oklch(0.645 0.246 16.439);
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.article-section ul {
  padding-left: 25px;
  margin-top: 15px;
}

.article-section li {
  margin-bottom: 14px;
}

.article-section strong {
  color: oklch(0.645 0.246 16.439);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: white;
}

