:root {
      --primary-color: #e74c3c;
      --secondary-color: #34495e;
      --background-light: #f8f8f8;
      --text-dark: #2c3e50;
      --text-light: #ecf0f1;
      --border-color: #e0e0e0;
      --meta-text-color: #7f8c8d;
      --link-color: #3498db;
    }

    .blog-detail {
      background-color: var(--background-light);
      color: var(--text-dark);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
    }

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

    .blog-detail__header {
      text-align: left;
      margin-bottom: 30px;
    }

    .blog-detail__title {
      font-size: 38px;
      font-weight: bold;
      color: var(--text-dark);
      margin-top: 0;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .blog-detail__meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      font-size: 14px;
      color: var(--meta-text-color);
      margin-bottom: 20px;
    }

    .blog-detail__date {
      margin-right: 15px;
      white-space: nowrap;
    }

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

    .blog-detail__keyword-label {
      font-weight: bold;
      margin-right: 5px;
    }

    .blog-detail__keyword {
      background-color: #ecf0f1;
      color: var(--secondary-color);
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 13px;
      white-space: nowrap;
    }

    .blog-detail__cover {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .blog-detail__content {
      font-size: 17px;
      line-height: 1.7;
      color: #333;
      word-wrap: break-word;
    }

    .blog-detail__content p {