body {
      margin: 0;
      padding: 0;
      background-color: black;
      font-family: Arial, sans-serif;
      color: white;
      min-height: 100vh;
    }

    .fixed-name {
      position: fixed;
      top: 100px;
      right: 100px; 
      color: white;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s ease;
      text-decoration: none; 
    }

    .content {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .back-link {
      display: inline-block;
      color: #f04040;
      text-decoration: none;
      margin-top: 180px;
      margin-bottom: 20px;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .back-link:hover {
      color: white;
    }

    .post-title {
      font-size: 2.8rem;
      font-weight: bold;
      margin-bottom: 20px;
      position: relative;
    }

    .post-title::after {
      content: "";
      position: absolute;
      width: 100px;
      height: 3px;
      background-color: #f04040;
      bottom: -10px;
      left: 0;
    }

    .post-meta {
      color: #888;
      font-size: 0.9rem;
      margin: 30px 0;
    }

    .post-content {
      line-height: 1.8;
      font-size: 1.1rem;
    }

    .post-content p {
      margin-bottom: 20px;
    }

    .post-content h2 {
      color: #f04040;
      margin-top: 40px;
      font-size: 1.8rem;
    }

    .post-content h3 {
      color: white;
      margin-top: 30px;
      font-size: 1.4rem;
    }

    code {
      background: rgba(255, 255, 255, 0.1);
      padding: 0.2rem 0.4rem;
      border-radius: 3px;
      font-size: 0.9em;
    }

    .tip-box {
      background: rgba(240, 64, 64, 0.1);
      border-left: 3px solid #f04040;
      padding: 20px;
      margin: 30px 0;
      border-radius: 0 5px 5px 0;
    }

    .video-background {
      position: fixed;
      right: 0;
      bottom: 0;
      min-width: 100%;
      min-height: 100%;
      z-index: -1;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      z-index: -1;
    }

    .plugin-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px;
      margin: 20px 0;
      border-radius: 5px;
    }

    .plugin-name {
      color: #f04040;
      font-weight: bold;
      margin-bottom: 10px;
    }
