body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1f1f1f;
    color: #f7f7f7;
  }

  .hero-section {
          position: relative;
          height: 250px;
          background-size: cover;
          background-position: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
      }

      .hero-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.4);
          z-index: 0;
      }

      .hero-content {
          position: relative;
          z-index: 1;
      }

      .hero-title {
          font-size: 36px;
          margin-bottom: 10px;
          font-weight: bold;
      }

      .hero-subtitle {
          font-size: 18px;
          font-weight: normal;
      }
      
  .article-category {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .article-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 30px;
    max-width: 800px;
  }

  .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #ddd;
  }

  .article-meta i {
    margin-right: 5px;
    color: #ffc107;
  }

  .containerside {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .content {
    flex: 3;
  }

  .sidebar {
    flex: 1;
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 8px;
    height: 400px;
  }

  .sidebar h2 {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
  }

  .sidebar ul {
    list-style: none;
    padding: 0;
  }

  .sidebar ul li {
    margin-bottom: 10px;
  }

  .sidebar ul li a {
    color: #ccc;
    text-decoration: none;
  }

  .sidebar ul li a:hover {
    color: #ff9e00;
  }

  .author-info {
    display: flex;
    margin-top: 30px;
  }

  .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
  }

  .author-name {
    font-weight: bold;
    color: #f7f7f7;
  }

  .social-links button {
    background-color: #ff9e00;
    color: #1f1f1f;
    border: none;
    padding: 10px 16px;
    margin: 5px 5px 0 0;
    cursor: pointer;
    border-radius: 5px;
  }

  .social-links button:hover {
    background-color: #ff7a00;
  }

  .comment-section {
    margin-top: 40px;
  }

  .comment-section h2 {
    margin-bottom: 10px;
  }

  textarea {
    width: 100%;
    height: 120px;
    background-color: #2d2d2d;
    color: #fff;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
  }

  button[type="submit"] {
    background-color: #ff9e00;
    border: none;
    padding: 10px 20px;
    color: #1f1f1f;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
  }

  @media (max-width: 768px) {
    .article-title {
      font-size: 28px;
    }

    .containerside {
      flex-direction: column;
    }

    .sidebar {
      margin-top: 30px;
    }
  }