        :root {
            --primary-green: #88d498;
            --secondary-green: #93ce78;
            --dark-text: #2c3e50;
            --light-text: #5a6c7d;
            --border-color: #e9ecef;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
        }

        /* Header Section */
        .prisma-detail-header {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            padding: 40px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .prisma-detail-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        }

        .prisma-breadcrumb {
            margin-bottom: 30px;
        }

        .prisma-breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .prisma-breadcrumb a:hover {
            color: white;
        }

        .prisma-detail-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .prisma-detail-meta {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .prisma-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Main Content */
        .prisma-detail-content {
            padding: 0;
            margin-top: -60px;
            position: relative;
            z-index: 3;
        }

        .prisma-content-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .prisma-hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
        }

        .prisma-content-body {
            padding: 40px;
        }

        .prisma-excerpt {
            font-size: 1.2rem;
            color: var(--light-text);
            font-style: italic;
            margin-bottom: 30px;
            padding: 20px;
            background: #f8f9fa;
            border-left: 4px solid var(--primary-green);
            border-radius: 8px;
        }

        .prisma-article-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-text);
        }

        .prisma-article-content h3 {
            color: var(--dark-text);
            font-weight: 700;
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }

        .prisma-article-content p {
            margin-bottom: 20px;
        }

        .prisma-article-content ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .prisma-article-content li {
            margin-bottom: 8px;
        }

        /* Sidebar */
        .prisma-sidebar {
            padding-left: 30px;
        }

        .prisma-sidebar-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            margin-bottom: 25px;
            border: 1px solid var(--border-color);
        }

        .prisma-sidebar-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .prisma-sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
            border-radius: 2px;
        }

        .prisma-info-list {
            list-style: none;
            padding: 0;
        }

        .prisma-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .prisma-info-item:last-child {
            border-bottom: none;
        }

        .prisma-info-icon {
            width: 18px;
            height: 18px;
            color: var(--primary-green);
        }

        .prisma-category-badge {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .prisma-category-badge:hover {
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }

        .prisma-share-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .prisma-share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .prisma-share-btn:hover {
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }

        .prisma-share-btn.facebook {
            background: #3b5998;
        }

        .prisma-share-btn.twitter {
            background: #1da1f2;
        }

        .prisma-share-btn.whatsapp {
            background: #25d366;
        }

        .prisma-share-btn.linkedin {
            background: #0077b5;
        }

        .prisma-article-content figcaption {
            display: none;
        }

        /* Back Button */
        .prisma-back-btn {
            background: linear-gradient(135deg, #25d366, #299651);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px;
        }

        .prisma-back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(136, 212, 152, 0.3);
            color: white;
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .prisma-sidebar {
                padding-left: 0;
                margin-top: 30px;
            }

            .prisma-detail-title {
                font-size: 2rem;
            }

            .prisma-detail-meta {
                gap: 20px;
            }

            .prisma-content-body {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .prisma-detail-header {
                padding: 30px 0 60px;
            }

            .prisma-detail-title {
                font-size: 1.8rem;
            }

            .prisma-hero-image {
                height: 250px;
            }

            .prisma-detail-meta {
                flex-direction: column;
                gap: 10px;
            }
        }