.blog-detail {
      padding-top: 180px;
      background-color: #000000;
      min-height: 100vh;
    }

    .blog-detail__container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .blog-detail__title {
      font-size: 38px;
      font-weight: bold;
      color: #FFFFFF;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .blog-detail__meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 30px;
      font-size: 14px;
      color: #FFD700;
    }

    .blog-detail__date {
      margin-right: 20px;
    }

    .blog-detail__keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .blog-detail__keyword {
      background-color: #333333;
      color: #FFD700;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 13px;
    }

    .blog-detail__cover {
      width: 100%;
      height: 400px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 8px;
      margin-bottom: 40px;
      overflow: hidden;
    }

    .blog-detail__content {
      font-size: 17px;
      line-height: 1.7;
      color: #FFFFFF;
    }

    .blog-detail__content p {
      margin-bottom: 20px;
    }

    .blog-detail__content h2 {
      font-size: 28px;
      font-weight: bold;
      color: #FFD700;
      margin-top: 35px;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .blog-detail__content h3 {
      font-size: 24px;
      font-weight: bold;
      color: #FFFFFF;
      margin-top: 30px;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .blog-detail__content ul,
    .blog-detail__content ol {
      margin-left: 25px;
      margin-bottom: 20px;
      color: #FFFFFF;
    }

    .blog-detail__content li {
      margin-bottom: 10px;
    }

    .blog-detail__content a {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-detail__content a:hover {
      color: #FFFACD;
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .blog-detail {
        padding-top: 150px;
      }

      .blog-detail__container {
        padding: 15px;
      }

      .blog-detail__title {
        font-size: 28px;
        margin-bottom: 10px;
      }

      .blog-detail__meta {
        font-size: 13px;
        margin-bottom: 25px;
      }

      .blog-detail__cover {
        height: 250px;
        margin-bottom: 30px;
      }

      .blog-detail__content {
        font-size: 16px;
        line-height: 1.6;
      }

      .blog-detail__content p {
        margin-bottom: 15px;
      }

      .blog-detail__content h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
      }

      .blog-detail__content h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
      }
    }

    @media (max-width: 480px) {
      .blog-detail {
        padding-top: 120px;
      }
      .blog-detail__title {
        font-size: 24px;
      }
      .blog-detail__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
      .blog-detail__date {
        margin-right: 0;
      }
      .blog-detail__cover {
        height: 200px;
      }
      .blog-detail__content h2 {
        font-size: 22px;
      }
      .blog-detail__content h3 {
        font-size: 18px;
      }
    }
  

        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #fff; background-color: #000; margin: 0; padding: 0; }
        .container { max-width: 960px; margin: 20px auto; padding: 20px; background-color: #1a1a1a; border-radius: 8px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }
        h1, h2, h3 { color: #FFD700; margin-top: 30px; margin-bottom: 15px; }
        p { margin-bottom: 10px; color: #f0f0f0; }
        a { color: #FFD700; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #FFF; text-decoration: underline; }
        ul { list-style-type: disc; margin-left: 20px; color: #f0f0f0; }
        ol { list-style-type: decimal; margin-left: 20px; color: #f0f0f0; }
        .toc ul { list-style-type: none; padding: 0; }
        .toc li { margin-bottom: 8px; }
        .faq-item { background-color: #2a2a2a; border-left: 5px solid #FFD700; padding: 15px; margin-bottom: 15px; border-radius: 5px; }
        .faq-item h3 { color: #FFD700; margin-top: 0; margin-bottom: 10px; }
        .faq-item p { color: #f0f0f0; margin-bottom: 0; }
        .highlight { color: #FFD700; font-weight: bold; }
        .button { display: inline-block; background-color: #FFD700; color: #000; padding: 12px 25px; border-radius: 5px; text-transform: uppercase; font-weight: bold; margin-top: 20px; text-align: center; }
        .button:hover { background-color: #FFF; color: #000; }