
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #222;
    padding: 2rem;
    line-height: 1.6;
  }

  #randomArticle {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  a {
    color: #0077cc;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  ul, ol {
    padding-left: 1.5rem;
    background: #fff;
    border-left: 4px solid #0077cc;
    padding: 1rem;
    border-radius: 8px;
  }

  li {
    margin-bottom: 0.5rem;
  }

  blockquote {
    font-style: italic;
    border-left: 4px solid #ccc;
    padding-left: 1rem;
    margin: 0;
    background: #f1f1f1;
    border-radius: 6px;
    padding: 1rem;
  }

  blockquote a {
    display: block;
    font-size: 0.9rem;
    color: #666;
  }

  strong, b {
    font-weight: bold;
    color: #444;
  }

  em, i {
    color: #555;
    font-style: italic;
  }

  h1, h2, h3 {
    margin: 0.5rem 0;
    line-height: 1.2;
  }

  h1 {
    font-size: 2rem;
    color: #1a1a1a;
  }

  h2 {
    font-size: 1.5rem;
    color: #333;
  }

  h3 {
    font-size: 1.2rem;
    color: #444;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
  }

  table td {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
  }

  article {
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 10px;
    padding: 1rem;
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  img:hover {
    transform: scale(1.02);
  }
