/* Add blog post specific styles */
        .blog-hero-banner {
            height: 60vh;
            background: url("placeholder") center / cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        .blog-hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blog-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(15, 15, 15, 0.8));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 4rem 2rem 2rem 2rem;
            z-index: 10;
        }

        .blog-title {
            font-size: 2.5rem;
            color: #00ffff;
            text-shadow: 0 0 20px #00ffff;
            margin: 0 0 1rem 0;
            max-width: 1000px;
        }

        .blog-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.95rem;
            color: #999;
            margin-bottom: 1rem;
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .blog-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .blog-body {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #d0d0d0;
        }

        .blog-body p {
            margin-bottom: 1.5rem;
        }

        .blog-body h2 {
            color: #00ffff;
            font-size: 1.8rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }

        .blog-body h3 {
            color: #ff5e00;
            font-size: 1.4rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .blog-quote {
            border-left: 4px solid #00ffff;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: rgba(0, 255, 255, 0.05);
            border-radius: 4px;
            font-size: 1.2rem;
            color: #f5f5f5;
            font-style: italic;
        }

        .blog-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            margin: 2.5rem 0;
            border-radius: 10px;
            border: 2px solid rgba(0, 255, 255, 0.2);
        }

        .blog-image-caption {
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .blog-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .blog-gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            border: 2px solid rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .blog-gallery img:hover {
            border-color: #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            transform: scale(1.02);
        }

        .blog-list {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .blog-list li {
            margin-bottom: 0.8rem;
            color: #d0d0d0;
        }

        .blog-author-section {
            background: rgba(0, 255, 255, 0.05);
            border: 2px solid rgba(0, 255, 255, 0.2);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .blog-author-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 3px solid #ff5e00;
            object-fit: cover;
            flex-shrink: 0;
        }

        .blog-author-info h3 {
            color: #00ffff;
            margin: 0 0 0.5rem 0;
        }

        .blog-author-info p {
            color: #999;
            margin: 0;
        }

        .related-posts {
            background: linear-gradient(135deg, rgba(15, 15, 15, 1) 0%, rgba(26, 26, 26, 0.95) 100%);
            padding: 4rem 2rem;
            margin-top: 4rem;
            border-top: 2px solid rgba(0, 255, 255, 0.2);
        }

        .related-posts-title {
            color: #00ffff;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .related-post-card {
            background: rgba(30, 30, 30, 0.9);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .related-post-card:hover {
            border-color: #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .related-post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .related-post-card h3 {
            color: #ff5e00;
            padding: 1rem 1.5rem 0 1.5rem;
            margin: 0;
            font-size: 1.1rem;
        }

        .related-post-card p {
            color: #a0a0a0;
            padding: 0.5rem 1.5rem 1.5rem 1.5rem;
            margin: 0;
            font-size: 0.9rem;
        }

        .read-more-link {
            display: inline-block;
            color: #00ffff;
            padding: 0.5rem 1.5rem 1.5rem 1.5rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .read-more-link:hover {
            color: #ff5e00;
        }

        /* Enhanced mobile responsiveness for all screen sizes (320px-768px) */
        @media (max-width: 768px) {
            /* Hero banner - reduce height and optimize padding */
            .blog-hero-banner {
                height: 45vh;
            }

            .blog-hero-overlay {
                padding: 2.5rem 1.25rem 1.5rem 1.25rem;
                justify-content: flex-end;
            }

            /* Blog title - responsive sizing for mobile */
            .blog-title {
                font-size: 1.6rem;
                line-height: 1.3;
                margin-bottom: 0.75rem;
            }

            /* Blog meta - stack on very small screens */
            .blog-meta {
                gap: 1rem;
                flex-wrap: wrap;
                font-size: 0.85rem;
                margin-bottom: 0.75rem;
            }

            /* Blog content - balanced mobile padding */
            .blog-content {
                padding: 2.5rem 1.25rem;
                max-width: 100%;
            }

            /* Blog body text - readable on mobile */
            .blog-body {
                font-size: 0.95rem;
                line-height: 1.8;
            }

            .blog-body p {
                margin-bottom: 1.25rem;
            }

            .blog-body h2 {
                font-size: 1.4rem;
                margin-top: 2rem;
                margin-bottom: 1rem;
            }

            .blog-body h3 {
                font-size: 1.1rem;
                margin-top: 1.75rem;
                margin-bottom: 0.75rem;
            }

            /* Quote styling - optimized for mobile */
            .blog-quote {
                padding: 1.25rem 1.5rem;
                margin: 1.5rem 0;
                font-size: 1rem;
                border-left: 3px solid #00ffff;
            }

            /* Image captions */
            .blog-image-caption {
                font-size: 0.85rem;
                margin-top: 0.5rem;
            }

            /* Gallery - responsive grid for mobile */
            .blog-gallery {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 0.75rem;
                margin: 1.5rem 0;
            }

            .blog-gallery img {
                height: 140px;
            }

            /* List styling */
            .blog-list {
                margin: 1.25rem 0;
                padding-left: 1.5rem;
            }

            .blog-list li {
                margin-bottom: 0.6rem;
                font-size: 0.95rem;
            }

            /* Author section - stack vertically on mobile */
            .blog-author-section {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
                margin: 2.5rem 0;
            }

            .blog-author-image {
                width: 100px;
                height: 100px;
                margin-bottom: 1rem;
            }

            .blog-author-info h3 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .blog-author-info p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            /* Related posts section */
            .related-posts {
                padding: 2.5rem 1.25rem;
                margin-top: 3rem;
            }

            .related-posts-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            /* Related posts grid - single column on mobile */
            .related-posts-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .related-post-card img {
                height: 180px;
            }

            .related-post-card h3 {
                padding: 1rem 1rem 0 1rem;
                font-size: 1rem;
            }

            .related-post-card p {
                padding: 0.5rem 1rem 1rem 1rem;
                font-size: 0.85rem;
            }

            .read-more-link {
                padding: 0 1rem 1rem 1rem;
                font-size: 0.9rem;
            }
        }

        /* Extra optimization for very small screens (320px-480px) */
        @media (max-width: 480px) {
            .blog-hero-banner {
                height: 40vh;
            }

            .blog-hero-overlay {
                padding: 2rem 1rem 1rem 1rem;
            }

            .blog-title {
                font-size: 1.3rem;
                line-height: 1.25;
            }

            .blog-meta {
                gap: 0.75rem;
                font-size: 0.75rem;
                flex-direction: column;
                align-items: flex-start;
            }

            .blog-meta span {
                width: 100%;
            }

            .blog-content {
                padding: 2rem 1rem;
            }

            .blog-body {
                font-size: 0.9rem;
            }

            .blog-body h2 {
                font-size: 1.2rem;
                margin-top: 1.5rem;
            }

            .blog-body h3 {
                font-size: 1rem;
            }

            .blog-quote {
                padding: 1rem 1.25rem;
                margin: 1.25rem 0;
                font-size: 0.9rem;
            }

            .blog-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .blog-gallery img {
                height: 120px;
            }

            .blog-list {
                padding-left: 1.25rem;
            }

            .blog-author-section {
                padding: 1.25rem;
                margin: 2rem 0;
            }

            .blog-author-image {
                width: 90px;
                height: 90px;
            }

            .related-posts {
                padding: 2rem 1rem;
            }

            .related-posts-title {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
            }

            .related-post-card img {
                height: 150px;
            }

            .related-post-card h3 {
                padding: 0.75rem 0.75rem 0 0.75rem;
                font-size: 0.9rem;
            }

            .related-post-card p {
                padding: 0.4rem 0.75rem 0.75rem 0.75rem;
                font-size: 0.8rem;
            }
        }

        /* ===== NAVBAR FIX ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00ffff;
}

/* Tombol Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #00ffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Saat aktif */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }
}