 body {
      font-family: 'Lato', sans-serif;
      background: linear-gradient(135deg, #111 0%, #000 100%);
      color: #fff;
    }
    .blog-header {
      position: relative;
      background: url('https://picsum.photos/1200/600?random=21') no-repeat center center/cover;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }
    .blog-header::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.65);
    }
    .blog-header-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    .blog-category {
      font-size: 0.9rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #D4AF37;
      font-weight: 600;
    }
    .blog-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      margin: 15px 0;
      color: #fff;
    }
    .blog-meta {
      font-size: 0.95rem;
      color: #ddd;
    }

    /* Blog Content */
    .blog-content {
      margin-top: -70px;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    }
    .blog-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #ccc;
      margin-bottom: 20px;
    }
    .blog-content h3 {
      font-family: 'Playfair Display', serif;
      margin-top: 30px;
      color: #D4AF37;
    }
    .quote-box {
      background: rgba(212,175,55,0.1);
      border-left: 4px solid #D4AF37;
      padding: 15px 20px;
      margin: 30px 0;
      font-style: italic;
      color: #eee;
      border-radius: 10px;
    }

    /* Share Buttons */
    .share-buttons {
      margin-top: 40px;
    }
    .share-buttons a {
      display: inline-block;
      margin-right: 12px;
      background: rgba(255,255,255,0.1);
      padding: 10px 14px;
      border-radius: 50%;
      transition: all 0.3s ease;
      color: #D4AF37;
    }
    .share-buttons a:hover {
      background: #D4AF37;
      color: #111;
      transform: translateY(-4px);
    }