
    .nusa-penida-toc {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 15px;
        padding: 30px;
        margin: 30px 0;
        color: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        position: relative;
        overflow: hidden;
    }
    
    .nusa-penida-toc::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    }
    
    .toc-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .toc-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .toc-list ol {
        list-style: none;
        padding-left: 20px;
        margin: 10px 0;
    }
    
    .toc-list li {
        margin: 8px 0;
        position: relative;
        padding-left: 15px;
    }
    
    .toc-list li::before {
        content: "▸";
        position: absolute;
        left: 0;
        color: #feca57;
        font-weight: bold;
    }
    
    .toc-list li a {
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 5px 10px;
        border-radius: 5px;
        background: rgba(255,255,255,0.1);
    }
    
    .toc-list li a:hover {
        background: rgba(255,255,255,0.2);
        transform: translateX(5px);
        color: #feca57;
    }
    
    .toc-h2 {
        font-weight: 600;
        font-size: 16px;
    }
    
    .toc-h3 {
        font-weight: 500;
        font-size: 14px;
        opacity: 0.9;
    }
    
    .toc-h4, .toc-h5, .toc-h6 {
        font-weight: 400;
        font-size: 13px;
        opacity: 0.8;
    }
    
    .toc-toggle {
        display: none;
    }
    
    @media (max-width: 768px) {
        .nusa-penida-toc {
            padding: 20px;
            margin: 20px 0;
        }
        
        .toc-title {
            font-size: 20px;
        }
    }
    