  @import url(theme.css);

  .article-hero {
      color: white;
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
  }

  .article-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      pointer-events: none;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      margin: 0 auto;
      text-align: center;
  }

  .article-category {
      display: inline-block;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      padding: 8px 20px;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .article-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff;
  }

  .article-subtitle {
      font-size: 1.3rem;
      font-weight: 300;
      margin-bottom: 30px;
      opacity: 0.9;
      line-height: 1.6;
  }

  .article-meta {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
  }

  .meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.95rem;
      opacity: 0.9;
  }

  .author-info {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .author-avatar {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      border: 2px solid rgba(255, 255, 255, 0.3);
  }

  /* Content Section */
  .article-content {
      padding: 80px 0;
      background: white;
  }

  .content-wrapper {
      max-width: 800px;
      margin: 0 auto;
  }

  .article-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
      margin: 40px 0;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  .article-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #2c3e50;
      margin-bottom: 30px;
  }

  .article-text h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #1a1a1a;
      margin: 50px 0 25px;
      position: relative;
  }

  .article-text h2::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 60px;
      height: 4px;
      background: linear-gradient(135deg, #ed1c24, #b71c1c);
      border-radius: 2px;
  }

  .article-text h3 {
      font-size: 1.6rem;
      font-weight: 600;
      color: #1a1a1a;
      margin: 40px 0 20px;
  }

  .article-text p {
      margin-bottom: 25px;
  }

  .article-text blockquote {
      background: #f8f9fa;
      border-left: 5px solid #ed1c24;
      padding: 30px 40px;
      margin: 40px 0;
      border-radius: 0 15px 15px 0;
      font-style: italic;
      font-size: 1.2rem;
      position: relative;
  }

  .article-text blockquote::before {
      content: '"';
      font-size: 4rem;
      color: #ed1c24;
      position: absolute;
      top: -10px;
      left: 20px;
      font-family: serif;
  }

  .article-text ul,
  .article-text ol {
      margin: 25px 0;
      padding-left: 30px;
  }

  .article-text li {
      margin-bottom: 10px;
  }

  .article-text code {
      background: #f8f9fa;
      padding: 3px 8px;
      border-radius: 5px;
      font-family: 'Courier New', monospace;
      color: #ed1c24;
      font-size: 0.9em;
  }

  .article-text pre {
      background: #2c3e50;
      color: white;
      padding: 25px;
      border-radius: 15px;
      overflow-x: auto;
      margin: 30px 0;
      font-size: 0.9rem;
  }

  /* Tags Section */
  .article-tags {
      margin: 50px 0;
      padding: 30px 0;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
  }

  .tags-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1a1a1a;
  }

  .tag {
      display: inline-block;
      background: rgba(237, 28, 36, 0.1);
      color: #ed1c24;
      padding: 8px 16px;
      border-radius: 20px;
      text-decoration: none;
      margin: 5px 10px 5px 0;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .tag:hover {
      background: #ed1c24;
      color: white;
      transform: translateY(-2px);
  }

  /* Social Share */
  .social-share {
      text-align: center;
      margin: 50px 0;
  }

  .share-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 20px;
      color: #1a1a1a;
  }

  .share-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
  }

  .share-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
      transition: all 0.3s ease;
  }

  .share-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .share-btn.facebook {
      background: #3b5998;
  }

  .share-btn.twitter {
      background: #1da1f2;
  }

  .share-btn.linkedin {
      background: #0077b5;
  }

  .share-btn.reddit {
      background: #ff4500;
  }

  /* Author Bio */
  .author-bio {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 20px;
      margin: 50px 0;
      display: flex;
      align-items: center;
      gap: 30px;
  }

  .author-bio-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ed1c24, #b71c1c);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      font-weight: 600;
      flex-shrink: 0;
  }

  .author-bio-content h4 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1a1a1a;
  }

  .author-bio-content p {
      color: #666;
      margin-bottom: 15px;
      line-height: 1.6;
  }

  .author-social {
      display: flex;
      gap: 15px;
  }

  .author-social a {
      color: #666;
      font-size: 1.1rem;
      transition: color 0.3s ease;
  }

  .author-social a:hover {
      color: #ed1c24;
  }

  /* Related Articles */
  .related-articles {
      background: #f8f9fa;
      padding: 80px 0;
  }

  .related-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
      color: #1a1a1a;
  }

  .related-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
  }

  .related-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .related-card-image {
      height: 200px;
      background: linear-gradient(135deg, #ed1c24, #b71c1c);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
  }

  .related-card-content {
      padding: 25px;
  }

  .related-card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 15px;
      line-height: 1.4;
      transition: color 0.3s ease;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .related-card-title:hover {
      color: #ed1c24;
  }

  .related-card-excerpt {
      color: #666;
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      height: 100px;
  }

  .related-card-meta {
      font-size: 0.85rem;
      color: #888;
      display: flex;
      align-items: center;
      gap: 15px;
  }

  /* Back to Blog Button */
  .back-to-blog {
      position: fixed;
      top: 50%;
      left: 30px;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #ed1c24, #b71c1c);
      color: white;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: 0 5px 20px rgba(237, 28, 36, 0.3);
  }

  .back-to-blog:hover {
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .article-title {
          font-size: 2.5rem;
      }

      .article-subtitle {
          font-size: 1.1rem;
      }

      .article-meta {
          flex-direction: column;
          gap: 15px;
      }

      .author-bio {
          flex-direction: column;
          text-align: center;
      }

      .back-to-blog {
          display: none;
      }

      .content-wrapper {
          padding: 0 20px;
      }

      .article-text blockquote {
          padding: 20px 25px;
          margin: 30px 0;
      }
  }

  /* Scroll Progress Bar */
  .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background: linear-gradient(135deg, #ed1c24, #b71c1c);
      z-index: 9999;
      transition: width 0.1s ease;
  }

  /* Floating Elements */
  .floating-element {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(237, 28, 36, 0.05), rgba(183, 28, 28, 0.05));
      animation: float 8s ease-in-out infinite;
  }

  .floating-element:nth-child(1) {
      width: 120px;
      height: 120px;
      top: 20%;
      right: 10%;
      animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
      width: 80px;
      height: 80px;
      bottom: 30%;
      left: 5%;
      animation-delay: 3s;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(180deg);
      }
  }