 /* ===== MAIN CONTENT ===== */
        .content-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== CATEGORY & META ===== */
        .page-meta {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .category-badge {
            background: #2563eb;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            text-transform: capitalize;
        }
        .meta-info {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #777;
            font-size: 13px;
        }
        .meta-info i {
            margin-right: 5px;
        }

        /* ===== TITLE + SHARE ===== */
        .title-share-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e0e0e0;
            flex-wrap: wrap;
        }
        .page-title {
            font-size: 26px;
            font-weight: 700;
            color: #1a1a1a;
            flex: 1;
        }
        .share-buttons {
            display: flex;
            gap: 8px;
        }
        .share-label {
            font-size: 13px;
            color: #777;
        }
        .share-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: opacity 0.2s ease;
        }
        .share-btn.facebook { background-color: #1877f2; }
        .share-btn.twitter { background-color: #000000; }
        .share-btn.whatsapp { background-color: #25d366; }
        .share-btn.copy-link { background-color: #6c757d; }

        /* ===== TABS ===== */
        .tab-nav {
            display: flex;
            gap: 0;
            margin-top: 20px;
            border-bottom: 2px solid #e0e0e0;
            overflow-x: auto;
            scrollbar-width: thin;
        }
        .tab-btn {
            padding: 12px 24px;
            font-size: 15px;
            font-weight: 600;
            background: none;
            border: none;
            cursor: pointer;
            color: #888;
            position: relative;
            white-space: nowrap;
        }
        .tab-btn.active {
            color: #2563eb;
        }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #2563eb;
        }
        .tab-content-wrapper {
            margin-top: 25px;
            min-height: 300px;
        }
        .tab-panel {
            display: none;
        }
        .tab-panel.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== SLIDER BANNER ===== */
        .slider-banner {
            width: 100%;
            max-width: 800px;
            margin: 20px auto 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            background: #000;
        }
        .slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            flex-shrink: 0;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.6);
            color: white;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
        }
        .slider-nav.prev { left: 15px; }
        .slider-nav.next { right: 15px; }
        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            border: none;
        }
        .dot.active {
            background: white;
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .slider-nav { width: 48px; height: 48px; font-size: 28px; }
            .slider-nav.prev { left: 12px; }
            .slider-nav.next { right: 12px; }
        }
        @media (max-width: 480px) {
            .slider-nav { width: 44px; height: 44px; font-size: 24px; }
        }